summaryrefslogtreecommitdiff
path: root/python/py-colorama
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-colorama
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'python/py-colorama')
-rw-r--r--python/py-colorama/.footprint17
-rw-r--r--python/py-colorama/.signature6
-rw-r--r--python/py-colorama/MAKEPKG38
3 files changed, 61 insertions, 0 deletions
diff --git a/python/py-colorama/.footprint b/python/py-colorama/.footprint
new file mode 100644
index 0000000..2fb5958
--- /dev/null
+++ b/python/py-colorama/.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.14/
+drwxr-xr-x root/root usr/lib/python3.14/site-packages/
+drwxr-xr-x root/root usr/lib/python3.14/site-packages/colorama-0.4.6.dist-info/
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/colorama-0.4.6.dist-info/METADATA
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/colorama-0.4.6.dist-info/RECORD
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/colorama-0.4.6.dist-info/WHEEL
+drwxr-xr-x root/root usr/lib/python3.14/site-packages/colorama-0.4.6.dist-info/licenses/
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/colorama-0.4.6.dist-info/licenses/LICENSE.txt
+drwxr-xr-x root/root usr/lib/python3.14/site-packages/colorama/
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/colorama/__init__.py
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/colorama/ansi.py
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/colorama/ansitowin32.py
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/colorama/initialise.py
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/colorama/win32.py
+-rw-r--r-- root/root usr/lib/python3.14/site-packages/colorama/winterm.py
diff --git a/python/py-colorama/.signature b/python/py-colorama/.signature
new file mode 100644
index 0000000..344cd55
--- /dev/null
+++ b/python/py-colorama/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mDGPM7bbxn3hDVcfMjeuxn+zTBpQf7UscV3yEgoB2nNwcx6xGc+U5Z1/ia88GvGtVv/EKaYTtUa8DQUto3L1EwM=
+
+SHA256 (MAKEPKG) = 20fdd3338c52bfb5e0a6eb6841ad542c588e28169829991e468e9adcb0a30a13
+SHA256 (.footprint) = 8a24790a651a5ad51f22f7fa39a8c5dc4f53e5adcc8a9ddcdd2fde997679f86c
+SHA256 (colorama-0.4.6.tar.gz) = 08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44
+SHA256 (py-colorama#0.4.6-3.pkg.tar.gz) = 3b1efe272d2223c71c7179cea39749a7446de2a80e07a691e9fd404aeca805de
diff --git a/python/py-colorama/MAKEPKG b/python/py-colorama/MAKEPKG
new file mode 100644
index 0000000..94261ad
--- /dev/null
+++ b/python/py-colorama/MAKEPKG
@@ -0,0 +1,38 @@
+#!/bin/mkpkg
+# description: Cross-platform colored terminal text.
+# url: https://github.com/tartley/colorama
+
+name=py-colorama
+_name=colorama
+version=0.4.6
+release=3
+depends=(python3)
+makedeps=(py-installer py-hatchling py-build)
+source=(https://files.pythonhosted.org/packages/source/c/colorama/$_name-$version.tar.gz)
+
+sha256sums=(
+ "08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"
+)
+
+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