summaryrefslogtreecommitdiff
path: root/python/py-idna
diff options
context:
space:
mode:
Diffstat (limited to 'python/py-idna')
-rw-r--r--python/py-idna/.footprint25
-rw-r--r--python/py-idna/.signature6
-rw-r--r--python/py-idna/MAKEPKG39
3 files changed, 70 insertions, 0 deletions
diff --git a/python/py-idna/.footprint b/python/py-idna/.footprint
new file mode 100644
index 0000000..28c07fc
--- /dev/null
+++ b/python/py-idna/.footprint
@@ -0,0 +1,25 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/idna
+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/idna-3.20.dist-info/
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/idna-3.20.dist-info/METADATA
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/idna-3.20.dist-info/RECORD
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/idna-3.20.dist-info/WHEEL
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/idna-3.20.dist-info/entry_points.txt
+drwxr-xr-x root/root usr/lib/python3.14/site-packages/idna-3.20.dist-info/licenses/
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/idna-3.20.dist-info/licenses/LICENSE.md
+drwxr-xr-x root/root usr/lib/python3.14/site-packages/idna/
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/idna/__init__.py
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/idna/__main__.py
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/idna/cli.py
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/idna/codec.py
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/idna/compat.py
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/idna/core.py
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/idna/idnadata.py
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/idna/intranges.py
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/idna/package_data.py
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/idna/py.typed (EMPTY)
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/idna/uts46data.py
diff --git a/python/py-idna/.signature b/python/py-idna/.signature
new file mode 100644
index 0000000..0590eba
--- /dev/null
+++ b/python/py-idna/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mM7k2/LeXqweK64KdKAdZkC+JlKwQA6vRXRBiO24qZXTMrTOunqsq6lsmkA+7g/HmnxWcuZlfR+zucv7+2wt4QU=
+
+SHA256 (MAKEPKG) = 82e751c42c1d996fe39edd500eadf7cbafe081ca1c98e49ad7c252a15bafdd92
+SHA256 (.footprint) = 66c70de8fbcc946cfd623ab05583c9efdb916f02fe1076a0e20b04fd0e1f5c8b
+SHA256 (idna-3.20.tar.gz) = a7db850025b95ded1eae8a46181a1a6c56c92c96f0e2b005d9ff8dc0210cab44
+SHA256 (py-idna#3.20-3.pkg.tar.gz) = e7568fff276582d146abfa124d5a181d2434e003983a8ffa1340f5301e3d298c
diff --git a/python/py-idna/MAKEPKG b/python/py-idna/MAKEPKG
new file mode 100644
index 0000000..52659e2
--- /dev/null
+++ b/python/py-idna/MAKEPKG
@@ -0,0 +1,39 @@
+#!/bin/mkpkg
+# description: Internationalized Domain Names in Applications (IDNA)
+# url: https://github.com/kjd/idna
+
+name=py-idna
+_name=idna
+version=3.20
+release=3
+depends=(python3)
+makedeps=(py-installer py-flit_core)
+source=(https://files.pythonhosted.org/packages/source/i/idna/$_name-$version.tar.gz)
+
+sha256sums=(
+ "a7db850025b95ded1eae8a46181a1a6c56c92c96f0e2b005d9ff8dc0210cab44"
+)
+
+build() {
+ cd $_name-$version
+
+ # Build wheel with flit_core directly (no PEP 517 frontend needed)
+ /usr/bin/python3 -m flit_core.wheel --outdir dist
+
+ _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
+