Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/configargparse/
Date: Fri, 05 Nov 2021 09:55:14
Message-Id: 1636090805.374c6f1b32433d020d68732a12b8f20562465375.arthurzam@gentoo
1 commit: 374c6f1b32433d020d68732a12b8f20562465375
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 5 05:29:41 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 5 05:40:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=374c6f1b
7
8 dev-python/configargparse: drop 1.5.2
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/configargparse/Manifest | 1 -
13 .../configargparse/configargparse-1.5.2.ebuild | 32 ----------------------
14 2 files changed, 33 deletions(-)
15
16 diff --git a/dev-python/configargparse/Manifest b/dev-python/configargparse/Manifest
17 index 48985e5d9ca..6e371ece30a 100644
18 --- a/dev-python/configargparse/Manifest
19 +++ b/dev-python/configargparse/Manifest
20 @@ -1,2 +1 @@
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.2.ebuild b/dev-python/configargparse/configargparse-1.5.2.ebuild
25 deleted file mode 100644
26 index c0f5b570850..00000000000
27 --- a/dev-python/configargparse/configargparse-1.5.2.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/${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 -}