diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-02-13 10:00:36 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-02-13 10:29:27 +0100 |
commit | f5689c04c75cab702ddbdd414ec6de83688a5aad (patch) | |
tree | 334c40cc5a8d89dc5d0b9c500c73f1998aa7ba62 /dev-python/nose2 | |
parent | dev-python/hypothesis: Bump to 6.36.2 (diff) | |
download | gentoo-f5689c04c75cab702ddbdd414ec6de83688a5aad.tar.gz gentoo-f5689c04c75cab702ddbdd414ec6de83688a5aad.tar.bz2 gentoo-f5689c04c75cab702ddbdd414ec6de83688a5aad.zip |
dev-python/nose2: Bump to 0.11.0
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/nose2-0.11.0.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/nose2/Manifest b/dev-python/nose2/Manifest index 40c4fecfd8ab..2791f21494a7 100644 --- a/dev-python/nose2/Manifest +++ b/dev-python/nose2/Manifest @@ -1 +1,2 @@ DIST nose2-0.10.0.tar.gz 156614 BLAKE2B 8e785cd36a781952b4401842288edf7b2551c69a894cee0d56b56c3e74de36b89bf09f849dc7264733d0c906660a5d01f2b74252507ae322073640d8ca0abfaa SHA512 e9522fddb45ab303819a38f6e4de16a2676b824e7027e8137d5e44917c21de91aec8661b28946e0bb1c7c72de907ba5eaa0e8bf76b2b76ae1edfcfe68fdb01dd +DIST nose2-0.11.0.tar.gz 159486 BLAKE2B 36167e492a49017e0f1474bfd5fd77782a324f7d884bc11c88cf9226090dce67d47519db00d3b57542dc808fb0db40942184b3c1804ad3923e3cf5fc03cd50bc SHA512 8e6755c0f5a25c4c53a35d93e5c7988523e03e978b0593d49b7917dfcb980553be9af0cc3c67c2db527c304d049d97a8d7f6f53b1a8b2875ab5456cbb7519375 diff --git a/dev-python/nose2/nose2-0.11.0.ebuild b/dev-python/nose2/nose2-0.11.0.ebuild new file mode 100644 index 000000000000..3d1a41ca2bdf --- /dev/null +++ b/dev-python/nose2/nose2-0.11.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Next generation unittest with plugins" +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 ~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 + +python_test() { + "${EPYTHON}" -m nose2.__main__ -vv || die "tests failed under ${EPYTHON}" +} |