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, 18 Apr 2021 07:06:00
Message-Id: 1618729528.ce529ecd8babcfeb4eb86214bd17974726bb4102.mgorny@gentoo
1 commit: ce529ecd8babcfeb4eb86214bd17974726bb4102
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 18 06:41:33 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 18 07:05:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce529ecd
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.3.ebuild | 30 ----------------------
14 2 files changed, 31 deletions(-)
15
16 diff --git a/dev-python/configargparse/Manifest b/dev-python/configargparse/Manifest
17 index 2d8b91ebcdd..71da88c8a69 100644
18 --- a/dev-python/configargparse/Manifest
19 +++ b/dev-python/configargparse/Manifest
20 @@ -1,2 +1 @@
21 -DIST ConfigArgParse-1.3.gh.tar.gz 28274 BLAKE2B 0ea46747425d978da0de35e7ac29c91ee637f1c793265eeecf702ec504b1d1083d31bdaa48134de2916733f845cd68690af2ff0765b3a5bdc98365d03aad4492 SHA512 7f7048babacaada3495ece42d6bd484b07d648c2b2c1a8e700379aae6c65d96c37bf15a20f90281e2c0d83948e22986689c4b02e0388d9bf01e77d9d1561b0c5
22 DIST ConfigArgParse-1.4.gh.tar.gz 30079 BLAKE2B c070e245665bc331efb3a0b4d2e5ad0486859a7f28dbad2669d897d1857b58b1b1b48cb57d34ab2e5de5c21aa2a3554d728d6e48d5aa4c3a8c494fdc2ad9f615 SHA512 a2284da53e2417022c60dc637c6e4f6c7eea6b56790926982e35483bdcdce0cb349c09d02968625ac3888a0cb13cd0b5182f739c31a95425f9daf12c8b00f5c0
23
24 diff --git a/dev-python/configargparse/configargparse-1.3.ebuild b/dev-python/configargparse/configargparse-1.3.ebuild
25 deleted file mode 100644
26 index a6b4ad28033..00000000000
27 --- a/dev-python/configargparse/configargparse-1.3.ebuild
28 +++ /dev/null
29 @@ -1,30 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -MY_PN="ConfigArgParse"
36 -MY_P="${MY_PN}-${PV}"
37 -
38 -PYTHON_COMPAT=( python3_{7..9} )
39 -
40 -inherit distutils-r1
41 -
42 -DESCRIPTION="Drop-in replacement for argparse supporting config files and env variables"
43 -HOMEPAGE="https://github.com/bw2/ConfigArgParse https://pypi.org/project/ConfigArgParse/"
44 -SRC_URI="https://github.com/bw2/ConfigArgParse/archive/${PV}.tar.gz -> ${MY_P}.gh.tar.gz"
45 -
46 -LICENSE="MIT"
47 -SLOT="0"
48 -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
49 -IUSE="test"
50 -RESTRICT="!test? ( test )"
51 -
52 -BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
53 -
54 -S="${WORKDIR}/${MY_P}"
55 -
56 -python_test() {
57 - local -x COLUMNS=80
58 - esetup.py test
59 -}