Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pytest-instafail/
Date: Sun, 29 Mar 2020 09:29:12
Message-Id: 1585474142.6cc71c8656ff2348ed5e7971baac62e4189c87bd.Alessandro-Barbieri@gentoo
1 commit: 6cc71c8656ff2348ed5e7971baac62e4189c87bd
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Sun Mar 29 09:08:57 2020 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Sun Mar 29 09:29:02 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6cc71c86
7
8 dev-python/pytest-instafail: new package
9
10 Package-Manager: Portage-2.3.96, Repoman-2.3.22
11 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
12
13 dev-python/pytest-instafail/Manifest | 1 +
14 dev-python/pytest-instafail/metadata.xml | 13 +++++++++
15 .../pytest-instafail/pytest-instafail-0.4.1.ebuild | 32 ++++++++++++++++++++++
16 3 files changed, 46 insertions(+)
17
18 diff --git a/dev-python/pytest-instafail/Manifest b/dev-python/pytest-instafail/Manifest
19 new file mode 100644
20 index 0000000..002fbd8
21 --- /dev/null
22 +++ b/dev-python/pytest-instafail/Manifest
23 @@ -0,0 +1 @@
24 +DIST pytest-instafail-0.4.1.tar.gz 5237 BLAKE2B 697aca533e3654204d5c7cdee245c7c2f7811b7941f195923983be8a30d76b0a132d1eff984c86070a9c4a5463adb6143d1f8915a105c2c75d59e8ca92149e86 SHA512 f043a1a58a2fc92c740e916008fe3e8bb66d3086f2c518f34ef8d63362169cd1b4f4a5f39b70382329cda837e0fd6c02cbb7504292d0aed95994d473c6430488
25
26 diff --git a/dev-python/pytest-instafail/metadata.xml b/dev-python/pytest-instafail/metadata.xml
27 new file mode 100644
28 index 0000000..450c13e
29 --- /dev/null
30 +++ b/dev-python/pytest-instafail/metadata.xml
31 @@ -0,0 +1,13 @@
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>lssndrbarbieri@×××××.com</email>
38 + <name>Alessandro Barbieri</name>
39 + </maintainer>
40 + <upstream>
41 + <remote-id type="github">pytest-dev/pytest-instafail</remote-id>
42 + <remote-id type="pypi">pytest-instafail</remote-id>
43 + </upstream>
44 +</pkgmetadata>
45
46 diff --git a/dev-python/pytest-instafail/pytest-instafail-0.4.1.ebuild b/dev-python/pytest-instafail/pytest-instafail-0.4.1.ebuild
47 new file mode 100644
48 index 0000000..7defbbd
49 --- /dev/null
50 +++ b/dev-python/pytest-instafail/pytest-instafail-0.4.1.ebuild
51 @@ -0,0 +1,32 @@
52 +# Copyright 1999-2020 Gentoo Authors
53 +# Distributed under the terms of the GNU General Public License v2
54 +
55 +EAPI=7
56 +
57 +PYTHON_COMPAT=( python3_{6,7} )
58 +
59 +inherit distutils-r1
60 +
61 +DESCRIPTION="Plugin for py.test that shows failures and errors instantly instead of waiting until the end of test session"
62 +HOMEPAGE="
63 + https://github.com/pytest-dev/pytest-instafail
64 + https://pypi.org/project/pytest-instafail
65 +"
66 +SRC_URI="https://github.com/pytest-dev/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
67 +
68 +LICENSE="BSD"
69 +SLOT="0"
70 +KEYWORDS="~amd64 ~x86"
71 +
72 +RDEPEND="
73 + >=dev-python/pytest-2.9[${PYTHON_USEDEP}]
74 +"
75 +DEPEND="
76 + ${RDEPEND}
77 + test? (
78 + dev-python/pexpect[${PYTHON_USEDEP}]
79 + dev-python/pytest-xdist[${PYTHON_USEDEP}]
80 + )
81 +"
82 +
83 +distutils_enable_tests pytest