Skip to content

Commit c5f6580

Browse files
committed
dev-python/pytest-picked: new package, add 0.4.6
Signed-off-by: Andreas Billmeier <[email protected]>
1 parent 00da3c8 commit c5f6580

File tree

4 files changed

+49
-2
lines changed

4 files changed

+49
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -573,11 +573,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
573573

574574
## Licenses
575575
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
576-
There are 1810 Ebuilds in total, 1799 of them have in total 1804 (34 different) licenses assigned.
576+
There are 1811 Ebuilds in total, 1800 of them have in total 1805 (34 different) licenses assigned.
577577

578578
|License| Ebuilds using it|
579579
|-------|-----|
580-
|MIT|1051|
580+
|MIT|1052|
581581
|Apache-2.0|398|
582582
|GPL-3|112|
583583
|BSD|94|

dev-python/pytest-picked/Manifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DIST pytest-picked-0.4.6.tar.gz 6501 BLAKE2B 04991724e02188dc390cd7d3e6e7321b49c5259bfbac66b045ba49dc3233790d6d1c0782bd1a8928a78e87d9924bb498459aa5a4cdeacecd6d96ed435b4d0468 SHA512 edc9959e5690251c1e7f168e77d5d78af2f0aae8178cc0c795838bf0a5f154cf4e2fc1ec24c81ee970feab9097b0a9500a8c869e4b9deeffc61d08f580073154
2+
EBUILD pytest-picked-0.4.6.ebuild 639 BLAKE2B fb1178e6ffe15ef1baeb3fe9f260e559ea3984e00aed71f1388a0e760a31292bbde3245c83cde15dc1100d483f27cf48836a9690690ba5ee499e05fa1eff6e09 SHA512 c54bef61c8496e0453cc5b2188f456a68a04f653deecc4997332fa3a4aa58f887705ce19c23d9f26c2a01c73c96d4295798f826bffd603062f171908e34346d2
3+
MISC metadata.xml 529 BLAKE2B 84f9b63b5a384b435c9a79012d4b871b5180a17855f6bcd104ba9bf920198e26ce77540eda4104db148edb7568f16a265c0a31bf7186ca2c4310be25fc7f2e7c SHA512 31d0f4ac2a14da2916e9bcd0106251698ed23e0dfd3802a5828cc521e6e0e750309d65f2236f5d9d002601624fab40e88dd1bbddb717eebf66406ac169c50718

dev-python/pytest-picked/metadata.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
3+
<pkgmetadata>
4+
<maintainer type="project">
5+
<email>[email protected]</email>
6+
<name>Andreas Billmeier</name>
7+
</maintainer>
8+
<upstream>
9+
<remote-id type="pypi">pytest-picked</remote-id>
10+
<remote-id type="github">anapaulagomes/pytest-picked</remote-id>
11+
<maintainer status="unknown">
12+
<email>[email protected]</email>
13+
<name>Ana Paula Gomes</name>
14+
</maintainer>
15+
</upstream>
16+
</pkgmetadata>
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Copyright 1999-2023 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
PYTHON_COMPAT=( python3_{9..11} )
7+
DISTUTILS_USE_PEP517=setuptools
8+
inherit distutils-r1
9+
10+
DESCRIPTION="Run the tests related to the changed files"
11+
HOMEPAGE="https://github.com/anapaulagomes/pytest-picked https://pypi.org/project/pytest-picked/"
12+
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
13+
14+
LICENSE="MIT"
15+
SLOT="0"
16+
KEYWORDS="amd64 arm arm64 x86"
17+
IUSE="test"
18+
RESTRICT="!test? ( test )"
19+
20+
DOCS="README.rst"
21+
22+
RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]"
23+
24+
python_test() {
25+
py.test -v -v || die
26+
}
27+
28+
distutils_enable_tests pytest

0 commit comments

Comments
 (0)