python3-calver: initial commit, version 2022.6.26

This commit is contained in:
Tim Biermann 2023-04-01 13:21:45 +02:00
parent 234ca5b954
commit 01f1c3cd91
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 39 additions and 0 deletions

16
python3-calver/.footprint Normal file
View File

@ -0,0 +1,16 @@
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/calver-2022.6.26-py3.10.egg-info/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/calver-2022.6.26-py3.10.egg-info/PKG-INFO
-rw-r--r-- root/root usr/lib/python3.10/site-packages/calver-2022.6.26-py3.10.egg-info/SOURCES.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/calver-2022.6.26-py3.10.egg-info/dependency_links.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/calver-2022.6.26-py3.10.egg-info/entry_points.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/calver-2022.6.26-py3.10.egg-info/top_level.txt
drwxr-xr-x root/root usr/lib/python3.10/site-packages/calver/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/calver/__init__.py (EMPTY)
drwxr-xr-x root/root usr/lib/python3.10/site-packages/calver/__pycache__/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/calver/__pycache__/__init__.cpython-310.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/calver/__pycache__/integration.cpython-310.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/calver/integration.py

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3yRC6IQjdmhN1xKnvw61QT5T+B3zu3/CfVMLicBsJoraErB2bpxABowFoZaQqjSO7irPwwzOCdvNppwxIPK8UQw=
SHA256 (Pkgfile) = 039463e0452e447254dc9b4882184730aa61366d0b404e9f2c4e8723f66f57e1
SHA256 (.footprint) = 356370c966dee65abfef5cfeff70c48033175226a6f84c4a7ebb098953d9747f
SHA256 (calver-2022.6.26.tar.gz) = e05493a3b17517ef1748fbe610da11f10485faa7c416b9d33fd4a52d74894f8b

18
python3-calver/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: Setuptools extension for CalVer package versions
# URL: https://github.com/di/calver
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-setuptools
name=python3-calver
version=2022.6.26
release=1
source=(https://pypi.org/packages/source/c/calver/calver-$version.tar.gz)
build() {
cd calver-$version
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --prefix=/usr \
--root=$PKG \
--skip-build
}