diff --git a/README.md b/README.md index bab4b36c8..39ceb2ad9 100644 --- a/README.md +++ b/README.md @@ -573,11 +573,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E ## Licenses 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. -There are 1810 Ebuilds in total, 1799 of them have in total 1804 (34 different) licenses assigned. +There are 1811 Ebuilds in total, 1800 of them have in total 1805 (34 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1051| +|MIT|1052| |Apache-2.0|398| |GPL-3|112| |BSD|94| diff --git a/dev-python/pytest-picked/Manifest b/dev-python/pytest-picked/Manifest new file mode 100644 index 000000000..1cf56d924 --- /dev/null +++ b/dev-python/pytest-picked/Manifest @@ -0,0 +1,3 @@ +DIST pytest-picked-0.4.6.tar.gz 6501 BLAKE2B 04991724e02188dc390cd7d3e6e7321b49c5259bfbac66b045ba49dc3233790d6d1c0782bd1a8928a78e87d9924bb498459aa5a4cdeacecd6d96ed435b4d0468 SHA512 edc9959e5690251c1e7f168e77d5d78af2f0aae8178cc0c795838bf0a5f154cf4e2fc1ec24c81ee970feab9097b0a9500a8c869e4b9deeffc61d08f580073154 +EBUILD pytest-picked-0.4.6.ebuild 639 BLAKE2B fb1178e6ffe15ef1baeb3fe9f260e559ea3984e00aed71f1388a0e760a31292bbde3245c83cde15dc1100d483f27cf48836a9690690ba5ee499e05fa1eff6e09 SHA512 c54bef61c8496e0453cc5b2188f456a68a04f653deecc4997332fa3a4aa58f887705ce19c23d9f26c2a01c73c96d4295798f826bffd603062f171908e34346d2 +MISC metadata.xml 529 BLAKE2B 84f9b63b5a384b435c9a79012d4b871b5180a17855f6bcd104ba9bf920198e26ce77540eda4104db148edb7568f16a265c0a31bf7186ca2c4310be25fc7f2e7c SHA512 31d0f4ac2a14da2916e9bcd0106251698ed23e0dfd3802a5828cc521e6e0e750309d65f2236f5d9d002601624fab40e88dd1bbddb717eebf66406ac169c50718 diff --git a/dev-python/pytest-picked/metadata.xml b/dev-python/pytest-picked/metadata.xml new file mode 100644 index 000000000..c92eeb9b1 --- /dev/null +++ b/dev-python/pytest-picked/metadata.xml @@ -0,0 +1,16 @@ + + + + + b@edevau.net + Andreas Billmeier + + + pytest-picked + anapaulagomes/pytest-picked + + apgomes88@gmail.com + Ana Paula Gomes + + + diff --git a/dev-python/pytest-picked/pytest-picked-0.4.6.ebuild b/dev-python/pytest-picked/pytest-picked-0.4.6.ebuild new file mode 100644 index 000000000..0de2f79b7 --- /dev/null +++ b/dev-python/pytest-picked/pytest-picked-0.4.6.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +DESCRIPTION="Run the tests related to the changed files" +HOMEPAGE="https://github.com/anapaulagomes/pytest-picked https://pypi.org/project/pytest-picked/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.rst" + +RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]" + +python_test() { + py.test -v -v || die +} + +distutils_enable_tests pytest