Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pytest-marks/
Date: Sun, 29 Mar 2020 13:21:23
Message-Id: 1585484469.c48bde4ac7f7100d139e8b5136bc20c8e364b716.andrewammerlaan@gentoo
1 commit: c48bde4ac7f7100d139e8b5136bc20c8e364b716
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
3 AuthorDate: Sun Mar 29 12:21:09 2020 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Sun Mar 29 12:21:09 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c48bde4a
7
8 dev-python/pytest-marks: Allow to set 'marks' on pytest methods
9
10 Package-Manager: Portage-2.3.96, Repoman-2.3.22
11 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
12
13 dev-python/pytest-marks/Manifest | 1 +
14 dev-python/pytest-marks/metadata.xml | 9 +++++++++
15 dev-python/pytest-marks/pytest-marks-0.4.ebuild | 20 ++++++++++++++++++++
16 3 files changed, 30 insertions(+)
17
18 diff --git a/dev-python/pytest-marks/Manifest b/dev-python/pytest-marks/Manifest
19 new file mode 100644
20 index 0000000..d42a0fd
21 --- /dev/null
22 +++ b/dev-python/pytest-marks/Manifest
23 @@ -0,0 +1 @@
24 +DIST pytest-marks-0.4.tar.gz 1978 BLAKE2B 1f9898d860734e940b77f926bc7513e9c1d26d4dc45b9f876378974db393b41f8e9c24073306c6d299d3a70d60d40ecea35efdf4e50aa861678837cf4626c46f SHA512 4c1b6bb88c022661705e31cdf0b2d25c4e6fe09a4f8632662410d0c7ab3e436c6091ee88620b7c6660c4194f7afaedeb11ae4eac6476e447b6653c6ac7668d7b
25
26 diff --git a/dev-python/pytest-marks/metadata.xml b/dev-python/pytest-marks/metadata.xml
27 new file mode 100644
28 index 0000000..628ab20
29 --- /dev/null
30 +++ b/dev-python/pytest-marks/metadata.xml
31 @@ -0,0 +1,9 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +
35 +<pkgmetadata>
36 + <maintainer type="person">
37 + <email>andrewammerlaan@××××××.net</email>
38 + <name>Andrew Ammerlaan</name>
39 + </maintainer>
40 +</pkgmetadata>
41
42 diff --git a/dev-python/pytest-marks/pytest-marks-0.4.ebuild b/dev-python/pytest-marks/pytest-marks-0.4.ebuild
43 new file mode 100644
44 index 0000000..13c75e2
45 --- /dev/null
46 +++ b/dev-python/pytest-marks/pytest-marks-0.4.ebuild
47 @@ -0,0 +1,20 @@
48 +# Copyright 1999-2020 Gentoo Authors
49 +# Distributed under the terms of the GNU General Public License v2
50 +
51 +EAPI=7
52 +
53 +PYTHON_COMPAT=( python3_{6,7,8} )
54 +
55 +DISTUTILS_USE_SETUPTOOLS=rdepend
56 +
57 +inherit distutils-r1
58 +
59 +DESCRIPTION="Allow to set 'marks' on pytest methods"
60 +HOMEPAGE="https://github.com/adamgoucher/pytest-marks"
61 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
62 +
63 +LICENSE="GPL-3"
64 +KEYWORDS="~amd64 ~x86"
65 +SLOT="0"
66 +
67 +RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]"