diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-06-01 19:21:29 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-06-01 19:22:08 +0200 |
commit | 6e30d48416c22510674d9c68d1d4c0b091722c69 (patch) | |
tree | 99722cf797689876d96f132183227310358831cf /dev-python/nose2 | |
parent | dev-python/paste: Remove old (diff) | |
download | gentoo-6e30d48416c22510674d9c68d1d4c0b091722c69.tar.gz gentoo-6e30d48416c22510674d9c68d1d4c0b091722c69.tar.bz2 gentoo-6e30d48416c22510674d9c68d1d4c0b091722c69.zip |
dev-python/nose2: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/nose2')
-rw-r--r-- | dev-python/nose2/Manifest | 1 | ||||
-rw-r--r-- | dev-python/nose2/files/nose2-0.12.0-version.patch | 21 | ||||
-rw-r--r-- | dev-python/nose2/nose2-0.12.0.ebuild | 48 |
3 files changed, 0 insertions, 70 deletions
diff --git a/dev-python/nose2/Manifest b/dev-python/nose2/Manifest index b768c20f828d..66482a47c025 100644 --- a/dev-python/nose2/Manifest +++ b/dev-python/nose2/Manifest @@ -1,2 +1 @@ -DIST nose2-0.12.0.gh.tar.gz 168454 BLAKE2B cce76a046c4285d7dbe6ad6a049628e23ddebd36eda4457eecb4f0e14b1559f8bd7be5bc80aa99bf965f530575c3f5e245d1a30b4115d5e8ee0aa4c8d93fb8f0 SHA512 7f1462613b7d38a77cd0764f721be4223b8f4ae4694c49ba416a076c321e07484969ee1a7c2d2f89484c0c3b2a96e74d6a42321981af4930ebe5f63f07df7755 DIST nose2-0.13.0.gh.tar.gz 159435 BLAKE2B 33a0d395045933c41cd22c8c30a933fb0fc14a21abf5aa4af459687e28126b89f5aad4e57aa4b06a303c50581e785f38708c0071e9cfe37c609046310540c595 SHA512 d2f16eddab75cecd864005eee3d29159e2c83d843c79df73f65d6dfacab7c195ae9b5e6d059848689d6b71da89035df8eb73d277560c1967d732c1522b54bfc5 diff --git a/dev-python/nose2/files/nose2-0.12.0-version.patch b/dev-python/nose2/files/nose2-0.12.0-version.patch deleted file mode 100644 index a6edfb04ca8d..000000000000 --- a/dev-python/nose2/files/nose2-0.12.0-version.patch +++ /dev/null @@ -1,21 +0,0 @@ -https://bugs.gentoo.org/861656 -https://github.com/nose-devs/nose2/commit/fc3d69290462930bc0fa81cb69bc4c6e15f8ae66 - -From: Stephen Rosen <sirosen@globus.org> -Date: Sat, 16 Jul 2022 16:41:55 +0000 -Subject: [PATCH] Minor fixes regarding __version__ move - -Docs in conf.py and the CI build used `_version.py`, and just need -minor updates. ---- a/docs/conf.py -+++ b/docs/conf.py -@@ -20,7 +20,7 @@ - master_doc = "index" - project = "nose2" - copyright = "2010-2022, Jason Pellerin, Stephen Rosen" --version = release = nose2._version.__version__ -+version = release = nose2.__version__ - exclude_patterns = ["_build"] - templates_path = ["_templates"] - - diff --git a/dev-python/nose2/nose2-0.12.0.ebuild b/dev-python/nose2/nose2-0.12.0.ebuild deleted file mode 100644 index 6b06afa556b8..000000000000 --- a/dev-python/nose2/nose2-0.12.0.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 - -DESCRIPTION="Next generation unittest with plugins" -HOMEPAGE=" - https://github.com/nose-devs/nose2/ - https://pypi.org/project/nose2/ -" -SRC_URI=" - https://github.com/nose-devs/${PN}/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ppc ppc64 ~sparc x86" - -RDEPEND=" - >=dev-python/coverage-4.4.1[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] -" - -distutils_enable_sphinx docs \ - dev-python/sphinx-rtd-theme \ - dev-python/sphinx-issues - -PATCHES=( - "${FILESDIR}"/${P}-version.patch -) - -src_prepare() { - # seriously? that hard to depend on six?! - rm -r nose2/_vendor || die - find -name '*.py' -exec \ - sed -i -e 's:from nose2._vendor ::' {} + || die - distutils-r1_src_prepare -} - -python_test() { - "${EPYTHON}" -m nose2.__main__ -vv || die "tests failed under ${EPYTHON}" -} |