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/nose/
Date: Sun, 06 Nov 2022 07:59:33
Message-Id: 1667721557.b9ef3a42be0000680008b9871864f214ba61ccf2.mgorny@gentoo
1 commit: b9ef3a42be0000680008b9871864f214ba61ccf2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 6 07:35:57 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 6 07:59:17 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9ef3a42
7
8 dev-python/nose: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/nose/Manifest | 1 -
13 dev-python/nose/nose-1.3.7_p20211111_p1-r1.ebuild | 58 -----------------------
14 2 files changed, 59 deletions(-)
15
16 diff --git a/dev-python/nose/Manifest b/dev-python/nose/Manifest
17 index af7cc2a1881c..f3e9898480d9 100644
18 --- a/dev-python/nose/Manifest
19 +++ b/dev-python/nose/Manifest
20 @@ -1,2 +1 @@
21 -DIST nose-1.3.7_p20211111_p1.gh.tar.gz 327855 BLAKE2B acddcaa0718f23f281ea34a977354b3ef88c95d4ef712afd8354effe6df7883d473b50caaa3b5c79fcc4c36a9d45bee4eb5865a6ef66e371dae12ed1a0a0418a SHA512 752eb1337fd481a1b8498ead330d716cf4180c18faabde257e9a1139928b9fa38e2e145d36c1ea8e3867a36d4843134ee26e9e9f83ff84d21f0fe246d2392d15
22 DIST nose-1.3.7_p20221026.gh.tar.gz 325421 BLAKE2B 3762e1703a6a9c90d1569d21efa9ba100f52a8b3660022694133a763d995e19a6eef2398f5013b4827e4c334a2d5e3cd14a9704a50cd822c2d554a0ed6008f2c SHA512 3cb97b58525bee0cf88328ba865dc039bf3b76c56b4b42dd9dcf68f7b7585a91fb7e9b0c419668eccc0e242b2bcbb77eb197a0954ee9ad50051ef3af1a81dac3
23
24 diff --git a/dev-python/nose/nose-1.3.7_p20211111_p1-r1.ebuild b/dev-python/nose/nose-1.3.7_p20211111_p1-r1.ebuild
25 deleted file mode 100644
26 index 483709a85a70..000000000000
27 --- a/dev-python/nose/nose-1.3.7_p20211111_p1-r1.ebuild
28 +++ /dev/null
29 @@ -1,58 +0,0 @@
30 -# Copyright 1999-2022 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_{8..10} pypy3 )
37 -PYTHON_REQ_USE="threads(+)"
38 -
39 -inherit distutils-r1
40 -
41 -EGIT_COMMIT="94fd6746619ee8728f2b8740ebf2d1582b03cb15"
42 -DESCRIPTION="Unittest extension with automatic test suite discovery and easy test authoring"
43 -HOMEPAGE="
44 - https://pypi.org/project/nose/
45 - https://nose.readthedocs.io/en/latest/
46 - https://github.com/nose-devs/nose
47 -"
48 -SRC_URI="
49 - https://github.com/arthurzam/nose/archive/${EGIT_COMMIT}.tar.gz
50 - -> ${P}.gh.tar.gz
51 -"
52 -S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
53 -
54 -LICENSE="LGPL-2.1"
55 -SLOT="0"
56 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
57 -IUSE="examples test"
58 -RESTRICT="!test? ( test )"
59 -
60 -BDEPEND="
61 - test? (
62 - $(python_gen_cond_dep '
63 - !hppa? ( dev-python/coverage[${PYTHON_USEDEP}] )
64 - ' python3_{8..10} pypy3)
65 - $(python_gen_cond_dep '
66 - dev-python/twisted[${PYTHON_USEDEP}]
67 - ' python3_{8..10})
68 - )
69 -"
70 -
71 -src_prepare() {
72 - # failing to find configuration file
73 - sed -e 's/test_cover_options_config_file/_&/' \
74 - -i unit_tests/test_cover_plugin.py || die
75 -
76 - distutils-r1_src_prepare
77 -}
78 -
79 -python_test() {
80 - "${EPYTHON}" -m nose -v -a "!network" ||
81 - die "Tests fail with ${EPYTHON}"
82 -}
83 -
84 -src_install() {
85 - distutils-r1_src_install
86 - use examples && dodoc -r examples
87 -}