diff --git a/README.md b/README.md index 1fe8562b4..8fbf34dd3 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 1520 Ebuilds in total, 1513 of them have in total 1524 (34 different) licenses assigned. +There are 1519 Ebuilds in total, 1512 of them have in total 1523 (34 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|889| +|MIT|888| |Apache-2.0|307| |GPL-3|93| |BSD|89| diff --git a/dev-python/python-engineio/Manifest b/dev-python/python-engineio/Manifest deleted file mode 100644 index 8513d0fae..000000000 --- a/dev-python/python-engineio/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST python-engineio-3.14.2.tar.gz 40741 BLAKE2B bd84ccb043479459390084cae8afb6d29906199c867484df6706bf88039e1f7eac2db7bb02d86fb671c6580f4988d83296315638ccad08ad2d611f920493dc06 SHA512 2af5b6b768a0e44037848b3e3bcd759e891270b3dbd476d8b29865a583a51ea694709788ff9c578d6602c67fd298301e191405ca5d063705db98eb58417a7bf7 -EBUILD python-engineio-3.14.2.ebuild 851 BLAKE2B ffc52f21f2af6464bec2c255050486170f1a23347ff37c5993d71539beb3c36f72952259a7fdd9c56b3277d68af0bd68a0a4c2c2e1169546a4a2830ff86f7008 SHA512 9159d8a0a0f5e29f26d63bbf4bdc923210b443bb612be30ddc64a809c044076b32bd5ea9f3209773ba81867f90b32c531f6e7582efc54f5c1081d16c1a864376 -MISC metadata.xml 525 BLAKE2B 5579b1fda9b09d98653c33a7c97318a2127fce8fd0bc53f867d346ce73f1c4220a40c8ec36efe4e2a6115eb548fb32ff64cf9e0bd66424ef7bc1cd9452ecd40e SHA512 f45d23ce08d33c7ba78dce923ca6062086a2a14952a947e181faf0e0e3b28c8341becb4e7d613b53f62353f8f6de8cf0ebb313239e5bb68dc4b59d741873a811 diff --git a/dev-python/python-engineio/metadata.xml b/dev-python/python-engineio/metadata.xml deleted file mode 100644 index 548059a79..000000000 --- a/dev-python/python-engineio/metadata.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - b@edevau.net - Andreas Billmeier - - - python-engineio - https://pythonhosted.org/python-engineio/ - - miguel.grinberg@gmail.com - Miguel Grinberg - - - diff --git a/dev-python/python-engineio/python-engineio-3.14.2.ebuild b/dev-python/python-engineio/python-engineio-3.14.2.ebuild deleted file mode 100644 index 9a696e305..000000000 --- a/dev-python/python-engineio/python-engineio-3.14.2.ebuild +++ /dev/null @@ -1,32 +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 - -MY_PN="" -DESCRIPTION="Python implementation of the Engine.IO realtime server." -HOMEPAGE="https://python-engineio.readthedocs.org/ https://github.com/miguelgrinberg/python-engineio/ https://pypi.org/project/python-engineio/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DOCS="README.rst" - -RDEPEND=">=dev-python/six-1.9.0[${PYTHON_USEDEP}] - >=dev-python/aiohttp-3.4[${PYTHON_USEDEP}] - >=dev-python/requests-2.21.0[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" - -# pypi tarball does not contain tests -RESTRICT="test" - -python_test() { - esetup.py test || die "Tests failed under ${EPYTHON}" -}