1
0
forked from ports/contrib

python3-dephell-specifier: initial commit, version 0.2.2

This commit is contained in:
Tim Biermann 2021-06-14 19:51:48 +00:00
parent 3fbfbb1b52
commit 4900e7eedd
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,30 @@
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_specifier-0.2.2-py3.9.egg-info/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier-0.2.2-py3.9.egg-info/PKG-INFO
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier-0.2.2-py3.9.egg-info/SOURCES.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier-0.2.2-py3.9.egg-info/dependency_links.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier-0.2.2-py3.9.egg-info/requires.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier-0.2.2-py3.9.egg-info/top_level.txt
drwxr-xr-x root/root usr/lib/python3.9/site-packages/dephell_specifier/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier/__init__.py
drwxr-xr-x root/root usr/lib/python3.9/site-packages/dephell_specifier/__pycache__/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier/__pycache__/__init__.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier/__pycache__/__init__.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier/__pycache__/constants.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier/__pycache__/constants.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier/__pycache__/git_specifier.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier/__pycache__/git_specifier.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier/__pycache__/range_specifier.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier/__pycache__/range_specifier.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier/__pycache__/specifier.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier/__pycache__/specifier.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier/__pycache__/utils.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier/__pycache__/utils.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier/constants.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier/git_specifier.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier/range_specifier.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier/specifier.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_specifier/utils.py

View File

@ -0,0 +1,4 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF31Do9CJzLbOD21jSsgO4SozUT1fTn/qQLnw/qDoP4t/P73p4Zm9+gs0nRZet8JxZPU0AClvqv4H9XuKbhNqUiQg=
SHA256 (Pkgfile) = b735ecdac8bdb2440935898d026f0b5632878e01e4a9d5d73a821778e32d15e9
SHA256 (.footprint) = 996002b6cc026218533e7f7d009ac4f4780314f021e3a60ac416c1f9185c2fcf

View File

@ -0,0 +1,18 @@
# Description: Work with version specifiers
# URL: https://github.com/dephell/dephell_specifier
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-packaging
name=python3-dephell-specifier
version=0.2.2
release=1
source=(https://files.pythonhosted.org/packages/source/d/dephell_specifier/dephell_specifier-$version.tar.gz)
build() {
cd dephell_specifier-$version
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --prefix=/usr \
--root=$PKG \
--skip-build \
-O1
}