Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/configargparse/
Date: Mon, 04 Oct 2021 08:06:01
Message-Id: 1633334747.5755763c2b606d575c502b5887f8422f2d9a821c.mgorny@gentoo
1 commit: 5755763c2b606d575c502b5887f8422f2d9a821c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 4 05:52:36 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 4 08:05:47 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5755763c
7
8 dev-python/configargparse: Bump to 1.5.3
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/configargparse/Manifest | 1 +
13 .../configargparse/configargparse-1.5.3.ebuild | 32 ++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/dev-python/configargparse/Manifest b/dev-python/configargparse/Manifest
17 index c157e373bab..48985e5d9ca 100644
18 --- a/dev-python/configargparse/Manifest
19 +++ b/dev-python/configargparse/Manifest
20 @@ -1 +1,2 @@
21 DIST ConfigArgParse-1.5.2.gh.tar.gz 32598 BLAKE2B 2fcf2b93f9e80686f658217dbc5871f1b920565870bb8194855088dd6f81422325d505fbe5bfa014def8188cc792660d35450a0daf0229c0dc59da37adab9fff SHA512 823d7b256b803d3b60a373a124ea5d255b67a3b948d6543bd9a33f63f4b0dd1a416138a7105c64b064c222a90b4cada3b4aa6aecb70054ae2f1978fa5791330f
22 +DIST ConfigArgParse-1.5.3.gh.tar.gz 32732 BLAKE2B a9dec6b3ebbb7aed000651adf76ac76994b56d00236789a75f7da6ccc76e6b87e0dd292c260a768c0d402811b69e55d417b25032363429535cef4e09e0be5d00 SHA512 bdc0340bd92cfd5319743a4860af80fc2352f38b156031856c2b39b8c8ad59461281009030c4451dd464334a829b8143c765979cfc9b8ccbe9fbdcb0e08ac7b4
23
24 diff --git a/dev-python/configargparse/configargparse-1.5.3.ebuild b/dev-python/configargparse/configargparse-1.5.3.ebuild
25 new file mode 100644
26 index 00000000000..9f2c72f0cf3
27 --- /dev/null
28 +++ b/dev-python/configargparse/configargparse-1.5.3.ebuild
29 @@ -0,0 +1,32 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +inherit distutils-r1
37 +
38 +MY_PN="ConfigArgParse"
39 +MY_P="${MY_PN}-${PV}"
40 +DESCRIPTION="Drop-in replacement for argparse supporting config files and env variables"
41 +HOMEPAGE="
42 + https://github.com/bw2/ConfigArgParse/
43 + https://pypi.org/project/ConfigArgParse/"
44 +SRC_URI="
45 + https://github.com/bw2/ConfigArgParse/archive/v${PV}.tar.gz
46 + -> ${MY_P}.gh.tar.gz"
47 +S="${WORKDIR}/${MY_P}"
48 +
49 +LICENSE="MIT"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
52 +
53 +BDEPEND="
54 + test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
55 +
56 +distutils_enable_tests unittest
57 +
58 +src_test() {
59 + local -x COLUMNS=80
60 + distutils-r1_src_test
61 +}