python3-dephell-links: initial commit, version 0.1.4

This commit is contained in:
Tim Biermann 2021-06-14 19:51:48 +00:00
parent a165f66740
commit eb6b6266a6
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,33 @@
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/dephell_links-0.1.4-py3.9.egg-info/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links-0.1.4-py3.9.egg-info/PKG-INFO
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links-0.1.4-py3.9.egg-info/SOURCES.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links-0.1.4-py3.9.egg-info/dependency_links.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links-0.1.4-py3.9.egg-info/requires.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links-0.1.4-py3.9.egg-info/top_level.txt
drwxr-xr-x root/root usr/lib/python3.9/site-packages/dephell_links/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/__init__.py
drwxr-xr-x root/root usr/lib/python3.9/site-packages/dephell_links/__pycache__/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/__pycache__/__init__.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/__pycache__/__init__.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/__pycache__/_cached_property.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/__pycache__/_cached_property.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/__pycache__/_parse.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/__pycache__/_parse.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/__pycache__/_path.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/__pycache__/_path.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/__pycache__/_unknown.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/__pycache__/_unknown.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/__pycache__/_url.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/__pycache__/_url.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/__pycache__/_vcs.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/__pycache__/_vcs.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/_cached_property.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/_parse.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/_path.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/_unknown.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/_url.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_links/_vcs.py

View File

@ -0,0 +1,4 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF35IAfV7ab8tE+FVFMMAzVB451QqooDUu9UWouwjKm/SDZr1yGaJ4bKLxJxr2K0fEwST0mN0/FTdChxgyvvw50gM=
SHA256 (Pkgfile) = bd679c6823b9bc370c4be6df2d8daac2171cca4ef89293b12406ded822b75085
SHA256 (.footprint) = fe3ea65000ce525eb6fe3e2ac9ac46be8de3e495c71b462631ebd68b62eacd44

View File

@ -0,0 +1,19 @@
# Description: Parse dependency links
# URL: https://github.com/dephell/dephell_links
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-attrs
name=python3-dephell-links
version=0.1.4
release=1
source=(https://files.pythonhosted.org/packages/source/d/dephell_links/dephell_links-$version.tar.gz)
build() {
cd dephell_links-$version
find . -name \*.pyc -delete
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --prefix=/usr \
--root=$PKG \
-O1 \
--skip-build
}