Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-shell-utilities/
Date: Thu, 26 May 2022 18:54:52
Message-Id: 1653591284.30bd0de05a46b215331102d708981a17d38bf2a2.mgorny@gentoo
1 commit: 30bd0de05a46b215331102d708981a17d38bf2a2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 26 18:48:27 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu May 26 18:54:44 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30bd0de0
7
8 dev-python/pytest-shell-utilities: Bump to 1.3.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pytest-shell-utilities/Manifest | 1 +
13 .../pytest-shell-utilities-1.3.0.ebuild | 42 ++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/dev-python/pytest-shell-utilities/Manifest b/dev-python/pytest-shell-utilities/Manifest
17 index 48631fd3520f..bc7ed6ce6dff 100644
18 --- a/dev-python/pytest-shell-utilities/Manifest
19 +++ b/dev-python/pytest-shell-utilities/Manifest
20 @@ -2,3 +2,4 @@ DIST pytest-shell-utilities-1.0.5.tar.gz 89489 BLAKE2B 9cd7f95c9c1691e19c320378d
21 DIST pytest-shell-utilities-1.1.0.tar.gz 90873 BLAKE2B e787733fe641eae1884470b9410f017ef718b2f51cff09f7de592efc88a7f39bdc442e56ade2c547476a9ec7200b027a9ca2aed168afe162c8d4d06c6aaf6c61 SHA512 965c85d73f2be082253892d36b90fa60db0e8548272e34a3531c98c537e86b4e2cff477c017762bf9e275d97504b779e7d741e982cc03b114e30cee9c4904d95
22 DIST pytest-shell-utilities-1.2.0.tar.gz 89881 BLAKE2B 8332f4f6b9b232cc8d17e94eef569ea7f17e14c4a97b060f84fd860de79bb5db2ebad5c239e889d2405e8be3db0d54b94a7071661eaf7065860049bcbc1e60a2 SHA512 efca390e2e3c78f82cf7888d511a1eb0e06e940259cfba146c40eeb54d5394f010497730837192c58e3b8c4cd350de54781f7ead7d3513d738eb34f81cc4d5ba
23 DIST pytest-shell-utilities-1.2.1.tar.gz 89975 BLAKE2B 91d0731a2613beef6de98bf7eb61e773659a7047f44558e2ad5cb7c8071761d13f606d04ffb0ac3c6f926f539455cb2a0c2418e398d43d208a028c68bd268576 SHA512 73232844b482f973ad79f2578b434339f34c24cbb36f75ae66217fcd9d06a663d54a6bfcdf390d86d21e6d3b7386fd2f4ce9d6a4b1ce55592be62dbc89f2251f
24 +DIST pytest-shell-utilities-1.3.0.tar.gz 91500 BLAKE2B 88757447378afb334190c6f13406f6a57085bc574728be8965f22b9b17fd92985c044aa9491980d163631eceec634911ea9c67ff85bb9a91ee998e2dab245878 SHA512 1136f4e33c1efb995f7145066af8c71952999975e95c2311ba86ad44c9b18f6f6f5c09acb8211f30cde0f479b3afe92555c125a8f27631f9dd289e4a05bbe761
25
26 diff --git a/dev-python/pytest-shell-utilities/pytest-shell-utilities-1.3.0.ebuild b/dev-python/pytest-shell-utilities/pytest-shell-utilities-1.3.0.ebuild
27 new file mode 100644
28 index 000000000000..b4d91a1e5427
29 --- /dev/null
30 +++ b/dev-python/pytest-shell-utilities/pytest-shell-utilities-1.3.0.ebuild
31 @@ -0,0 +1,42 @@
32 +# Copyright 2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +DISTUTILS_USE_PEP517=setuptools
38 +PYTHON_COMPAT=( python3_{8..10} )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="pytest plugin: fixtures and code to help with running shell commands on tests"
43 +HOMEPAGE="
44 + https://pypi.org/project/pytest-shell-utilities/
45 + https://github.com/saltstack/pytest-shell-utilities/
46 +"
47 +SRC_URI="
48 + https://github.com/saltstack/${PN}/archive/${PV}.tar.gz
49 + -> ${P}.tar.gz
50 +"
51 +
52 +LICENSE="Apache-2.0"
53 +SLOT="0"
54 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
55 +
56 +RDEPEND="
57 + >=dev-python/pytest-6.0.0[${PYTHON_USEDEP}]
58 + dev-python/attrs[${PYTHON_USEDEP}]
59 + dev-python/psutil[${PYTHON_USEDEP}]
60 + dev-python/typing-extensions[${PYTHON_USEDEP}]
61 + dev-python/pytest-helpers-namespace[${PYTHON_USEDEP}]
62 + dev-python/pytest-skip-markers[${PYTHON_USEDEP}]
63 +"
64 +BDEPEND="
65 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
66 + test? (
67 + dev-python/pytest-subtests[${PYTHON_USEDEP}]
68 + )
69 +"
70 +
71 +distutils_enable_tests pytest
72 +
73 +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}