diff options
Diffstat (limited to 'python/py-decorator')
| -rw-r--r-- | python/py-decorator/.footprint | 15 | ||||
| -rw-r--r-- | python/py-decorator/.signature | 6 | ||||
| -rw-r--r-- | python/py-decorator/MAKEPKG | 39 |
3 files changed, 60 insertions, 0 deletions
diff --git a/python/py-decorator/.footprint b/python/py-decorator/.footprint new file mode 100644 index 0000000..02de51d --- /dev/null +++ b/python/py-decorator/.footprint @@ -0,0 +1,15 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/python3.14/ +drwxr-xr-x root/root usr/lib/python3.14/site-packages/ +drwxr-xr-x root/root usr/lib/python3.14/site-packages/decorator-5.3.1.dist-info/ +-rw-r--r-- root/root usr/lib/python3.14/site-packages/decorator-5.3.1.dist-info/METADATA +-rw-r--r-- root/root usr/lib/python3.14/site-packages/decorator-5.3.1.dist-info/RECORD +-rw-r--r-- root/root usr/lib/python3.14/site-packages/decorator-5.3.1.dist-info/WHEEL +-rw-r--r-- root/root usr/lib/python3.14/site-packages/decorator-5.3.1.dist-info/top_level.txt +drwxr-xr-x root/root usr/lib/python3.14/site-packages/decorator-5.3.1.dist-info/licenses/ +-rw-r--r-- root/root usr/lib/python3.14/site-packages/decorator-5.3.1.dist-info/licenses/LICENSE.txt +drwxr-xr-x root/root usr/lib/python3.14/site-packages/decorator/ +-rw-r--r-- root/root usr/lib/python3.14/site-packages/decorator/__init__.py +-rw-r--r-- root/root usr/lib/python3.14/site-packages/decorator/__init__.pyi +-rw-r--r-- root/root usr/lib/python3.14/site-packages/decorator/py.typed (EMPTY) diff --git a/python/py-decorator/.signature b/python/py-decorator/.signature new file mode 100644 index 0000000..0583699 --- /dev/null +++ b/python/py-decorator/.signature @@ -0,0 +1,6 @@ +RWTZ9IduCSQ/mGQmWM1T4S+DpBDjGkrODlDl2sxzqrVRiUqHXL+Dr7YF84i0YRNBMiIQ43qihMSnMsJuuCTskz4U0tXWRkp89Ag= + +SHA256 (MAKEPKG) = ec206877eaed233b156f2717076c9676f000e00e4a9bfb863e6a6c73015744dd +SHA256 (.footprint) = dc5d308f32288f16e6c8f83576e1dac4891f7d0a760e78c2f5df84828f30c115 +SHA256 (decorator-5.3.1.tar.gz) = 4cbcdd55a6efadb9dbea26b858f4fb3264567b52d69ca0d25b721b553f60ea82 +SHA256 (py-decorator#5.3.1-3.pkg.tar.gz) = 20eb4445c5739c40a078fd7c63a2544613f5fb14b667672cf478d076b1faa8d4 diff --git a/python/py-decorator/MAKEPKG b/python/py-decorator/MAKEPKG new file mode 100644 index 0000000..d1a4c65 --- /dev/null +++ b/python/py-decorator/MAKEPKG @@ -0,0 +1,39 @@ +#!/bin/mkpkg +# description: Decorators for Humans +# url: https://pypi.org/project/decorator/ + +name=py-decorator +_name=decorator +version=5.3.1 +release=3 +depends=(python3) +makedeps=(py-installer py-setuptools py-build py-wheel) +source=(https://files.pythonhosted.org/packages/source/d/decorator/$_name-$version.tar.gz) + +sha256sums=( + "4cbcdd55a6efadb9dbea26b858f4fb3264567b52d69ca0d25b721b553f60ea82" +) + +build() { + cd $_name-$version + + # Build wheel via PEP 517 frontend (backend from pyproject.toml) + /usr/bin/python3 -m build --no-isolation --wheel + + _pyver=$(/usr/bin/python3 -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")') + _sitedir="$PKG/usr/lib/python${_pyver}/site-packages" + + install -dm755 "$_sitedir" + /usr/bin/python3 -m installer --no-compile-bytecode --destdir "$PKG" --prefix /usr dist/*.whl + + find "$_sitedir" -type d \( -name tests -o -name test \) -prune -exec rm -rf {} + + find "$_sitedir" -name "*.exe" -delete +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh + |
