diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 6578872b2..49e7dcb21 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -9,6 +9,7 @@ To remove the (conflicting) wrong one, do a: 2020-09-13 * bump youtube_dl-2020.9.6 + * bump pytest-timeout-1.4.2 2020-09-12 homeassistant-0.115.0_beta7 * bump pyloopenergy-0.2.1 diff --git a/dev-python/pytest-timeout/Manifest b/dev-python/pytest-timeout/Manifest index 5bbbb4744..f19719946 100644 --- a/dev-python/pytest-timeout/Manifest +++ b/dev-python/pytest-timeout/Manifest @@ -1,4 +1,6 @@ DIST pytest-timeout-1.3.3.tar.gz 11627 BLAKE2B e20348cc461ad03e95c22a16e753b72441ee70da9769214f4d07db15818a8997339ced47244b15de62a61107eb749dff8d6f41ddb4720c925ef1e6eb9962db27 SHA512 633f5aee550d568e403b958f4490ecb828eb322811c9f18cfefb26613be4fc36da14232ecbef8666fcf2dc693a93674c00a853ab546ea8328a07ea34da79fb84 +DIST pytest-timeout-1.4.2.tar.gz 15424 BLAKE2B b7ab91833e59af56ae50c066c14bb9b8ae9995d1586f35b29f107665d7da124828d7accc1b0149702f2973c61f18024739c68de736ae8aae6f55e8a10bf5d4ff SHA512 3446ecdb5aaad5fbca12df4e7f4f40c6c1a12895d3ed9f3a3ee24800ce36deed3cb8c09a4cc72220c962b06f821cfd55bf7eebbca23664c56abf2d0e5bc8fbea EBUILD pytest-timeout-1.3.3-r1.ebuild 543 BLAKE2B f1aefd0798f60287cfb7cc9febc87ba178026fe770391fc18e23f34094c67a5d749402a05fc7cccd3939b2c573f86e8cccb7c009d21f77ec280d277a8bc1cdce SHA512 c1685912be12c5e7d2e6affdda363e576fa297981c7814d6f2d5dfa39069725e19510da88dff444acac90eed3b9db6000b9e7ab90275158c7c447fe9677b2fa9 EBUILD pytest-timeout-1.3.3.ebuild 560 BLAKE2B 565c5fd7be4b8cb4c607046b1777b596014d88f1cb4db99c4ab8cb5edf4a738eb9c3ea332f2270ee01ca219a8c52d40d9253ceeaf5b38c197e7b57636d450f17 SHA512 5e913e4140c6850c9a0c016a9a86cb2617c1ee35694db5406b6f0f338b339b84d35d183e2add8a0b4bfbd288f27b3574d858ebc8025cd613ae288c3c6d58707f -MISC metadata.xml 327 BLAKE2B 23dc2e5e6f023223ab4774206b2d94fd27fc0a6b2592c8e0c317e1c1a0e7c26ed4f8e23187c5499b7fc9c4acc0df601a056ab1dced8115a47a9e72697037fa32 SHA512 6040289d134f65896f2fb80538d9caa4ce628911c5ed21568a30087d1b0ffb14b9acbf874956720b1d9c56290c78bb965ac9299bc400fd89a258f3627180780a +EBUILD pytest-timeout-1.4.2.ebuild 708 BLAKE2B 300995ebc7f54269ff264fe22b24b8927d9b3062e01ae45ebe5f29c829752ef90e292a62ce3e6f8883878ee717588b772059791717a51e57b8f94f62a0b989b7 SHA512 81d04cf0e56b615984bb2edca20b23ea9ddb825cb79a5a8d3fb40a3ca7b203881defd869b5a1fdf25381cbd17dfd7b3d89dc2e0d1f27d16aa0de431fa440010f +MISC metadata.xml 458 BLAKE2B 26c33def9c4938e32eb3704d141605a94e997206154cfc3ab2a6bbbfa9955d672a0a071da6c9ee993bdf7fad891bd1074d35b06babc989fdac0cd084391f74f4 SHA512 3eaf00fa7c31a053fd5ea02d440318f13b9688ed0e9541fbedb6a367bc7a0d8542c4065c61444bf967bc7a74b0ff800f6f2e737c3731d635d37b1f887605a38d diff --git a/dev-python/pytest-timeout/metadata.xml b/dev-python/pytest-timeout/metadata.xml index 53c928b91..f6a14d75d 100644 --- a/dev-python/pytest-timeout/metadata.xml +++ b/dev-python/pytest-timeout/metadata.xml @@ -1,11 +1,15 @@ - + - python@gentoo.org - Python + b@edevau.net + Andreas Billmeier pytest-timeout + + flub@devork.be + Floris Bruynooghe + diff --git a/dev-python/pytest-timeout/pytest-timeout-1.4.2.ebuild b/dev-python/pytest-timeout/pytest-timeout-1.4.2.ebuild new file mode 100644 index 000000000..63ff02b97 --- /dev/null +++ b/dev-python/pytest-timeout/pytest-timeout-1.4.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{6..8} ) + +inherit distutils-r1 + +DESCRIPTION="py.test plugin to abort hanging tests" +HOMEPAGE="http://github.com/pytest-dev/pytest-timeout/ https://pypi.org/project/pytest-timeout/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND="dev-python/pytest" +BDEPEND="${REDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +}