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_warnings_filters/
Date: Mon, 04 May 2020 11:26:37
Message-Id: 1588591573.e964279f054aa18eccf9461b71600dafa499a0ca.mgorny@gentoo
1 commit: e964279f054aa18eccf9461b71600dafa499a0ca
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 4 11:26:13 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 4 11:26:13 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e964279f
7
8 dev-python/nose_warnings_filters: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../nose_warnings_filters-0.1.5-r2.ebuild | 32 ----------------------
13 1 file changed, 32 deletions(-)
14
15 diff --git a/dev-python/nose_warnings_filters/nose_warnings_filters-0.1.5-r2.ebuild b/dev-python/nose_warnings_filters/nose_warnings_filters-0.1.5-r2.ebuild
16 deleted file mode 100644
17 index 1a3527617a3..00000000000
18 --- a/dev-python/nose_warnings_filters/nose_warnings_filters-0.1.5-r2.ebuild
19 +++ /dev/null
20 @@ -1,32 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -PYTHON_COMPAT=( python3_{6,7} )
27 -
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="A python module to inject warning filters during nosetest"
31 -HOMEPAGE="https://github.com/Carreau/nose_warnings_filters"
32 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
33 -
34 -LICENSE="MIT"
35 -SLOT="0"
36 -KEYWORDS="amd64 ~arm64 ~ppc x86"
37 -IUSE="test"
38 -RESTRICT="!test? ( test )"
39 -
40 -RDEPEND="dev-python/nose[${PYTHON_USEDEP}]"
41 -DEPEND="
42 - dev-python/setuptools[${PYTHON_USEDEP}]
43 - test? ( ${RDEPEND} )"
44 -
45 -python_test() {
46 - # nose_warnings_filters doesn't have a proper
47 - # testing suite, hence we run the only testing
48 - # script available
49 - distutils_install_for_testing
50 - cd "${TEST_DIR}"/lib || die
51 - "${EPYTHON}" "${S}"/${PN}/testing/test_config.py || die "Failed running test script"
52 -}