python3-hatch-vcs: initial commit, version 0.2.0

This commit is contained in:
Tim Biermann 2022-04-18 22:40:44 +02:00
parent 1ac4c2a541
commit b876f4e8c6
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 43 additions and 0 deletions

View File

@ -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

View File

@ -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

15
python3-hatch-vcs/Pkgfile Normal file
View File

@ -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
}