python3-dephell-argparse: initial commit, version 0.1.3

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

View File

@ -0,0 +1,29 @@
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_argparse-0.1.3-py3.9.egg-info/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse-0.1.3-py3.9.egg-info/PKG-INFO
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse-0.1.3-py3.9.egg-info/SOURCES.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse-0.1.3-py3.9.egg-info/dependency_links.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse-0.1.3-py3.9.egg-info/top_level.txt
drwxr-xr-x root/root usr/lib/python3.9/site-packages/dephell_argparse/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse/__init__.py
drwxr-xr-x root/root usr/lib/python3.9/site-packages/dephell_argparse/__pycache__/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse/__pycache__/__init__.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse/__pycache__/__init__.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse/__pycache__/_cached_property.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse/__pycache__/_cached_property.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse/__pycache__/_colors.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse/__pycache__/_colors.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse/__pycache__/_command.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse/__pycache__/_command.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse/__pycache__/_handler.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse/__pycache__/_handler.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse/__pycache__/_parser.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse/__pycache__/_parser.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse/_cached_property.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse/_colors.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse/_command.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse/_handler.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/dephell_argparse/_parser.py

View File

@ -0,0 +1,4 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3/0Ak72MCogrtA9lmzbFqwe19bm35+kxrDOO5EwuO7mhOk5mb7VNUTuGv9cQcrVliWjCMDa422Gu1kfmd9bvvA4=
SHA256 (Pkgfile) = 571db9b69f0f4ac232cfeb723b13fe6a01208739b3f9503338bf2833b9868035
SHA256 (.footprint) = 09f2a9d5425e3190ac6989ef98b8968a4c13d78312323084143bfd82c852cdaf

View File

@ -0,0 +1,18 @@
# Description: Argparse with groups, commands, colors, and fuzzy matching
# URL: https://github.com/dephell/dephell_argparse
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-setuptools
name=python3-dephell-argparse
version=0.1.3
release=1
source=(https://files.pythonhosted.org/packages/source/d/dephell_argparse/dephell_argparse-$version.tar.gz)
build() {
cd dephell_argparse-$version
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --prefix=/usr \
--root=$PKG \
-O1 \
--skip-build
}