Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pytest-randomly/
Date: Mon, 30 May 2022 17:21:47
Message-Id: 1653930857.a0678ba19019570bdcc31e0a16f7958e34c075d3.Alessandro-Barbieri@gentoo
1 commit: a0678ba19019570bdcc31e0a16f7958e34c075d3
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Mon May 30 17:14:17 2022 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Mon May 30 17:14:17 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a0678ba1
7
8 dev-python/pytest-randomly: drop 3.11.0
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 dev-python/pytest-randomly/Manifest | 1 -
13 .../pytest-randomly/pytest-randomly-3.11.0.ebuild | 38 ----------------------
14 2 files changed, 39 deletions(-)
15
16 diff --git a/dev-python/pytest-randomly/Manifest b/dev-python/pytest-randomly/Manifest
17 index e129eead2..0689b4453 100644
18 --- a/dev-python/pytest-randomly/Manifest
19 +++ b/dev-python/pytest-randomly/Manifest
20 @@ -1,2 +1 @@
21 -DIST pytest-randomly-3.11.0.tar.gz 30822 BLAKE2B 81411f8882f786c18ded69d42296117421498515ed0808064b4da418f94be5aa6e0dedf1dabf0e87f8f508b9cc886f8b645e4b5f845009cade4f20b8f437dd95 SHA512 6c2da071492d032b60782c17aee01751fe0728f921dfd192a17d9be95330ddf6dd0c960ef93a200dbe990c8457340008c556f28aea9cbc74677984fee0618ad7
22 DIST pytest-randomly-3.12.0.tar.gz 30426 BLAKE2B 22e7ac58787a98b24a672f2fc2fdba8069213008f11c66eb05320be99662311b0273b0c32079d59792964075abe6fd2f224ce03eb0d3b2dcf0a79e180f1a067e SHA512 e2241c1304b9597f93cc57d6830808f85c59ea1b4815624dcd9d088f87eb4a34d6cb6394de9c31ebedcb8280fb6ff12b110fd5a559ab28c9e0381481fce52c4d
23
24 diff --git a/dev-python/pytest-randomly/pytest-randomly-3.11.0.ebuild b/dev-python/pytest-randomly/pytest-randomly-3.11.0.ebuild
25 deleted file mode 100644
26 index 8ab7359c6..000000000
27 --- a/dev-python/pytest-randomly/pytest-randomly-3.11.0.ebuild
28 +++ /dev/null
29 @@ -1,38 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( python3_{8,9} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Pytest plugin to randomly order tests and control random.seed"
41 -HOMEPAGE="
42 - https://pypi.python.org/pypi/pytest-randomly/
43 - https://github.com/pytest-dev/pytest-randomly
44 -"
45 -SRC_URI="https://github.com/pytest-dev/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
46 -
47 -LICENSE="BSD"
48 -SLOT="0"
49 -KEYWORDS="~amd64"
50 -
51 -RDEPEND="
52 - dev-python/factory_boy[${PYTHON_USEDEP}]
53 - dev-python/Faker[${PYTHON_USEDEP}]
54 - dev-python/numpy[${PYTHON_USEDEP}]
55 - dev-python/pytest[${PYTHON_USEDEP}]
56 - dev-python/pytest-xdist[${PYTHON_USEDEP}]
57 -
58 - $(python_gen_cond_dep '>=dev-python/importlib_metadata-3.6.0[${PYTHON_USEDEP}]' python3_{8,9})
59 -"
60 -DEPEND="${RDEPEND}"
61 -
62 -distutils_enable_tests pytest
63 -
64 -python_test() {
65 - distutils_install_for_testing --via-root
66 - pytest -vv || die "Testsuite failed under ${EPYTHON}"
67 -}