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, 03 Jun 2022 05:37:48
Message-Id: 1654234656.6198c5a8a8b15b26308798ebfe0d9e24f3039660.mgorny@gentoo
1 commit: 6198c5a8a8b15b26308798ebfe0d9e24f3039660
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 3 04:45:44 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 3 05:37:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6198c5a8
7
8 dev-python/pytest-shell-utilities: Bump to 1.5.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.5.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 5796acb83aef..84f887ad4850 100644
18 --- a/dev-python/pytest-shell-utilities/Manifest
19 +++ b/dev-python/pytest-shell-utilities/Manifest
20 @@ -4,3 +4,4 @@ DIST pytest-shell-utilities-1.2.0.tar.gz 89881 BLAKE2B 8332f4f6b9b232cc8d17e94ee
21 DIST pytest-shell-utilities-1.2.1.tar.gz 89975 BLAKE2B 91d0731a2613beef6de98bf7eb61e773659a7047f44558e2ad5cb7c8071761d13f606d04ffb0ac3c6f926f539455cb2a0c2418e398d43d208a028c68bd268576 SHA512 73232844b482f973ad79f2578b434339f34c24cbb36f75ae66217fcd9d06a663d54a6bfcdf390d86d21e6d3b7386fd2f4ce9d6a4b1ce55592be62dbc89f2251f
22 DIST pytest-shell-utilities-1.3.0.tar.gz 91500 BLAKE2B 88757447378afb334190c6f13406f6a57085bc574728be8965f22b9b17fd92985c044aa9491980d163631eceec634911ea9c67ff85bb9a91ee998e2dab245878 SHA512 1136f4e33c1efb995f7145066af8c71952999975e95c2311ba86ad44c9b18f6f6f5c09acb8211f30cde0f479b3afe92555c125a8f27631f9dd289e4a05bbe761
23 DIST pytest-shell-utilities-1.4.0.gh.tar.gz 91577 BLAKE2B 33973d3c465918eb71f76497e9c96d3f3f03acfa83e7a116cdef46c67fcf1ba9d1e4b14f50c56c5a20c1bd85e16101f9a98ef93d19099cd97077b336a0aa4954 SHA512 75d8a25d6d607db9697900f36f326d1b86b948da6c83c7840c52a63964ed8cfcf1c54d343f607bcb2b5db3b471e7b59e3aea21d6f4943339f1f2e0388f22b29b
24 +DIST pytest-shell-utilities-1.5.0.gh.tar.gz 92287 BLAKE2B 015f78838eaff93438cbd7cd395926ac8f61653f6d27275ca87b379e5f27d60165157880e41e603823c17e639dcff91ac4f5fda1e904ad505bb9db0a577b800c SHA512 00cb5fa6979e09c90ba82928a135f644dd4056fd004f6bee8d216ca63e2cf4549f944930bf16e7a124f26a79c1b696d18ecf210bee3273343b9a90f9126f340e
25
26 diff --git a/dev-python/pytest-shell-utilities/pytest-shell-utilities-1.5.0.ebuild b/dev-python/pytest-shell-utilities/pytest-shell-utilities-1.5.0.ebuild
27 new file mode 100644
28 index 000000000000..a8e84f1cb8c6
29 --- /dev/null
30 +++ b/dev-python/pytest-shell-utilities/pytest-shell-utilities-1.5.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 ~riscv ~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}