Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-plus/
Date: Fri, 11 Jun 2021 13:40:18
Message-Id: 1623418795.8e6877194b630f22ef3cce97c43e8725b59e35c8.marecki@gentoo
1 commit: 8e6877194b630f22ef3cce97c43e8725b59e35c8
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 11 13:07:51 2021 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 11 13:39:55 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e687719
7
8 dev-python/pytest-plus: initial import
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 dev-python/pytest-plus/Manifest | 1 +
13 dev-python/pytest-plus/metadata.xml | 13 +++++++++++++
14 dev-python/pytest-plus/pytest-plus-0.2.ebuild | 23 +++++++++++++++++++++++
15 3 files changed, 37 insertions(+)
16
17 diff --git a/dev-python/pytest-plus/Manifest b/dev-python/pytest-plus/Manifest
18 new file mode 100644
19 index 00000000000..1b1dc87fd5c
20 --- /dev/null
21 +++ b/dev-python/pytest-plus/Manifest
22 @@ -0,0 +1 @@
23 +DIST pytest-plus-0.2.tar.gz 8210 BLAKE2B b8a28e72cfb4e10daa021528de9b5df2e9eb0bc4e911557c7c14a0825284787e94992132c0b74881867a41b55a67785c60b9b87a1594ad33fb57ebac8de391a6 SHA512 e16a03433cb6eb30b6881bec99482bc65cb7d1fa3d0db855befe666c0645d4b5ec02debde9dec4322ed0a0b77d3ac3f1cabda0cf98f375ffd68dc29fb55f5139
24
25 diff --git a/dev-python/pytest-plus/metadata.xml b/dev-python/pytest-plus/metadata.xml
26 new file mode 100644
27 index 00000000000..11989dba834
28 --- /dev/null
29 +++ b/dev-python/pytest-plus/metadata.xml
30 @@ -0,0 +1,13 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <email>marecki@g.o</email>
36 + <name>Marek Szuba</name>
37 + </maintainer>
38 + <stabilize-allarches/>
39 + <upstream>
40 + <remote-id type="github">pytest-dev/pytest-plus</remote-id>
41 + <remote-id type="pypi">pytest-plus</remote-id>
42 + </upstream>
43 +</pkgmetadata>
44
45 diff --git a/dev-python/pytest-plus/pytest-plus-0.2.ebuild b/dev-python/pytest-plus/pytest-plus-0.2.ebuild
46 new file mode 100644
47 index 00000000000..3bd50d2af4a
48 --- /dev/null
49 +++ b/dev-python/pytest-plus/pytest-plus-0.2.ebuild
50 @@ -0,0 +1,23 @@
51 +# Copyright 1999-2021 Gentoo Authors
52 +# Distributed under the terms of the GNU General Public License v2
53 +
54 +EAPI=7
55 +
56 +PYTHON_COMPAT=( python3_{8..10} )
57 +
58 +inherit distutils-r1
59 +
60 +DESCRIPTION="PyTest Plus Plugin - extends pytest functionality"
61 +HOMEPAGE="https://github.com/pytest-dev/pytest-plus"
62 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
63 +
64 +LICENSE="MIT"
65 +SLOT="0"
66 +KEYWORDS="~amd64"
67 +
68 +RDEPEND="dev-python/more-itertools[${PYTHON_USEDEP}]
69 + dev-python/pytest[${PYTHON_USEDEP}]"
70 +BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]
71 + dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}]"
72 +
73 +distutils_enable_tests pytest