diff --git a/README.md b/README.md index 02e405cc8..bdcb02f9f 100644 --- a/README.md +++ b/README.md @@ -617,11 +617,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 1965 Ebuilds in total, 1954 of them have in total 1973 (42 different) licenses assigned. +There are 1966 Ebuilds in total, 1955 of them have in total 1974 (42 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1110| +|MIT|1111| |Apache-2.0|449| |GPL-3|129| |BSD|111| diff --git a/dev-python/myuplink/Manifest b/dev-python/myuplink/Manifest index 725c9a30e..15244d534 100644 --- a/dev-python/myuplink/Manifest +++ b/dev-python/myuplink/Manifest @@ -1,5 +1,7 @@ DIST myuplink-0.0.9.tar.gz 2934 BLAKE2B a2535163cbc322f78e98baf50196b4ab1fb12ba90d75afd6c076aefc300046d1b1a3df0430b7f1bf55b7dbad7a444345ef20e4c07a7be6e933a265f58d0fdd13 SHA512 11e169ad595389de87f7778b25e2f46daf9d44a9221fec034aa450f24a300bbf89ee95a5f076501fd756fca0f17063738c1e92aa709c587a740c8e7da19e0c24 DIST myuplink-0.5.0.tar.gz 6581 BLAKE2B b74a8190f76a44644d73f679d01d8fc2378b8d5eeff6ce7112321f2817a74dc090e5f898d998f1a7b91c2bdccb6d3d8371f2d5682b3c54866d72be223bb7490e SHA512 cd578e149d8b60bf1c6224f13fe2a022eaf01c2bda41ad7d686e987ba802461ae7092970b421120e94f58f17fab2d720623b551eeae81ba2aab615dda458b88d +DIST myuplink-0.6.0.tar.gz 6656 BLAKE2B 96b7c946f80a2f0af1e72aabd92b1dc9e1ede1676a15fee810b0cc15ce31847305b1240fe9ee0cab3c66e74ad7be6dc06df7244c47482dcb5d8e6e1c7eda05a7 SHA512 0ac4b29f66bc0a3dfb79cbca5782eb075061bb83cfcf72e5d0186e007cad6ce42f83786320a3b813e502f2ad4514ab8d2d6354c2ae102e0deb99b06e26e7b634 EBUILD myuplink-0.0.9.ebuild 517 BLAKE2B 9fdd82cc3611f9488d53e0ac650d364d22657484c8153fddbdbc68e453e2ff05ae34f308579f61fd095723a6a8cc9e2d38500f3aa2f983fdcf5e2e91335e4a03 SHA512 f313479ae1e4245e31f59014bf7f47f61fd54e242e57be63f23bf49e6a4dc8648876d7076deb0377caf009f19801b7e04655e0408c06e8a85dfe2e327219876a EBUILD myuplink-0.5.0.ebuild 517 BLAKE2B 9fdd82cc3611f9488d53e0ac650d364d22657484c8153fddbdbc68e453e2ff05ae34f308579f61fd095723a6a8cc9e2d38500f3aa2f983fdcf5e2e91335e4a03 SHA512 f313479ae1e4245e31f59014bf7f47f61fd54e242e57be63f23bf49e6a4dc8648876d7076deb0377caf009f19801b7e04655e0408c06e8a85dfe2e327219876a +EBUILD myuplink-0.6.0.ebuild 517 BLAKE2B 9fdd82cc3611f9488d53e0ac650d364d22657484c8153fddbdbc68e453e2ff05ae34f308579f61fd095723a6a8cc9e2d38500f3aa2f983fdcf5e2e91335e4a03 SHA512 f313479ae1e4245e31f59014bf7f47f61fd54e242e57be63f23bf49e6a4dc8648876d7076deb0377caf009f19801b7e04655e0408c06e8a85dfe2e327219876a MISC metadata.xml 504 BLAKE2B ad3852bb6c0d3dde2d4fbc5ebdb3d2dba935ba3507c4e4ec4783de8a999afab6cd3a0d2437d63f433352b460e02b60e4fe8f115dc2e7cfc5ef0e3ec5c414e347 SHA512 36ed68dd8a2531fb1e7f5363a8ee2a80e8522f592738e59e7dd8016e5cd97a0bb09e5bfe3f0c9c7b08945c562ba0d10e3db9ff160feb2ef7d3b8ba639c57ae95 diff --git a/dev-python/myuplink/myuplink-0.6.0.ebuild b/dev-python/myuplink/myuplink-0.6.0.ebuild new file mode 100644 index 000000000..ef1e0699e --- /dev/null +++ b/dev-python/myuplink/myuplink-0.6.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{11..12} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 pypi + +DESCRIPTION="API package for myUplink" +HOMEPAGE="https://github.com/pajzo/myuplink https://pypi.org/project/myuplink/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest