summaryrefslogtreecommitdiff
path: root/dev-python/ConfigArgParse/ConfigArgParse-1.7.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-07-24 05:30:35 +0200
committerMichał Górny <mgorny@gentoo.org>2023-07-24 05:33:13 +0200
commit0882ed2e2a7ccb24a95f51524632d61059d7fcbc (patch)
tree34930d50ed07d2ff236e51937a94255876862bc4 /dev-python/ConfigArgParse/ConfigArgParse-1.7.ebuild
parent2bae62615e4dd70b3f971bd23730146d00619aa0 (diff)
downloadgentoo-0882ed2e2a7ccb24a95f51524632d61059d7fcbc.tar.gz
gentoo-0882ed2e2a7ccb24a95f51524632d61059d7fcbc.tar.bz2
gentoo-0882ed2e2a7ccb24a95f51524632d61059d7fcbc.zip
dev-python/ConfigArgParse: Bump to 1.7
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/ConfigArgParse/ConfigArgParse-1.7.ebuild')
-rw-r--r--dev-python/ConfigArgParse/ConfigArgParse-1.7.ebuild35
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-python/ConfigArgParse/ConfigArgParse-1.7.ebuild b/dev-python/ConfigArgParse/ConfigArgParse-1.7.ebuild
new file mode 100644
index 000000000000..25887a58a083
--- /dev/null
+++ b/dev-python/ConfigArgParse/ConfigArgParse-1.7.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="Drop-in replacement for argparse supporting config files and env variables"
+HOMEPAGE="
+ https://github.com/bw2/ConfigArgParse/
+ https://pypi.org/project/ConfigArgParse/"
+SRC_URI="
+ https://github.com/bw2/ConfigArgParse/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+
+BDEPEND="
+ test? (
+ dev-python/pyyaml[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests unittest
+
+src_test() {
+ local -x COLUMNS=80
+ distutils-r1_src_test
+}