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: Tue, 17 May 2022 06:54:40
Message-Id: 1652770463.2264f8bc9afd9e1919bf64a4ec023dd723b7c584.mgorny@gentoo
1 commit: 2264f8bc9afd9e1919bf64a4ec023dd723b7c584
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 17 05:20:55 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 17 06:54:23 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2264f8bc
7
8 dev-python/pytest-shell-utilities: Bump to 1.1.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.1.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 494f83b3252c..dbde2226937f 100644
18 --- a/dev-python/pytest-shell-utilities/Manifest
19 +++ b/dev-python/pytest-shell-utilities/Manifest
20 @@ -1 +1,2 @@
21 DIST pytest-shell-utilities-1.0.5.tar.gz 89489 BLAKE2B 9cd7f95c9c1691e19c320378d1c2a4e147cb6fdc35ec6f3c80dc288e70416fce67b60ac86427f1ad322b2c17de3cd762e483d63076fa291b4b7d22d7a29c9e45 SHA512 395107af9eaa13ef39d01858e1674b6dedddc2cf93b9aba61316fd8d847031e1b535cc3bf4f2899dbc7828609b7d45b500aad29bb47668be6e0453ac099e99e4
22 +DIST pytest-shell-utilities-1.1.0.tar.gz 90873 BLAKE2B e787733fe641eae1884470b9410f017ef718b2f51cff09f7de592efc88a7f39bdc442e56ade2c547476a9ec7200b027a9ca2aed168afe162c8d4d06c6aaf6c61 SHA512 965c85d73f2be082253892d36b90fa60db0e8548272e34a3531c98c537e86b4e2cff477c017762bf9e275d97504b779e7d741e982cc03b114e30cee9c4904d95
23
24 diff --git a/dev-python/pytest-shell-utilities/pytest-shell-utilities-1.1.0.ebuild b/dev-python/pytest-shell-utilities/pytest-shell-utilities-1.1.0.ebuild
25 new file mode 100644
26 index 000000000000..91044405002d
27 --- /dev/null
28 +++ b/dev-python/pytest-shell-utilities/pytest-shell-utilities-1.1.0.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 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..10} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="pytest plugin: fixtures and code to help with running shell commands on tests"
41 +HOMEPAGE="
42 + https://pypi.org/project/pytest-shell-utilities/
43 + https://github.com/saltstack/pytest-shell-utilities
44 +"
45 +SRC_URI="
46 + https://github.com/saltstack/${PN}/archive/${PV}.tar.gz
47 + -> ${P}.tar.gz
48 +"
49 +
50 +LICENSE="Apache-2.0"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
53 +
54 +RDEPEND="
55 + >=dev-python/pytest-6.0.0[${PYTHON_USEDEP}]
56 + dev-python/attrs[${PYTHON_USEDEP}]
57 + dev-python/psutil[${PYTHON_USEDEP}]
58 + dev-python/typing-extensions[${PYTHON_USEDEP}]
59 + dev-python/pytest-helpers-namespace[${PYTHON_USEDEP}]
60 + dev-python/pytest-skip-markers[${PYTHON_USEDEP}]
61 +"
62 +BDEPEND="
63 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
64 + test? (
65 + dev-python/pytest-subtests[${PYTHON_USEDEP}]
66 + )
67 +"
68 +
69 +distutils_enable_tests pytest
70 +
71 +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}