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: Sun, 12 Sep 2021 07:44:07
Message-Id: 1631432585.42e9933a6fe6534211f993514b1be2453e739c73.mgorny@gentoo
1 commit: 42e9933a6fe6534211f993514b1be2453e739c73
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 12 07:43:05 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 12 07:43:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42e9933a
7
8 dev-python/configargparse: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/configargparse/Manifest | 1 -
13 .../configargparse/configargparse-1.5.1.ebuild | 32 ----------------------
14 2 files changed, 33 deletions(-)
15
16 diff --git a/dev-python/configargparse/Manifest b/dev-python/configargparse/Manifest
17 index 686647d5715..c157e373bab 100644
18 --- a/dev-python/configargparse/Manifest
19 +++ b/dev-python/configargparse/Manifest
20 @@ -1,2 +1 @@
21 -DIST ConfigArgParse-1.5.1.gh.tar.gz 32245 BLAKE2B 9df80b4f0b12b3777311193c454dd010ce60dd9ceb702c99c1d8ac56575c615e77039910f3b412a176c9c229b88fa8937b052076d0cde2307ecc07f3337d064a SHA512 2c3854a45d97f0352321d2442a30408248e990dd46e2515cd7e2576efe9a33e03495231f8397ba6e3d79bb04bf11edfe5930b4765d46f29ca66b7bb3d3c1e0c9
22 DIST ConfigArgParse-1.5.2.gh.tar.gz 32598 BLAKE2B 2fcf2b93f9e80686f658217dbc5871f1b920565870bb8194855088dd6f81422325d505fbe5bfa014def8188cc792660d35450a0daf0229c0dc59da37adab9fff SHA512 823d7b256b803d3b60a373a124ea5d255b67a3b948d6543bd9a33f63f4b0dd1a416138a7105c64b064c222a90b4cada3b4aa6aecb70054ae2f1978fa5791330f
23
24 diff --git a/dev-python/configargparse/configargparse-1.5.1.ebuild b/dev-python/configargparse/configargparse-1.5.1.ebuild
25 deleted file mode 100644
26 index 37184c108b9..00000000000
27 --- a/dev-python/configargparse/configargparse-1.5.1.ebuild
28 +++ /dev/null
29 @@ -1,32 +0,0 @@
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 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 -}