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: Fri, 27 May 2022 06:10:48
Message-Id: 1653631830.393c6979411bdfbed173d845cb1ff528bebe2176.mgorny@gentoo
1 commit: 393c6979411bdfbed173d845cb1ff528bebe2176
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 27 05:17:35 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri May 27 06:10:30 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=393c6979
7
8 dev-python/pytest-shell-utilities: Bump to 1.4.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.4.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 bc7ed6ce6dff..5796acb83aef 100644
18 --- a/dev-python/pytest-shell-utilities/Manifest
19 +++ b/dev-python/pytest-shell-utilities/Manifest
20 @@ -3,3 +3,4 @@ DIST pytest-shell-utilities-1.1.0.tar.gz 90873 BLAKE2B e787733fe641eae1884470b94
21 DIST pytest-shell-utilities-1.2.0.tar.gz 89881 BLAKE2B 8332f4f6b9b232cc8d17e94eef569ea7f17e14c4a97b060f84fd860de79bb5db2ebad5c239e889d2405e8be3db0d54b94a7071661eaf7065860049bcbc1e60a2 SHA512 efca390e2e3c78f82cf7888d511a1eb0e06e940259cfba146c40eeb54d5394f010497730837192c58e3b8c4cd350de54781f7ead7d3513d738eb34f81cc4d5ba
22 DIST pytest-shell-utilities-1.2.1.tar.gz 89975 BLAKE2B 91d0731a2613beef6de98bf7eb61e773659a7047f44558e2ad5cb7c8071761d13f606d04ffb0ac3c6f926f539455cb2a0c2418e398d43d208a028c68bd268576 SHA512 73232844b482f973ad79f2578b434339f34c24cbb36f75ae66217fcd9d06a663d54a6bfcdf390d86d21e6d3b7386fd2f4ce9d6a4b1ce55592be62dbc89f2251f
23 DIST pytest-shell-utilities-1.3.0.tar.gz 91500 BLAKE2B 88757447378afb334190c6f13406f6a57085bc574728be8965f22b9b17fd92985c044aa9491980d163631eceec634911ea9c67ff85bb9a91ee998e2dab245878 SHA512 1136f4e33c1efb995f7145066af8c71952999975e95c2311ba86ad44c9b18f6f6f5c09acb8211f30cde0f479b3afe92555c125a8f27631f9dd289e4a05bbe761
24 +DIST pytest-shell-utilities-1.4.0.gh.tar.gz 91577 BLAKE2B 33973d3c465918eb71f76497e9c96d3f3f03acfa83e7a116cdef46c67fcf1ba9d1e4b14f50c56c5a20c1bd85e16101f9a98ef93d19099cd97077b336a0aa4954 SHA512 75d8a25d6d607db9697900f36f326d1b86b948da6c83c7840c52a63964ed8cfcf1c54d343f607bcb2b5db3b471e7b59e3aea21d6f4943339f1f2e0388f22b29b
25
26 diff --git a/dev-python/pytest-shell-utilities/pytest-shell-utilities-1.4.0.ebuild b/dev-python/pytest-shell-utilities/pytest-shell-utilities-1.4.0.ebuild
27 new file mode 100644
28 index 000000000000..c6edd8e6acc4
29 --- /dev/null
30 +++ b/dev-python/pytest-shell-utilities/pytest-shell-utilities-1.4.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/pytest-shell-utilities/archive/${PV}.tar.gz
49 + -> ${P}.gh.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}