python3-expandvars: initial commit, version 0.11.0

This commit is contained in:
Tim Biermann 2023-11-21 17:40:51 +01:00
parent d0f2437c62
commit d937252c88
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,13 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/python3.10/
drwxr-xr-x root/root usr/lib/python3.10/site-packages/
drwxr-xr-x root/root usr/lib/python3.10/site-packages/__pycache__/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/__pycache__/expandvars.cpython-310.opt-2.pyc
drwxr-xr-x root/root usr/lib/python3.10/site-packages/expandvars-0.0.0.dist-info/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/expandvars-0.0.0.dist-info/LICENSE
-rw-r--r-- root/root usr/lib/python3.10/site-packages/expandvars-0.0.0.dist-info/METADATA
-rw-r--r-- root/root usr/lib/python3.10/site-packages/expandvars-0.0.0.dist-info/RECORD
-rw-r--r-- root/root usr/lib/python3.10/site-packages/expandvars-0.0.0.dist-info/WHEEL
-rw-r--r-- root/root usr/lib/python3.10/site-packages/expandvars-0.0.0.dist-info/top_level.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/expandvars.py

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF32G1Hgs86ShsrFyJzT2V620zIMn1mKBxYA5wP8Wau/cj6durlIh1g6eXM+qiNPTfCCS0Wad0Nifr1YEBvg4VowM=
SHA256 (Pkgfile) = ba6a3e99a04c7b043870b3ec534b737e735e8643d86e1c472b299347168c84ec
SHA256 (.footprint) = 57e8ffef8159a8c3e9fb0ae5c7e690526689f5aaf8264d71159ea03e2cc604da
SHA256 (expandvars-0.11.0.tar.gz) = 43b427f5d327ab360063df26151f98d2a6f08fe18f2895a32a7f5f0f117b5b52

View File

@ -0,0 +1,16 @@
# Description: expand system variables Unix style
# URL: https://github.com/sayanarijit/expandvars
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-build python3-wheel python3-installer
name=python3-expandvars
version=0.11.0
release=1
source=(https://pypi.org/packages/source/e/expandvars/expandvars-$version.tar.gz)
build() {
cd expandvars-$version
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
}