python3-annotated-types: initial commit, version 0.6.0

This commit is contained in:
Tim Biermann 2024-01-20 14:52:02 +01:00
parent 61d1048bc9
commit 212a204742
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 38 additions and 0 deletions

View File

@ -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

View File

@ -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

View File

@ -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.tar.gz)
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
}