diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-01-29 06:48:55 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-01-29 06:50:52 +0100 |
commit | f18e7b8c73222295ade7f6d3f183c61d4f07945a (patch) | |
tree | 6c38ba9b151c91ff6a8bbaa72f08e4366bf18cdb /dev-python/nose2 | |
parent | dev-python/pytz: Bump to 2023.4 (diff) | |
download | gentoo-f18e7b8c73222295ade7f6d3f183c61d4f07945a.tar.gz gentoo-f18e7b8c73222295ade7f6d3f183c61d4f07945a.tar.bz2 gentoo-f18e7b8c73222295ade7f6d3f183c61d4f07945a.zip |
dev-python/nose2: Bump to 0.14.1
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.14.1.ebuild | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/dev-python/nose2/Manifest b/dev-python/nose2/Manifest index 4430f9371da3..095889d9c653 100644 --- a/dev-python/nose2/Manifest +++ b/dev-python/nose2/Manifest @@ -1 +1,2 @@ DIST nose2-0.14.0.gh.tar.gz 159460 BLAKE2B c72f939f597eead3a5d8be995fc4ae1988a0c76f5599dc9e040780520055aa1002d2d93f35527e56f90609d2f4ef560161bbf695bb3751cac71007dfbd06c522 SHA512 ed6b245bc57b63b011883f42dbda8b2797504afa02a102c43f4e7d3c6cbfcf7e8babca23f9341c7681b75dae12c2d269ea65a583c18d4d15b999df081fc0247b +DIST nose2-0.14.1.gh.tar.gz 158984 BLAKE2B 36a79f2a9afc288fd1025e8e1875dd15f145708ea4715c2db11f7a769c87c3209ad367d55b1634b1ff032bd65606ca74ed1d4424a4fba74dd44a377820ff8208 SHA512 7cd4e4a67dfd87ce85927aa65137ca7df926e8a4b83162131cb081cbec357e951693826d43f92beb92af0e1d690c8f0a3f8cf6b0b58f174ae2516383892b5207 diff --git a/dev-python/nose2/nose2-0.14.1.ebuild b/dev-python/nose2/nose2-0.14.1.ebuild new file mode 100644 index 000000000000..db1432fea4e8 --- /dev/null +++ b/dev-python/nose2/nose2-0.14.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..11} ) + +inherit distutils-r1 + +DESCRIPTION="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-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" + +RDEPEND=" + >=dev-python/coverage-4.4.1[${PYTHON_USEDEP}] +" + +distutils_enable_sphinx docs \ + dev-python/sphinx-rtd-theme \ + dev-python/sphinx-issues + +python_test() { + "${EPYTHON}" -m nose2.__main__ -vv || die "tests failed under ${EPYTHON}" +} |