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/nose2/
Date: Thu, 16 Mar 2023 18:13:18
Message-Id: 1678990283.abbbfc2d5653c6869cb70f17b546aac5a9a83302.mgorny@gentoo
1 commit: abbbfc2d5653c6869cb70f17b546aac5a9a83302
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 16 18:09:57 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 16 18:11:23 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abbbfc2d
7
8 dev-python/nose2: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/nose2/Manifest | 1 -
13 dev-python/nose2/nose2-0.11.0.ebuild | 29 -----------------------------
14 2 files changed, 30 deletions(-)
15
16 diff --git a/dev-python/nose2/Manifest b/dev-python/nose2/Manifest
17 index 9034b135ccb0..6f54fb86834d 100644
18 --- a/dev-python/nose2/Manifest
19 +++ b/dev-python/nose2/Manifest
20 @@ -1,2 +1 @@
21 -DIST nose2-0.11.0.tar.gz 159486 BLAKE2B 36167e492a49017e0f1474bfd5fd77782a324f7d884bc11c88cf9226090dce67d47519db00d3b57542dc808fb0db40942184b3c1804ad3923e3cf5fc03cd50bc SHA512 8e6755c0f5a25c4c53a35d93e5c7988523e03e978b0593d49b7917dfcb980553be9af0cc3c67c2db527c304d049d97a8d7f6f53b1a8b2875ab5456cbb7519375
22 DIST nose2-0.12.0.gh.tar.gz 168454 BLAKE2B cce76a046c4285d7dbe6ad6a049628e23ddebd36eda4457eecb4f0e14b1559f8bd7be5bc80aa99bf965f530575c3f5e245d1a30b4115d5e8ee0aa4c8d93fb8f0 SHA512 7f1462613b7d38a77cd0764f721be4223b8f4ae4694c49ba416a076c321e07484969ee1a7c2d2f89484c0c3b2a96e74d6a42321981af4930ebe5f63f07df7755
23
24 diff --git a/dev-python/nose2/nose2-0.11.0.ebuild b/dev-python/nose2/nose2-0.11.0.ebuild
25 deleted file mode 100644
26 index 327fa24735df..000000000000
27 --- a/dev-python/nose2/nose2-0.11.0.ebuild
28 +++ /dev/null
29 @@ -1,29 +0,0 @@
30 -# Copyright 1999-2023 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( python3_{9..10} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Next generation unittest with plugins"
41 -HOMEPAGE="https://github.com/nose-devs/nose2"
42 -SRC_URI="https://github.com/nose-devs/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="BSD"
45 -SLOT="0"
46 -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86"
47 -
48 -RDEPEND="
49 - >=dev-python/coverage-4.4.1[${PYTHON_USEDEP}]
50 - dev-python/six[${PYTHON_USEDEP}]
51 -"
52 -
53 -distutils_enable_sphinx docs \
54 - dev-python/sphinx-rtd-theme
55 -
56 -python_test() {
57 - "${EPYTHON}" -m nose2.__main__ -vv || die "tests failed under ${EPYTHON}"
58 -}