diff --git a/README.md b/README.md index 9738f07e3..500e43fd3 100644 --- a/README.md +++ b/README.md @@ -547,11 +547,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 1490 Ebuilds in total, 1483 of them have in total 1494 (34 different) licenses assigned. +There are 1489 Ebuilds in total, 1482 of them have in total 1493 (34 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|872| +|MIT|871| |Apache-2.0|302| |GPL-3|91| |BSD|89| diff --git a/dev-python/sharkiqpy/Manifest b/dev-python/sharkiqpy/Manifest deleted file mode 100644 index f9c57c345..000000000 --- a/dev-python/sharkiqpy/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST sharkiqpy-0.1.8.tar.gz 12112 BLAKE2B 94379633bc5b0602b6feb4c684ae50d3bfce7fe8cd68b13554a0db331961c8a46fe19c32a9ca0f3b54748a02a72f5465bd7f5e9bf4311f0fb87ec74669ca66b6 SHA512 1ade0950a868f8f80be8d6f75dcdaddcc407502ee452eb9a8712778d41e9614c4c2dc0904657b712f2b9969f11aa73bc3eb2baa664dc942dd8074c8be612be23 -EBUILD sharkiqpy-0.1.8.ebuild 777 BLAKE2B 5889ff7dc80c30bdfe961f23908ec3d1bc81b3d4311357730a1f8f234b1638cce5df641344d0fc73e5268324f23851c46cffb010fb62a52da81b947df016791d SHA512 d065a39baa1ab472ebfc0d2e3dcfc3e33cf73d1b0c6a90dd099ef257a9752ddb7a4820b6c2e47735b4eb642a24400b67a8443d4374d36dbf87f5d84761c82112 -MISC metadata.xml 451 BLAKE2B defaeb9295c87883e0a20062943303d5eaa874e1958fa742cd762494aebe96c72e3a14c839f47352cb547c9b68b319882d5b278f8243c68e68b76db5e55b747a SHA512 4e8fe1a59078710fe470ff5918ff2f6a2c45f6929f97d95636266f2e6b4736a6b0abba4a77c13742782aadc4a6f14444beab9708f05414f828db2db300d5840a diff --git a/dev-python/sharkiqpy/metadata.xml b/dev-python/sharkiqpy/metadata.xml deleted file mode 100644 index bd02659a6..000000000 --- a/dev-python/sharkiqpy/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - b@edevau.net - Andreas Billmeier - - - sharkiqpy - - ajmarks@gmail.com - Andrew Marks - - - diff --git a/dev-python/sharkiqpy/sharkiqpy-0.1.8.ebuild b/dev-python/sharkiqpy/sharkiqpy-0.1.8.ebuild deleted file mode 100644 index 0bdb2013d..000000000 --- a/dev-python/sharkiqpy/sharkiqpy-0.1.8.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="Python API for Shark IQ robots" -HOMEPAGE="https://github.com/ajmarks/sharkiq https://pypi.org/project/sharkiqpy/" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" - -DOCS="README.md" -RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}]" -BDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/nose[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - )" - -python_test() { - nosetests --verbose || die - py.test -v -v || die -}