Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-env/
Date: Sat, 14 May 2022 17:46:19
Message-Id: 1652550173.90889c8a4ad7f71decb54a51171c93d9797ae310.arthurzam@gentoo
1 commit: 90889c8a4ad7f71decb54a51171c93d9797ae310
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 14 17:42:53 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sat May 14 17:42:53 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90889c8a
7
8 dev-python/pytest-env: EAPI=8, PEP517
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/pytest-env/pytest-env-0.6.2-r1.ebuild | 18 ++++++++++++++++++
13 1 file changed, 18 insertions(+)
14
15 diff --git a/dev-python/pytest-env/pytest-env-0.6.2-r1.ebuild b/dev-python/pytest-env/pytest-env-0.6.2-r1.ebuild
16 new file mode 100644
17 index 000000000000..0506fe16260b
18 --- /dev/null
19 +++ b/dev-python/pytest-env/pytest-env-0.6.2-r1.ebuild
20 @@ -0,0 +1,18 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DISTUTILS_USE_PEP517=setuptools
27 +PYTHON_COMPAT=( python3_{8..10} )
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="py.test plugin that allows you to add environment variables"
31 +HOMEPAGE="https://github.com/MobileDynasty/pytest-env"
32 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
33 +
34 +LICENSE="MIT"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
37 +
38 +RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]"