python3-whey: initial commit, version 0.0.24

This commit is contained in:
Tim Biermann 2024-01-20 18:42:06 +01:00
parent 7d55c31d70
commit 3ad84c55d6
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 57 additions and 0 deletions

36
python3-whey/.footprint Normal file
View File

@ -0,0 +1,36 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/whey
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/whey-0.0.24.dist-info/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey-0.0.24.dist-info/LICENSE
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey-0.0.24.dist-info/METADATA
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey-0.0.24.dist-info/RECORD
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey-0.0.24.dist-info/WHEEL
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey-0.0.24.dist-info/entry_points.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey-0.0.24.dist-info/top_level.txt
drwxr-xr-x root/root usr/lib/python3.10/site-packages/whey/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/__init__.py
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/__main__.py
drwxr-xr-x root/root usr/lib/python3.10/site-packages/whey/__pycache__/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/__pycache__/__init__.cpython-310.opt-2.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/__pycache__/__main__.cpython-310.opt-2.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/__pycache__/_editable.cpython-310.opt-2.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/__pycache__/builder.cpython-310.opt-2.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/__pycache__/foreman.cpython-310.opt-2.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/__pycache__/utils.cpython-310.opt-2.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/_editable.py
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/builder.py
drwxr-xr-x root/root usr/lib/python3.10/site-packages/whey/config/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/config/__init__.py
drwxr-xr-x root/root usr/lib/python3.10/site-packages/whey/config/__pycache__/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/config/__pycache__/__init__.cpython-310.opt-2.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/config/__pycache__/pep621.cpython-310.opt-2.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/config/__pycache__/whey.cpython-310.opt-2.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/config/pep621.py
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/config/whey.py
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/foreman.py
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/py.typed (EMPTY)
-rw-r--r-- root/root usr/lib/python3.10/site-packages/whey/utils.py

5
python3-whey/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3zYrx9KBbU2+iViXO5mGyakJU8ivNIC0UDrK/xtZD873QOaI7y6guxJCOC3b6gS6pVbOTiJZhwpQiAknNW+bMww=
SHA256 (Pkgfile) = c4f1b88fefc7e5fe727226bbb14554cf460c90d99e936921602e5ca01171a4e1
SHA256 (.footprint) = ffd7789495db59164c08ed8c06c26df125952e5a9cf7d164b82a58d2f5e8f991
SHA256 (whey-0.0.24.tar.gz) = 411905d85aa8aa239733818894e08dc20b682f0a3614f942aa35b430db568aa2

16
python3-whey/Pkgfile Normal file
View File

@ -0,0 +1,16 @@
# Description: A simple Python wheel builder for simple projects
# URL: https://github.com/repo-helper/whey
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-consolekit python3-dom-tool python3-pyproject-parser
name=python3-whey
version=0.0.24
release=1
source=(https://pypi.org/packages/source/w/whey/whey-$version.tar.gz)
build() {
cd whey-$version
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
}