dev-python/pytest-picked: add 0.5.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-10 16:00:10 +01:00 committed by Andreas Billmeier
parent 32f52c6ea5
commit f2c2538620
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 32 additions and 2 deletions

View File

@ -612,11 +612,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 1759 Ebuilds in total, 1748 of them have in total 1769 (43 different) licenses assigned.
There are 1760 Ebuilds in total, 1749 of them have in total 1770 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1027|
|MIT|1028|
|Apache-2.0|368|
|GPL-3|106|
|BSD|100|

View File

@ -1,3 +1,5 @@
DIST pytest-picked-0.4.6.tar.gz 6501 BLAKE2B 04991724e02188dc390cd7d3e6e7321b49c5259bfbac66b045ba49dc3233790d6d1c0782bd1a8928a78e87d9924bb498459aa5a4cdeacecd6d96ed435b4d0468 SHA512 edc9959e5690251c1e7f168e77d5d78af2f0aae8178cc0c795838bf0a5f154cf4e2fc1ec24c81ee970feab9097b0a9500a8c869e4b9deeffc61d08f580073154
DIST pytest-picked-0.5.0.tar.gz 8368 BLAKE2B 6ad8a70055b5500b203b5b834429ee6933077682c6d3743757030951337e55ec900be95246f9cc69db9ce7c0fc63ecde2fb6675107afddb846000fd9343a1fd4 SHA512 d510bb87509498eecce083ceeb4d1670f76f85fd76b1654d77c34c86ba5d8ca8ca99421e9d441bc681fb17dfe32e806fa363a61d85d5fb6add85a7db206c91f0
EBUILD pytest-picked-0.4.6.ebuild 614 BLAKE2B 0949ee19cd51cf2fc8c8381cb38ccaf23ee55a7d5ef8ba52fc0f2f75188fd69d8a33235ad36b64b17468a21afe834e9e912b93142524d01e07a099cd95805eea SHA512 0b715eea8071a05394069c7b5e2a6de3b1f1ab679dd1e8a16054a81005941e1b8a7d41c796258f981c7f53b3b29f1b4c16105d485cff1ee16d28c633dc686b6b
EBUILD pytest-picked-0.5.0.ebuild 621 BLAKE2B db352ec94f4794b4b8b498d6c4ca4d8b0beddbd8ceb11da51c80ef3f294fd90244c7fd4ea8c9749c008856339e506d07afe14d2860b1c4c2003240917ed1488f SHA512 f7813bfb9bf0d7b27098ae135a372d5b03708754d1db8eef715d727928a1ca33db49ef66f292838e97c469f16e767757ba2f19762f7329697dc9e1408108a8a2
MISC metadata.xml 529 BLAKE2B 84f9b63b5a384b435c9a79012d4b871b5180a17855f6bcd104ba9bf920198e26ce77540eda4104db148edb7568f16a265c0a31bf7186ca2c4310be25fc7f2e7c SHA512 31d0f4ac2a14da2916e9bcd0106251698ed23e0dfd3802a5828cc521e6e0e750309d65f2236f5d9d002601624fab40e88dd1bbddb717eebf66406ac169c50718

View File

@ -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_{10..12} )
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1
inherit distutils-r1 pypi
DESCRIPTION="Run the tests related to the changed files"
HOMEPAGE="https://github.com/anapaulagomes/pytest-picked https://pypi.org/project/pytest-picked/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/pytest-3.7.0[${PYTHON_USEDEP}]"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest