summaryrefslogtreecommitdiff
path: root/python/py-six
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /python/py-six
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'python/py-six')
-rw-r--r--python/py-six/.footprint12
-rw-r--r--python/py-six/.signature6
-rw-r--r--python/py-six/MAKEPKG39
3 files changed, 57 insertions, 0 deletions
diff --git a/python/py-six/.footprint b/python/py-six/.footprint
new file mode 100644
index 0000000..56c0709
--- /dev/null
+++ b/python/py-six/.footprint
@@ -0,0 +1,12 @@
+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/
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/six.py
+drwxr-xr-x root/root usr/lib/python3.14/site-packages/six-1.17.0.dist-info/
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/six-1.17.0.dist-info/METADATA
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/six-1.17.0.dist-info/RECORD
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/six-1.17.0.dist-info/WHEEL
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/six-1.17.0.dist-info/top_level.txt
+drwxr-xr-x root/root usr/lib/python3.14/site-packages/six-1.17.0.dist-info/licenses/
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/six-1.17.0.dist-info/licenses/LICENSE
diff --git a/python/py-six/.signature b/python/py-six/.signature
new file mode 100644
index 0000000..61adea8
--- /dev/null
+++ b/python/py-six/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mD5+SqgXPKAifYi87O47nOCllO4vIFnYBz3kXrTYZ2FXHWc6pD+IIWIJ6cLCZlYE/0RLKB1g4Wnx72ZFztyCOQY=
+
+SHA256 (MAKEPKG) = f659bc69791f6570abb7bafb1d3121037bbce3d8d2c4b6aa67be0abe8d581b25
+SHA256 (.footprint) = 91ebfdcd65f7cf6efc1c8d1598c8c962ff293027fefacae633738034aad0e1b0
+SHA256 (six-1.17.0.tar.gz) = ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81
+SHA256 (py-six#1.17.0-3.pkg.tar.gz) = 090cd36e6d8e4c8dfba9e3a5aaee48f4050dec163c0b0f750b9770cee874200d
diff --git a/python/py-six/MAKEPKG b/python/py-six/MAKEPKG
new file mode 100644
index 0000000..33238c0
--- /dev/null
+++ b/python/py-six/MAKEPKG
@@ -0,0 +1,39 @@
+#!/bin/mkpkg
+# description: Python 2 and 3 compatibility utilities
+# url: https://github.com/benjaminp/six
+
+name=py-six
+_name=six
+version=1.17.0
+release=3
+depends=(python3)
+makedeps=(py-installer py-setuptools py-build py-wheel)
+source=(https://files.pythonhosted.org/packages/source/s/six/$_name-$version.tar.gz)
+
+sha256sums=(
+ "ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81"
+)
+
+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
+