![](https://secure.gravatar.com/avatar/df8330968b6df8cd1c1942c5fb4b720c.jpg?s=120&d=mm&r=g)
commit 212a204742bfbb78b23ae018e4937a89d6b1f229 Author: Tim Biermann <tbier@posteo.de> Date: Sat Jan 20 14:52:02 2024 +0100 python3-annotated-types: initial commit, version 0.6.0 diff --git a/python3-annotated-types/.footprint b/python3-annotated-types/.footprint new file mode 100644 index 000000000..237903c5b --- /dev/null +++ b/python3-annotated-types/.footprint @@ -0,0 +1,17 @@ +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/annotated_types-0.6.0.dist-info/ +-rw-r--r-- root/root usr/lib/python3.10/site-packages/annotated_types-0.6.0.dist-info/METADATA +-rw-r--r-- root/root usr/lib/python3.10/site-packages/annotated_types-0.6.0.dist-info/RECORD +-rw-r--r-- root/root usr/lib/python3.10/site-packages/annotated_types-0.6.0.dist-info/WHEEL +drwxr-xr-x root/root usr/lib/python3.10/site-packages/annotated_types-0.6.0.dist-info/licenses/ +-rw-r--r-- root/root usr/lib/python3.10/site-packages/annotated_types-0.6.0.dist-info/licenses/LICENSE +drwxr-xr-x root/root usr/lib/python3.10/site-packages/annotated_types/ +-rw-r--r-- root/root usr/lib/python3.10/site-packages/annotated_types/__init__.py +drwxr-xr-x root/root usr/lib/python3.10/site-packages/annotated_types/__pycache__/ +-rw-r--r-- root/root usr/lib/python3.10/site-packages/annotated_types/__pycache__/__init__.cpython-310.opt-2.pyc +-rw-r--r-- root/root usr/lib/python3.10/site-packages/annotated_types/__pycache__/test_cases.cpython-310.opt-2.pyc +-rw-r--r-- root/root usr/lib/python3.10/site-packages/annotated_types/py.typed (EMPTY) +-rw-r--r-- root/root usr/lib/python3.10/site-packages/annotated_types/test_cases.py diff --git a/python3-annotated-types/.signature b/python3-annotated-types/.signature new file mode 100644 index 000000000..16123a80d --- /dev/null +++ b/python3-annotated-types/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF38+DtK5viXHQIFTjNShMLSCM/fevz277s/Ha1AlO8ArY2T3pNHVLghDMo5pOCK4dDyivZ+By4aiThH0C5ZeFCQs= +SHA256 (Pkgfile) = ad7645abf4376e6a8be432d27b3f33b599336d7589d8a33ce7d199e0690d5be8 +SHA256 (.footprint) = 89695f528c3d015c8999e027913b13b9f0fa0f450086b9cd5bb1c1adf678b426 +SHA256 (annotated_types-0.6.0.tar.gz) = 563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d diff --git a/python3-annotated-types/Pkgfile b/python3-annotated-types/Pkgfile new file mode 100644 index 000000000..ea9725a68 --- /dev/null +++ b/python3-annotated-types/Pkgfile @@ -0,0 +1,16 @@ +# Description: Reusable constraint types to use with typing.Annotated +# URL: https://github.com/annotated-types/annotated-types +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: python3-hatchling + +name=python3-annotated-types +version=0.6.0 +release=1 +source=(https://pypi.org/packages/source/a/annotated_types/annotated_types-$version....) + +build() { + cd annotated_types-$version + + /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation + /usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl +}