dev-python/nose: Drop old
authorJustin Lecher <jlec@gentoo.org>
Wed, 3 Feb 2016 08:34:20 +0000 (09:34 +0100)
committerJustin Lecher <jlec@gentoo.org>
Wed, 3 Feb 2016 09:05:33 +0000 (10:05 +0100)
obsoletes:

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=449748
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=449748
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=462126
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=466080
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=485022

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
dev-python/nose/Manifest
dev-python/nose/nose-1.3.4.ebuild [deleted file]
dev-python/nose/nose-1.3.6.ebuild [deleted file]

index 1afef6aee3ee42ea76efcd76e9ec1355fe2d9a77..3f45f5adc5f6493addc880f76d5c0e25b27dd007 100644 (file)
@@ -1,3 +1 @@
-DIST nose-1.3.4.tar.gz 277488 SHA256 76bc63a4e2d5e5a0df77ca7d18f0f56e2c46cfb62b71103ba92a92c79fab1e03 SHA512 19499ab08018229ea5195cdac739d6c7c247c5aa5b2c91b801cbd99bad12584ed84c5cfaaa6fa8b4893a46324571a2f8a1988a1381f4ddd58390e597bd7bdc24 WHIRLPOOL 10c3938913e0bfcbb20a7822feadd751c2c1db76d97bf0a5ecbe83be81934a5a23aad4d37a77c68d6da5ac80bdb274f56e2ee3206fb97f96832271d479ca7302
-DIST nose-1.3.6.tar.gz 276273 SHA256 f61e0909a743eed37b1207e38a8e7b4a2fe0a82185e36f2be252ef1b3f901758 SHA512 d0cede08dc33a8ac0af0f18063e57f31b615f06e911edb5ca264575174d8f4adb4338448968c403811d9dcc60f38ade3164662d6c7b69b499f56f0984bb6283c WHIRLPOOL d7360c24aad388c736ce08578eb7ca529873a8603dc0b8e4c79d7756a6d5f6429561b3b8beffc2930301a48767ded06fb3127c27c07432cb25a0549556cb74fe
 DIST nose-1.3.7.tar.gz 280488 SHA256 f1bffef9cbc82628f6e7d7b40d7e255aefaa1adb6a1b1d26c69a8b79e6208a98 SHA512 e65c914f621f8da06b9ab11a0ff2763d6e29b82ce2aaed56da0e3773dc899d9deb1f20015789d44c65a5dad7214520f5b659b3f8d7695fb207ad3f78e5cf1b62 WHIRLPOOL 68684b12e18d41b1f49ba3e832adf8a03b3b84ce530f0bde34f8c40c84f38046aac2777090472fefe87ba7abe3fdffa4cdcad74e3b717fcb9dfe932a0657b965
diff --git a/dev-python/nose/nose-1.3.4.ebuild b/dev-python/nose/nose-1.3.4.ebuild
deleted file mode 100644 (file)
index 6d77007..0000000
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 )
-PYTHON_REQ_USE="threads(+)"
-inherit distutils-r1
-
-DESCRIPTION="Unittest extension with automatic test suite discovery and easy test authoring"
-HOMEPAGE="https://pypi.python.org/pypi/nose http://readthedocs.org/docs/nose/ https://bitbucket.org/jpellerin/nose"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="doc examples test"
-
-RDEPEND="dev-python/coverage[${PYTHON_USEDEP}]
-       dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-       doc? ( >=dev-python/sphinx-0.6[${PYTHON_USEDEP}] )
-       test? ( $(python_gen_cond_dep 'dev-python/twisted-core[${PYTHON_USEDEP}]' python2_7) )"
-
-python_prepare_all() {
-       # Tests need to be converted, and they don't respect BUILD_DIR.
-       use test && DISTUTILS_IN_SOURCE_BUILD=1
-
-       # Disable tests requiring network connection.
-       sed \
-               -e "s/test_resolve/_&/g" \
-               -e "s/test_raises_bad_return/_&/g" \
-               -e "s/test_raises_twisted_error/_&/g" \
-               -i unit_tests/test_twisted.py || die "sed failed"
-       # Disable versioning of nosetests script to avoid collision with
-       # versioning performed by the eclass.
-       sed -e "/'nosetests%s = nose:run_exit' % py_vers_tag,/d" \
-               -i setup.py || die "sed2 failed"
-
-       # Prevent un-needed d'loading during doc build
-       sed -e "s/, 'sphinx.ext.intersphinx'//" -i doc/conf.py || die
-
-       distutils-r1_python_prepare_all
-}
-
-python_compile() {
-       local add_targets=()
-
-       if use test; then
-               add_targets+=( egg_info )
-               python_is_python3 && add_targets+=( build_tests )
-       fi
-
-       distutils-r1_python_compile ${add_targets[@]}
-}
-
-python_compile_all() {
-       use doc && emake -C doc html
-}
-
-python_test() {
-       "${PYTHON}" selftest.py -v || die "Tests fail with ${EPYTHON}"
-}
-
-python_install() {
-       distutils-r1_python_install --install-data "${EPREFIX}/usr/share"
-}
-
-python_install_all() {
-       use examples && local EXAMPLES=( examples/. )
-       distutils-r1_python_install_all
-
-       if use doc; then
-               dohtml -r -A txt doc/.build/html/.
-       fi
-}
diff --git a/dev-python/nose/nose-1.3.6.ebuild b/dev-python/nose/nose-1.3.6.ebuild
deleted file mode 100644 (file)
index fe1725e..0000000
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{3,4} pypy pypy3 )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Unittest extension with automatic test suite discovery and easy test authoring"
-HOMEPAGE="
-       https://pypi.python.org/pypi/nose
-       http://readthedocs.org/docs/nose/
-       https://bitbucket.org/jpellerin/nose"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="doc examples test"
-
-RDEPEND="
-       dev-python/coverage[${PYTHON_USEDEP}]
-       dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-       doc? ( >=dev-python/sphinx-0.6[${PYTHON_USEDEP}] )
-       test? ( $(python_gen_cond_dep 'dev-python/twisted-core[${PYTHON_USEDEP}]' python2_7) )"
-
-python_prepare_all() {
-       # Tests need to be converted, and they don't respect BUILD_DIR.
-       use test && DISTUTILS_IN_SOURCE_BUILD=1
-
-       # Disable tests requiring network connection.
-       sed \
-               -e "s/test_resolve/_&/g" \
-               -e "s/test_raises_bad_return/_&/g" \
-               -e "s/test_raises_twisted_error/_&/g" \
-               -i unit_tests/test_twisted.py || die "sed failed"
-       # Disable versioning of nosetests script to avoid collision with
-       # versioning performed by the eclass.
-       sed -e "/'nosetests%s = nose:run_exit' % py_vers_tag,/d" \
-               -i setup.py || die "sed2 failed"
-
-       # Prevent un-needed d'loading during doc build
-       sed -e "s/, 'sphinx.ext.intersphinx'//" -i doc/conf.py || die
-
-       distutils-r1_python_prepare_all
-}
-
-python_compile() {
-       local add_targets=()
-
-       if use test; then
-               add_targets+=( egg_info )
-               python_is_python3 && add_targets+=( build_tests )
-       fi
-
-       distutils-r1_python_compile ${add_targets[@]}
-}
-
-python_compile_all() {
-       use doc && emake -C doc html
-}
-
-python_test() {
-       "${PYTHON}" selftest.py -v || die "Tests fail with ${EPYTHON}"
-}
-
-python_install() {
-       distutils-r1_python_install --install-data "${EPREFIX}/usr/share"
-}
-
-python_install_all() {
-       use examples && local EXAMPLES=( examples/. )
-       distutils-r1_python_install_all
-
-       if use doc; then
-               dohtml -r -A txt doc/.build/html/.
-       fi
-}