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/extras/
Date: Thu, 23 Jun 2022 08:17:31
Message-Id: 1655972238.1e7b849cfd9fb226ae25424c6de4e13e2d160d55.mgorny@gentoo
1 commit: 1e7b849cfd9fb226ae25424c6de4e13e2d160d55
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 23 07:59:31 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 23 08:17:18 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e7b849c
7
8 dev-python/extras: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/extras/extras-1.0.0-r1.ebuild | 24 ------------------------
13 1 file changed, 24 deletions(-)
14
15 diff --git a/dev-python/extras/extras-1.0.0-r1.ebuild b/dev-python/extras/extras-1.0.0-r1.ebuild
16 deleted file mode 100644
17 index f259b61cb5d6..000000000000
18 --- a/dev-python/extras/extras-1.0.0-r1.ebuild
19 +++ /dev/null
20 @@ -1,24 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="Useful extra bits for Python that should be in the standard library"
30 -HOMEPAGE="https://github.com/testing-cabal/extras/ https://pypi.org/project/extras/"
31 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="MIT"
34 -SLOT="0"
35 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
36 -IUSE="test"
37 -RESTRICT="!test? ( test )"
38 -
39 -BDEPEND="
40 - test? ( dev-python/testtools[${PYTHON_USEDEP}] )"
41 -
42 -python_test() {
43 - "${EPYTHON}" ${PN}/tests/test_extras.py || die
44 -}