diff options
author | Tim Biermann <tbier@posteo.de> | 2022-07-10 19:29:17 +0200 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2022-07-10 19:29:17 +0200 |
commit | 25c982b0a5779b6437d13779ab047a63a4b14570 (patch) | |
tree | c18aeecf5601a8313c8abdde42aca4dee5a45171 /python3-editables | |
parent | 91fc2a742fcd38b72fcf71bff3b7395684a3db6a (diff) | |
download | contrib-25c982b0a5779b6437d13779ab047a63a4b14570.tar.gz contrib-25c982b0a5779b6437d13779ab047a63a4b14570.tar.xz |
python3-editables: initial commit, version 0.3
Diffstat (limited to 'python3-editables')
-rw-r--r-- | python3-editables/.footprint | 16 | ||||
-rw-r--r-- | python3-editables/.signature | 5 | ||||
-rw-r--r-- | python3-editables/Pkgfile | 16 |
3 files changed, 37 insertions, 0 deletions
diff --git a/python3-editables/.footprint b/python3-editables/.footprint new file mode 100644 index 000000000..cf37d7a91 --- /dev/null +++ b/python3-editables/.footprint @@ -0,0 +1,16 @@ +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/editables-0.3.dist-info/ +-rw-r--r-- root/root usr/lib/python3.9/site-packages/editables-0.3.dist-info/LICENSE.txt +-rw-r--r-- root/root usr/lib/python3.9/site-packages/editables-0.3.dist-info/METADATA +-rw-r--r-- root/root usr/lib/python3.9/site-packages/editables-0.3.dist-info/RECORD +-rw-r--r-- root/root usr/lib/python3.9/site-packages/editables-0.3.dist-info/WHEEL +-rw-r--r-- root/root usr/lib/python3.9/site-packages/editables-0.3.dist-info/top_level.txt +drwxr-xr-x root/root usr/lib/python3.9/site-packages/editables/ +-rw-r--r-- root/root usr/lib/python3.9/site-packages/editables/__init__.py +drwxr-xr-x root/root usr/lib/python3.9/site-packages/editables/__pycache__/ +-rw-r--r-- root/root usr/lib/python3.9/site-packages/editables/__pycache__/__init__.cpython-39.opt-2.pyc +-rw-r--r-- root/root usr/lib/python3.9/site-packages/editables/__pycache__/redirector.cpython-39.opt-2.pyc +-rw-r--r-- root/root usr/lib/python3.9/site-packages/editables/redirector.py diff --git a/python3-editables/.signature b/python3-editables/.signature new file mode 100644 index 000000000..d4b6129f3 --- /dev/null +++ b/python3-editables/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF34V4+jDa+ZlCKDh4W8b9wuknz++dYCnQzb5ROKBW5XF7FvMBaVZgZNtQg8shz1ttR91aA9eFPkEG/XtxKT5RWQY= +SHA256 (Pkgfile) = a2bb87a21e85c0c1adfc8ec14c73da883b78cc63f20ea4555ac93810832ecca2 +SHA256 (.footprint) = 40c0037237b10a45394b0c45ead9421bddfeea3af9e2d0fabb6ec0f1ff6c708b +SHA256 (editables-0.3.tar.gz) = 167524e377358ed1f1374e61c268f0d7a4bf7dbd046c656f7b410cde16161b1a diff --git a/python3-editables/Pkgfile b/python3-editables/Pkgfile new file mode 100644 index 000000000..bd8245b6a --- /dev/null +++ b/python3-editables/Pkgfile @@ -0,0 +1,16 @@ +# Description: Python library for creating "editable wheels" +# URL: https://github.com/pfmoore/editables +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: python3-build python3-installer + +name=python3-editables +version=0.3 +release=1 +source=(https://pypi.org/packages/source/e/editables/editables-$version.tar.gz) + +build() { + cd editables-$version + + /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation + /usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl +} |