Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/3to2/
Date: Sun, 29 Dec 2019 09:29:50
Message-Id: 1577611777.1d3bf15d0e00d002198c4e6460330b2343e2ad76.soap@gentoo
1 commit: 1d3bf15d0e00d002198c4e6460330b2343e2ad76
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 29 09:29:37 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 29 09:29:37 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d3bf15d
7
8 dev-python/3to2: Remove old
9
10 Package-Manager: Portage-2.3.83, Repoman-2.3.20
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 dev-python/3to2/3to2-1.1.1.ebuild | 24 ------------------------
14 1 file changed, 24 deletions(-)
15
16 diff --git a/dev-python/3to2/3to2-1.1.1.ebuild b/dev-python/3to2/3to2-1.1.1.ebuild
17 deleted file mode 100644
18 index ac70b06c955..00000000000
19 --- a/dev-python/3to2/3to2-1.1.1.ebuild
20 +++ /dev/null
21 @@ -1,24 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -PYTHON_COMPAT=( python3_5 )
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="Tool to refactor valid 3.x syntax into valid 2.x syntax"
31 -HOMEPAGE="https://pypi.org/project/3to2/"
32 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
33 -
34 -LICENSE="Apache-1.1"
35 -SLOT="0"
36 -KEYWORDS="amd64 x86"
37 -IUSE=""
38 -
39 -DEPEND="app-arch/unzip"
40 -
41 -python_test() {
42 - cd "${BUILD_DIR}"/lib || die
43 - # the standard test runner fails to properly return failure
44 - "${PYTHON}" -m unittest discover || die "Tests fail with ${EPYTHON}"
45 -}