summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2018-03-10 15:37:49 +0100
committerPacho Ramos <pacho@gentoo.org>2018-03-10 15:53:07 +0100
commite212472984e6886cc9647227517d1e53982aa21f (patch)
tree8f02b51dc0cc351d934ce46bc838adf8ef57c29d
parentdev-python/nose2: Update maintainer due to bug #502560 (diff)
downloadgentoo-e212472984e6886cc9647227517d1e53982aa21f.tar.gz
gentoo-e212472984e6886cc9647227517d1e53982aa21f.tar.bz2
gentoo-e212472984e6886cc9647227517d1e53982aa21f.zip
dev-python/nose2: Drop old
Package-Manager: Portage-2.3.24, Repoman-2.3.6
-rw-r--r--dev-python/nose2/Manifest1
-rw-r--r--dev-python/nose2/nose2-0.6.4.ebuild43
2 files changed, 0 insertions, 44 deletions
diff --git a/dev-python/nose2/Manifest b/dev-python/nose2/Manifest
index 752362e42c78..12a4c2e18fab 100644
--- a/dev-python/nose2/Manifest
+++ b/dev-python/nose2/Manifest
@@ -1,2 +1 @@
-DIST nose2-0.6.4.tar.gz 134636 BLAKE2B daba42871001fe5ee353679f9ed0cef8718c32238a215dfd8953db81de85bd8693b3ca107c33b26d77d0466b9ed41b4224cae293e7f416c0b3cc707dde697933 SHA512 4161231ecf195a3c5172f8bea2002f9cf4d55ee4f976f512b1ae758ebe8389f41520594da7ad2b21cfbf998be388993281e126363d24ee00c948d6c57278333a
DIST nose2-0.6.5.tar.gz 134808 BLAKE2B 5f094d537ff7c48b7bfaf139b4c96a93875013ca5663d1e5b3feec543e7efd55335488321bcdd5752529cb36685dd28c91bd29665aed9e5f58fef837e5e2944b SHA512 fc84aa19d486ff1441dd43666182212e4a05b3be054f3c8967e36e624c08ee6eb10b01bba45b5f5dbbd38cfd057d53877e0bc0d9aba59b842688a5d4ec944b40
diff --git a/dev-python/nose2/nose2-0.6.4.ebuild b/dev-python/nose2/nose2-0.6.4.ebuild
deleted file mode 100644
index aec771d0b8ee..000000000000
--- a/dev-python/nose2/nose2-0.6.4.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="nose2 is the next generation of nicer testing for Python"
-HOMEPAGE="https://github.com/nose-devs/nose2"
-SRC_URI="https://github.com/nose-devs/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc"
-
-CDEPEND="
- dev-python/setuptools[${PYTHON_USEDEP}]
- >=dev-python/six-1.1[${PYTHON_USEDEP}]
-"
-DEPEND="
- ${CDEPEND}
- doc? ( >=dev-python/sphinx-1.0.5[${PYTHON_USEDEP}] )
-"
-RDEPEND="
- ${CDEPEND}
- >=dev-python/cov-core-1.12[${PYTHON_USEDEP}]
-"
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_test() {
- "${PYTHON}" -m nose2.__main__ || die "tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/_build/html/. )
-
- distutils-r1_python_install_all
-}