python3-handy-archives: initial commit, version 0.2.0

This commit is contained in:
Tim Biermann 2024-01-20 18:42:52 +01:00
parent 66f555c893
commit 86c2178463
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/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/handy_archives-0.2.0.dist-info/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/handy_archives-0.2.0.dist-info/LICENSE
-rw-r--r-- root/root usr/lib/python3.10/site-packages/handy_archives-0.2.0.dist-info/METADATA
-rw-r--r-- root/root usr/lib/python3.10/site-packages/handy_archives-0.2.0.dist-info/RECORD
-rw-r--r-- root/root usr/lib/python3.10/site-packages/handy_archives-0.2.0.dist-info/WHEEL
drwxr-xr-x root/root usr/lib/python3.10/site-packages/handy_archives/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/handy_archives/__init__.py
drwxr-xr-x root/root usr/lib/python3.10/site-packages/handy_archives/__pycache__/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/handy_archives/__pycache__/__init__.cpython-310.opt-2.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/handy_archives/__pycache__/testing.cpython-310.opt-2.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/handy_archives/py.typed (EMPTY)
-rw-r--r-- root/root usr/lib/python3.10/site-packages/handy_archives/testing.py

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3xNadxSpvV48x8dJc6bO+mUxmAiNIA43RBf9qwrt+AaJ5TcCN64HW7HsXBqzTzJV9vXppTx2IEQmKY4gKXizYg8=
SHA256 (Pkgfile) = 450a58b43e2e02c4a8120e14e3eaf2e985cfd0eea1329e1d67c64a0c0ede53f6
SHA256 (.footprint) = c9d91c495e508a9bf444aba23b042a6215edb554b964002f5b34d89cffaf0327
SHA256 (handy_archives-0.2.0.tar.gz) = fba21101fd9e29d5e3b72823261aaae06b9350686f0d2067786d64dce73eb3f6

View File

@ -0,0 +1,16 @@
# Description: Some handy archive helpers for Python
# URL: https://github.com/domdfcoding/handy-archives
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-build python3-wheel python3-installer python3-flit-core
name=python3-handy-archives
version=0.2.0
release=1
source=(https://pypi.org/packages/source/h/handy_archives/handy_archives-$version.tar.gz)
build() {
cd handy_archives-$version
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
}