python3-dephell-archive: initial commit, version 0.1.5

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

View File

@ -0,0 +1,24 @@
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_archive-0.1.5-py3.9.egg-info/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_archive-0.1.5-py3.9.egg-info/PKG-INFO
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_archive-0.1.5-py3.9.egg-info/SOURCES.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_archive-0.1.5-py3.9.egg-info/dependency_links.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_archive-0.1.5-py3.9.egg-info/requires.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_archive-0.1.5-py3.9.egg-info/top_level.txt
drwxr-xr-x root/root usr/lib/python3.9/site-packages/dephell_archive/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_archive/__init__.py
drwxr-xr-x root/root usr/lib/python3.9/site-packages/dephell_archive/__pycache__/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_archive/__pycache__/__init__.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_archive/__pycache__/__init__.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_archive/__pycache__/_glob.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_archive/__pycache__/_glob.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_archive/__pycache__/_path.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_archive/__pycache__/_path.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_archive/__pycache__/_stream.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_archive/__pycache__/_stream.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_archive/_glob.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_archive/_path.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_archive/_stream.py

View File

@ -0,0 +1,4 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF30VNWExDQlU57zgNcLgv6zFLQA7udc8pqaoHNnPKviSRhX0TSzG2L4mtUGBfcABANbBeyKcKGu45GvgDnyJY/gE=
SHA256 (Pkgfile) = c9fc37810c5c6588e1e6356e4fcc29a4ffacdafe73643afff5b7eab82fb70e03
SHA256 (.footprint) = e9a700ff5dfce98ba87d9bbcf0d8e84b99a8ff148e49fb118c8f70173ff8f543

View File

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