diff options
author | Tim Biermann <tbier@posteo.de> | 2022-04-18 22:40:44 +0200 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2022-04-18 22:40:44 +0200 |
commit | b876f4e8c61744dc617e8e44a2ea674b1fe479f2 (patch) | |
tree | 21141fe85af13a43c15571a55faa57aed3e6ed98 /python3-hatch-vcs | |
parent | 1ac4c2a541c4a021d37b0bab8e24feda605726c5 (diff) | |
download | contrib-b876f4e8c61744dc617e8e44a2ea674b1fe479f2.tar.gz contrib-b876f4e8c61744dc617e8e44a2ea674b1fe479f2.tar.xz |
python3-hatch-vcs: initial commit, version 0.2.0
Diffstat (limited to 'python3-hatch-vcs')
-rw-r--r-- | python3-hatch-vcs/.footprint | 23 | ||||
-rw-r--r-- | python3-hatch-vcs/.signature | 5 | ||||
-rw-r--r-- | python3-hatch-vcs/Pkgfile | 15 |
3 files changed, 43 insertions, 0 deletions
diff --git a/python3-hatch-vcs/.footprint b/python3-hatch-vcs/.footprint new file mode 100644 index 000000000..1094169c3 --- /dev/null +++ b/python3-hatch-vcs/.footprint @@ -0,0 +1,23 @@ +drwxr-xr-x root/root usr/ +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/hatch_vcs-0.2.0.dist-info/ +-rw-r--r-- root/root usr/lib/python3.9/site-packages/hatch_vcs-0.2.0.dist-info/METADATA +-rw-r--r-- root/root usr/lib/python3.9/site-packages/hatch_vcs-0.2.0.dist-info/RECORD +-rw-r--r-- root/root usr/lib/python3.9/site-packages/hatch_vcs-0.2.0.dist-info/WHEEL +-rw-r--r-- root/root usr/lib/python3.9/site-packages/hatch_vcs-0.2.0.dist-info/entry_points.txt +drwxr-xr-x root/root usr/lib/python3.9/site-packages/hatch_vcs-0.2.0.dist-info/license_files/ +-rw-r--r-- root/root usr/lib/python3.9/site-packages/hatch_vcs-0.2.0.dist-info/license_files/LICENSE.txt +drwxr-xr-x root/root usr/lib/python3.9/site-packages/hatch_vcs/ +-rw-r--r-- root/root usr/lib/python3.9/site-packages/hatch_vcs/__about__.py +-rw-r--r-- root/root usr/lib/python3.9/site-packages/hatch_vcs/__init__.py +drwxr-xr-x root/root usr/lib/python3.9/site-packages/hatch_vcs/__pycache__/ +-rw-r--r-- root/root usr/lib/python3.9/site-packages/hatch_vcs/__pycache__/__about__.cpython-39.opt-1.pyc +-rw-r--r-- root/root usr/lib/python3.9/site-packages/hatch_vcs/__pycache__/__init__.cpython-39.opt-1.pyc +-rw-r--r-- root/root usr/lib/python3.9/site-packages/hatch_vcs/__pycache__/build_hook.cpython-39.opt-1.pyc +-rw-r--r-- root/root usr/lib/python3.9/site-packages/hatch_vcs/__pycache__/hooks.cpython-39.opt-1.pyc +-rw-r--r-- root/root usr/lib/python3.9/site-packages/hatch_vcs/__pycache__/version_source.cpython-39.opt-1.pyc +-rw-r--r-- root/root usr/lib/python3.9/site-packages/hatch_vcs/build_hook.py +-rw-r--r-- root/root usr/lib/python3.9/site-packages/hatch_vcs/hooks.py +-rw-r--r-- root/root usr/lib/python3.9/site-packages/hatch_vcs/version_source.py diff --git a/python3-hatch-vcs/.signature b/python3-hatch-vcs/.signature new file mode 100644 index 000000000..45ddab1d5 --- /dev/null +++ b/python3-hatch-vcs/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF38sr0KK/pgKfftI/LXtWEaZy9KaRBKhZct5QycdTA7Yp2Xy+dyv9GfwBpFaKfD33jC2EKdqOTcbwi+0eHak8lgY= +SHA256 (Pkgfile) = 084faa39bc1bfa61e7f127afed77e60fd0f81568b868d0626801ae6f9e1bd1c5 +SHA256 (.footprint) = 49ef2de6eaefdae7fb09e6de5c4a8ab719025a253496f42e7d8a866a9b0d3ac8 +SHA256 (hatch-vcs-0.2.0.tar.gz) = 99f2fe7cd5c300924aaac845ee8cac0d941b0f706d17ed58d3e2eb2e246a2908 diff --git a/python3-hatch-vcs/Pkgfile b/python3-hatch-vcs/Pkgfile new file mode 100644 index 000000000..95cd4fada --- /dev/null +++ b/python3-hatch-vcs/Pkgfile @@ -0,0 +1,15 @@ +# Description: Hatch plugin for versioning with your preferred VCS +# URL: https://github.com/ofek/hatch-vcs +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: python3-hatchling python3-install + +name=python3-hatch-vcs +version=0.2.0 +release=1 +source=(https://github.com/ofek/hatch-vcs/archive/v$version/hatch-vcs-$version.tar.gz) + +build() { + cd hatch-vcs-$version + /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation + /usr/bin/python3 -m install --optimize=1 --destdir=$PKG dist/*.whl +} |