summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2021-07-11 17:32:04 +0200
committerErich Eckner <git@eckner.net>2021-07-11 17:32:04 +0200
commit434819d9308218bbe5681a1eafd49def1a90f45b (patch)
treef8d9abefbfdaea128d1e3bdab22f28eb11f43eaf
parent1a49eb1ee3b7e51e1d35c41dd4161fea9847dd47 (diff)
downloadcrux-ports-434819d9308218bbe5681a1eafd49def1a90f45b.tar.xz
python3-semver neu
-rw-r--r--manualPorts/python3-semver/.footprint16
-rw-r--r--manualPorts/python3-semver/.md5sum1
-rw-r--r--manualPorts/python3-semver/.signature5
-rw-r--r--manualPorts/python3-semver/Pkgfile15
4 files changed, 37 insertions, 0 deletions
diff --git a/manualPorts/python3-semver/.footprint b/manualPorts/python3-semver/.footprint
new file mode 100644
index 0000000..2491154
--- /dev/null
+++ b/manualPorts/python3-semver/.footprint
@@ -0,0 +1,16 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/pysemver
+drwxr-xr-x root/root usr/lib/
+drwxr-xr-x root/root usr/lib/python3.9/
+drwxr-xr-x root/root usr/lib/python3.9/site-packages/
+drwxr-xr-x root/root usr/lib/python3.9/site-packages/__pycache__/
+-rw-r--r-- root/root usr/lib/python3.9/site-packages/__pycache__/semver.cpython-39.opt-1.pyc
+-rw-r--r-- root/root usr/lib/python3.9/site-packages/__pycache__/semver.cpython-39.pyc
+drwxr-xr-x root/root usr/lib/python3.9/site-packages/semver-2.13.0-py3.9.egg-info/
+-rw-r--r-- root/root usr/lib/python3.9/site-packages/semver-2.13.0-py3.9.egg-info/PKG-INFO
+-rw-r--r-- root/root usr/lib/python3.9/site-packages/semver-2.13.0-py3.9.egg-info/SOURCES.txt
+-rw-r--r-- root/root usr/lib/python3.9/site-packages/semver-2.13.0-py3.9.egg-info/dependency_links.txt
+-rw-r--r-- root/root usr/lib/python3.9/site-packages/semver-2.13.0-py3.9.egg-info/entry_points.txt
+-rw-r--r-- root/root usr/lib/python3.9/site-packages/semver-2.13.0-py3.9.egg-info/top_level.txt
+-rw-r--r-- root/root usr/lib/python3.9/site-packages/semver.py
diff --git a/manualPorts/python3-semver/.md5sum b/manualPorts/python3-semver/.md5sum
new file mode 100644
index 0000000..b7d9234
--- /dev/null
+++ b/manualPorts/python3-semver/.md5sum
@@ -0,0 +1 @@
+1f82fcb198552eaa589b77be4e1bdac0 2.13.0.tar.gz
diff --git a/manualPorts/python3-semver/.signature b/manualPorts/python3-semver/.signature
new file mode 100644
index 0000000..c0a3d46
--- /dev/null
+++ b/manualPorts/python3-semver/.signature
@@ -0,0 +1,5 @@
+untrusted comment: verify with /etc/ports/deepthought.pub
+RWQxCptPusLGGk2vbIcwjvVKWLqCwg/7ZKJuvCDV2PQpp17MAoTXqh+BGunuSb73KjphTIxO3O2G5aUQMB3ambiXoE3CFR4KvQM=
+SHA256 (Pkgfile) = 4ab4b43c21b698706a559e1b33356547b78f99ad4f9bad5a06c1ce3a6828bd3f
+SHA256 (.footprint) = d3b990b5c12eef0ee94f2967c8adaa16ee58dda8cd317c9aae0016c91ee55516
+SHA256 (2.13.0.tar.gz) = 3a3b1b34da5f772f07445f4817eb596a9d42efed730213c527a51070bc88b799
diff --git a/manualPorts/python3-semver/Pkgfile b/manualPorts/python3-semver/Pkgfile
new file mode 100644
index 0000000..64b5447
--- /dev/null
+++ b/manualPorts/python3-semver/Pkgfile
@@ -0,0 +1,15 @@
+# Description: Python helper for Semantic Versioning
+# URL: https://github.com/k-bx/python-semver
+# Maintainer: Erich Eckner, crux at eckner dot net
+# Depends on: python3-setuptools
+
+name=python3-semver
+version=2.13.0
+release=1
+source=("https://github.com/k-bx/python-semver/archive/$version.tar.gz")
+
+build() {
+ cd python-${name#python3-}-${version}
+ python3 setup.py build
+ python3 setup.py install --optimize=1 --root=${PKG}
+}