python3-versioneer: initial commit, version 0.29

This commit is contained in:
Tim Biermann 2023-10-30 21:05:18 +01:00
parent cdaa53430c
commit df8152a1a2
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,16 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/versioneer
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__/versioneer.cpython-310.opt-2.pyc
drwxr-xr-x root/root usr/lib/python3.10/site-packages/versioneer-0.29.dist-info/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/versioneer-0.29.dist-info/LICENSE
-rw-r--r-- root/root usr/lib/python3.10/site-packages/versioneer-0.29.dist-info/METADATA
-rw-r--r-- root/root usr/lib/python3.10/site-packages/versioneer-0.29.dist-info/RECORD
-rw-r--r-- root/root usr/lib/python3.10/site-packages/versioneer-0.29.dist-info/WHEEL
-rw-r--r-- root/root usr/lib/python3.10/site-packages/versioneer-0.29.dist-info/entry_points.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/versioneer-0.29.dist-info/top_level.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/versioneer.py

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF31pJoq4OrZjpEtDAiis9SG4ijhE/0OhpeD0ErlvxFMAOlN6unYH9UrhhbdG4OAKpVgDWjeb/ZFXu3VF8ucyhEQk=
SHA256 (Pkgfile) = 55447851177ed1659c573e2c6bb21a69f54e928c3e1388e568a73c189df18055
SHA256 (.footprint) = 2dc8312c10772e309ebe277085a5707a465dacd5619347429c8409014d47a69f
SHA256 (versioneer-0.29.tar.gz) = 5ab283b9857211d61b53318b7c792cf68e798e765ee17c27ade9f6c924235731

View File

@ -0,0 +1,16 @@
# Description: Easy VCS-based management of project version strings
# URL: https://github.com/python-versioneer/python-versioneer
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-wheel python3-tomli python3-build python3-installer
name=python3-versioneer
version=0.29
release=1
source=(https://pypi.org/packages/source/v/versioneer/versioneer-$version.tar.gz)
build() {
cd versioneer-$version
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
}