From f77d9440cc399f7eda269129e556847b0ed166f7 Mon Sep 17 00:00:00 2001 From: Tim Biermann Date: Sun, 27 Mar 2022 16:25:01 +0200 Subject: [PATCH] python3-configargparse: initial commit, version --- python3-configargparse/.footprint | 14 ++++++++++++++ python3-configargparse/.signature | 5 +++++ python3-configargparse/Pkgfile | 15 +++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 python3-configargparse/.footprint create mode 100644 python3-configargparse/.signature create mode 100644 python3-configargparse/Pkgfile diff --git a/python3-configargparse/.footprint b/python3-configargparse/.footprint new file mode 100644 index 000000000..10360eb43 --- /dev/null +++ b/python3-configargparse/.footprint @@ -0,0 +1,14 @@ +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/ConfigArgParse-1.5.3-py3.9.egg-info/ +-rw-r--r-- root/root usr/lib/python3.9/site-packages/ConfigArgParse-1.5.3-py3.9.egg-info/PKG-INFO +-rw-r--r-- root/root usr/lib/python3.9/site-packages/ConfigArgParse-1.5.3-py3.9.egg-info/SOURCES.txt +-rw-r--r-- root/root usr/lib/python3.9/site-packages/ConfigArgParse-1.5.3-py3.9.egg-info/dependency_links.txt +-rw-r--r-- root/root usr/lib/python3.9/site-packages/ConfigArgParse-1.5.3-py3.9.egg-info/requires.txt +-rw-r--r-- root/root usr/lib/python3.9/site-packages/ConfigArgParse-1.5.3-py3.9.egg-info/top_level.txt +drwxr-xr-x root/root usr/lib/python3.9/site-packages/__pycache__/ +-rw-r--r-- root/root usr/lib/python3.9/site-packages/__pycache__/configargparse.cpython-39.opt-1.pyc +-rw-r--r-- root/root usr/lib/python3.9/site-packages/__pycache__/configargparse.cpython-39.pyc +-rw-r--r-- root/root usr/lib/python3.9/site-packages/configargparse.py diff --git a/python3-configargparse/.signature b/python3-configargparse/.signature new file mode 100644 index 000000000..e56b03d30 --- /dev/null +++ b/python3-configargparse/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF35j8KBgvILy7rbQAu2to/LXM7UERg9eJMw0yBmM/45/kZF7XhhivYQ9QJVRZ4c9oI/2GsF//BwYSlqa/fgVFGA8= +SHA256 (Pkgfile) = 9d9a2e15b65eeee0ca186b7caf94dd50b6a93d21e1aecb0cadce20d5533a9428 +SHA256 (.footprint) = a5e57e9f966b82941f0ccf0ba045af47f7dc53e78f8ce19756a9c3976bbbe8a5 +SHA256 (python3-configargparse-1.5.3.tar.gz) = 9eb08a295f5d89aed98c73b16b86ff0825cf64b45bf170c7fd4dbfbd44ad12be diff --git a/python3-configargparse/Pkgfile b/python3-configargparse/Pkgfile new file mode 100644 index 000000000..d50dd101a --- /dev/null +++ b/python3-configargparse/Pkgfile @@ -0,0 +1,15 @@ +# Description: A drop-in replacement for argparse +# URL: https://github.com/bw2/ConfigArgParse/ +# Maintainer: Tim Biermann, tbier at poste dot de +# Depends on: python3-setuptools + +name=python3-configargparse +version=1.5.3 +release=1 +source=(https://github.com/bw2/ConfigArgParse/archive/v$version/$name-$version.tar.gz) + +build() { + cd ConfigArgParse-$version + /usr/bin/python3 setup.py build + /usr/bin/python3 setup.py install --root=$PKG --optimize=1 --skip-build +}