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/python-gflags/
Date: Sat, 28 Mar 2020 21:11:51
Message-Id: 1585429867.aacd8e676d61a84f609f968486eced3a43196b50.mgorny@gentoo
1 commit: aacd8e676d61a84f609f968486eced3a43196b50
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 28 21:01:09 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 28 21:11:07 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aacd8e67
7
8 dev-python/python-gflags: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-gflags/Manifest | 1 -
13 .../python-gflags/python-gflags-3.1.1.ebuild | 34 ----------------------
14 2 files changed, 35 deletions(-)
15
16 diff --git a/dev-python/python-gflags/Manifest b/dev-python/python-gflags/Manifest
17 index 14b179d6f92..8e1dfc158b6 100644
18 --- a/dev-python/python-gflags/Manifest
19 +++ b/dev-python/python-gflags/Manifest
20 @@ -1,2 +1 @@
21 -DIST python-gflags-3.1.1.tar.gz 52633 BLAKE2B 78966a7ffd924dcb16b4c6459d10cb06b9494150887433fec1e32e1b454f151386d4024f3ba1d307f756781128224c8106539480d9291dcc2ed82e85c8eef36f SHA512 28009cdc09b94b416af5237d3897d6ab516cc3b6a3eed18a31adb8c199f31a8c7d07b1d69794cb37de84b50eefbde1de57f9f0afaeac0a4747b352f4024ef12c
22 DIST python-gflags-3.1.2.tar.gz 52093 BLAKE2B 4275b43ecf2c58f76fee0b1ff4645eb3176a9ae3b68fdd4a059c2f6f659ca1d9b6e4fad152a2fa48f1eb22c467dbc006835c241c21f89c0ca92367e484f34c6f SHA512 7a3c08b6b212cdb9cb7feaa48e3875d1204a4b3a57182508a078331565f70509d00c315400fa0316dbf61ed4d6a6a04ca8c1a2303567d37650d8dfbb329e2f6c
23
24 diff --git a/dev-python/python-gflags/python-gflags-3.1.1.ebuild b/dev-python/python-gflags/python-gflags-3.1.1.ebuild
25 deleted file mode 100644
26 index 4d78be44ec9..00000000000
27 --- a/dev-python/python-gflags/python-gflags-3.1.1.ebuild
28 +++ /dev/null
29 @@ -1,34 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python2_7 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Google's Python argument parsing library"
40 -HOMEPAGE="https://github.com/google/python-gflags"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
46 -
47 -RDEPEND="
48 - dev-python/six[${PYTHON_USEDEP}]"
49 -
50 -DEPEND="
51 - ${RDEPEND}
52 - dev-python/setuptools[${PYTHON_USEDEP}]"
53 -
54 -PATCHES=(
55 - "${FILESDIR}"/${P}-script-install.patch
56 -)
57 -
58 -python_test() {
59 - # note: each test needs to be run separately, otherwise they fail
60 - "${PYTHON}" -m gflags._helpers_test -v || die
61 - "${PYTHON}" -m gflags.flags_formatting_test -v || die
62 - "${PYTHON}" -m gflags.flags_unicode_literals_test -v || die
63 -}