python3-editables: initial commit, version 0.3

This commit is contained in:
Tim Biermann 2022-07-10 19:29:17 +02:00
parent 91fc2a742f
commit 25c982b0a5
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 37 additions and 0 deletions

View File

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

View File

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

16
python3-editables/Pkgfile Normal file
View File

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