summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-05-23 17:27:34 +0200
committerMichał Górny <mgorny@gentoo.org>2025-05-23 18:03:59 +0200
commit65e85eae4e86fcaeedc54cd454eeec5f8e3d8497 (patch)
treed28c8082f8a1b8c3553256ead652f29d88b9ab96 /dev-python
parente3801b2cf9244766201a4aa07ad03522a5ef7626 (diff)
downloadgentoo-65e85eae4e86fcaeedc54cd454eeec5f8e3d8497.tar.gz
gentoo-65e85eae4e86fcaeedc54cd454eeec5f8e3d8497.tar.bz2
gentoo-65e85eae4e86fcaeedc54cd454eeec5f8e3d8497.zip
dev-python/configargparse: Bump to 1.7.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/configargparse/Manifest1
-rw-r--r--dev-python/configargparse/configargparse-1.7.1.ebuild39
2 files changed, 40 insertions, 0 deletions
diff --git a/dev-python/configargparse/Manifest b/dev-python/configargparse/Manifest
index cfb3199cbcf4..1c45b4f90c51 100644
--- a/dev-python/configargparse/Manifest
+++ b/dev-python/configargparse/Manifest
@@ -1 +1,2 @@
+DIST ConfigArgParse-1.7.1.gh.tar.gz 37528 BLAKE2B 0ff48bbb8b0569942b83bfcd3d1b72a8b5779cfe74b0b23b3f8a5b82c96068869917291c8e6c107ec3a6afc7cecfd53cd8d4faf573b7d88625aaa14838d63c9a SHA512 ca9741cf04a444b86c589a0097838cf9d6e1e752287587dda103cf59d9603890067b418ac26323aac4749787ac28c9764f1a41be839055756420e51363db10c7
DIST ConfigArgParse-1.7.gh.tar.gz 37462 BLAKE2B a351830f79899910039cfee7a830af58afb2534368b53e8f821c161444d81e2eac61ebf7a10ce1c4a6586f05db5fb0277fdc5c0605c0e517f9592bb9a66e2f45 SHA512 4c388768dfda861a58a8c7b5a4de2a7c4070d445d9ea9aaeb5ce2e5af954ed6422b5af33967d086fd4c477156ef89e3dfd1406c02f0c49bafe6a9c980bf5840f
diff --git a/dev-python/configargparse/configargparse-1.7.1.ebuild b/dev-python/configargparse/configargparse-1.7.1.ebuild
new file mode 100644
index 000000000000..9cf51feb3d4e
--- /dev/null
+++ b/dev-python/configargparse/configargparse-1.7.1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..13} )
+
+inherit distutils-r1
+
+MY_P=ConfigArgParse-${PV}
+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
+ -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ test? (
+ dev-python/pyyaml[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests unittest
+
+src_test() {
+ local -x COLUMNS=80
+ distutils-r1_src_test
+}