dev-python/pyopenuv: add 2023.2.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-02-26 09:54:47 +01:00 committed by Andreas Billmeier
parent d64b275bdc
commit e65f4ab288
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 42 additions and 2 deletions

View File

@ -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 1733 Ebuilds in total, 1722 of them have in total 1726 (34 different) licenses assigned.
There are 1734 Ebuilds in total, 1723 of them have in total 1727 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1011|
|MIT|1012|
|Apache-2.0|373|
|GPL-3|107|
|BSD|91|

View File

@ -1,5 +1,7 @@
DIST pyopenuv-2022.4.0.tar.gz 5986 BLAKE2B abcf32dee5d6262bc83cc0432c3ff6f78c91fd55a3b731f24e12210c6ed8c8881c714e17dd7e45eb23c06495aba94b5c9e7486e6e7ae7fa642865396ab09a888 SHA512 dc93a3381ecc3e745a2ccd992bf3ade20a2544f36a84f7e23b8997e2abe4f781fe3545f828177e7d0e419b50c344b54fb51360f90a252901ba94a1b8fad3a8eb
DIST pyopenuv-2023.1.0.tar.gz 7573 BLAKE2B 7bf5c6a39ab5960c8cc9cdefe7d0aad9112efeccf7533d645ded12e9e7809a2c09a37b260152c5bef6b3423e434ff7bd8097737a8551a1ca40d741cbc4f970ad SHA512 d11ff9134944ed175ede07080e360cef04cb845fdb0dfd7d9b1f72b1cfe76886571593d8b93ef77c750e613595770f6bc57221687465ddd2462c21993f82af2b
DIST pyopenuv-2023.2.0.tar.gz 7818 BLAKE2B 76ddc93960f5094c07ee98e2a7138cadbe9c29d42b0368af30169b37b14f934ba43265e560178162d5cb2ffb2cbbaf0c00aa654a0666b511197ed1223d234637 SHA512 26891032ca36dc094c9f687faf9c0ff48c52e323cc964c661e5eb3ffbdfc63707914ac68def0db077e8720944ca847ee7b2ee2dd71c5d3d3f6a52264ad903385
EBUILD pyopenuv-2022.4.0.ebuild 1006 BLAKE2B 8e9bd4ffb43ed53f5a2c8d1b78667d86ef97578f5b402f9fce566f8a1f7cc7a21546e2e80e6d579a9359a6b16f4c8438c6bd59b12eaa15fa7f25eb093a0b3e11 SHA512 b8cb2ceb41d7ef35bb66adfaa450b7ec18047d0349ade1304d782ea9aa595f0d77ef70483494236e5a9ee3390724775784c350787abcab3a308510b8372efd52
EBUILD pyopenuv-2023.1.0.ebuild 986 BLAKE2B 89bb5d08d455ca908b822eda472be29e2acbd88d98ca15421c86d994dde683b3cf065975128fcb7090de14b5946db73b0607f9629da7d82bad27f1da143e5456 SHA512 a04c69f5483c8ab15eee48505aebe1fdfd7b604b69524b24b95c0ec917ebd9ebfeba3482c57ac882e88023a84465d79cc60978d1e174a6d41f068f95da84939c
EBUILD pyopenuv-2023.2.0.ebuild 986 BLAKE2B d6261813ac1fb522b4b6fdd3f6bac5dabfc909def39488bc3be0c44229ba46ec7d870893dc19982294ccaf720de37e613cc973270b296df34512916b1f2fb196 SHA512 1f2d80d2ff8a7d9c074efd4efc2d02812d588e9a65e496fcc3adc15e1c93bf428125dd13917e4f3f6dfaeb26f68fa925c8f13066eec3cfd8caf5b63eda389bdf
MISC metadata.xml 508 BLAKE2B 380926ae809f118e59f10cb307885f8d56f429e9b6932f227e6b282f8e60189d0d0fcd9bbd81f904b3058f3000aa9085149ce6dcfe5b22dc4a9d48327874004c SHA512 92ac5322c2134cdf8a629b39e244cdda1e29a4708a30639a7f8c5a863735b5cfb55ea36aa648ec3eb323f088ed7b34a1486fa8891f39041b69f59316f8c633a9

View File

@ -0,0 +1,38 @@
# 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=poetry
inherit distutils-r1
DESCRIPTION="A simple Python API data from openuv.io"
HOMEPAGE="https://github.com/bachya/pyopenuv https://pypi.org/project/pyopenuv/"
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.md"
RDEPEND=">=dev-python/aiohttp-3.8.0[${PYTHON_USEDEP}]
>=dev-python/asynctest-0.13.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
>=dev-python/pytest-7.2.0[${PYTHON_USEDEP}]
>=dev-python/aresponses-2.1.6[${PYTHON_USEDEP}]
>=dev-python/asynctest-0.13.0[${PYTHON_USEDEP}]
>=dev-python/pytest-aiohttp-1.0.0[${PYTHON_USEDEP}]
>=dev-python/pytest-cov-4.0.0[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest