Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-bdd/
Date: Thu, 02 Jun 2022 15:07:39
Message-Id: 1654181818.e681a22e9a91761f0c7ecfab89bbd1201c755133.ionen@gentoo
1 commit: e681a22e9a91761f0c7ecfab89bbd1201c755133
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 2 13:25:56 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 2 14:56:58 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e681a22e
7
8 dev-python/pytest-bdd: drop 5.0.0
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 dev-python/pytest-bdd/Manifest | 1 -
13 dev-python/pytest-bdd/pytest-bdd-5.0.0.ebuild | 38 ---------------------------
14 2 files changed, 39 deletions(-)
15
16 diff --git a/dev-python/pytest-bdd/Manifest b/dev-python/pytest-bdd/Manifest
17 index 3c917c293705..1383b79992bf 100644
18 --- a/dev-python/pytest-bdd/Manifest
19 +++ b/dev-python/pytest-bdd/Manifest
20 @@ -1,2 +1 @@
21 DIST pytest-bdd-5.0.0.gh.tar.gz 61174 BLAKE2B 6dd1d53614226d3515b0f61f71822363b559aa45789bab7f3416c75e603e87a1fe48627f36862f44bfa7ac6ec5023ad8afde6054ec67fc9a2e756be7de729fd1 SHA512 827e57d410b05207b6c646062ddb54b677e22441311820d3bd406df202b6e9344dedf59cd4868e89cfbf8606fe3f15559e4cc3958d100e4fa74f9b864e6faada
22 -DIST pytest-bdd-5.0.0.tar.gz 61174 BLAKE2B 6dd1d53614226d3515b0f61f71822363b559aa45789bab7f3416c75e603e87a1fe48627f36862f44bfa7ac6ec5023ad8afde6054ec67fc9a2e756be7de729fd1 SHA512 827e57d410b05207b6c646062ddb54b677e22441311820d3bd406df202b6e9344dedf59cd4868e89cfbf8606fe3f15559e4cc3958d100e4fa74f9b864e6faada
23
24 diff --git a/dev-python/pytest-bdd/pytest-bdd-5.0.0.ebuild b/dev-python/pytest-bdd/pytest-bdd-5.0.0.ebuild
25 deleted file mode 100644
26 index 1b1087b8edf8..000000000000
27 --- a/dev-python/pytest-bdd/pytest-bdd-5.0.0.ebuild
28 +++ /dev/null
29 @@ -1,38 +0,0 @@
30 -# Copyright 2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -PYTHON_COMPAT=( python3_{8..10} )
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="BDD library for the pytest runner"
39 -HOMEPAGE="https://pypi.org/project/pytest-bdd/"
40 -SRC_URI="https://github.com/pytest-dev/pytest-bdd/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -KEYWORDS="amd64 ~arm64 ~x86"
45 -
46 -RDEPEND="
47 - dev-python/glob2[${PYTHON_USEDEP}]
48 - dev-python/mako[${PYTHON_USEDEP}]
49 - dev-python/parse[${PYTHON_USEDEP}]
50 - dev-python/parse_type[${PYTHON_USEDEP}]
51 - dev-python/py[${PYTHON_USEDEP}]"
52 -BDEPEND="dev-python/packaging[${PYTHON_USEDEP}]"
53 -
54 -distutils_enable_tests --install pytest
55 -
56 -DOCS=( AUTHORS.rst CHANGES.rst README.rst )
57 -
58 -src_test() {
59 - # terminal_reporter test needs exact wrapping
60 - local -x COLUMNS=80
61 -
62 - # hooks output parsing may be affected by other pytest-*, e.g. tornasync
63 - local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
64 - local -x PYTEST_PLUGINS=pytest_bdd.plugin
65 -
66 - distutils-r1_src_test
67 -}