dev-python/pyroute2: remove outdated pyroute2

This commit is contained in:
Andreas Billmeier 2022-10-17 06:57:52 +02:00 committed by Andreas Billmeier
parent c443ecafd3
commit 67b1a81812
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 3 additions and 50 deletions

View File

@ -547,12 +547,12 @@ 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 1530 Ebuilds in total, 1523 of them have in total 1535 (34 different) licenses assigned.
There are 1529 Ebuilds in total, 1522 of them have in total 1533 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|897|
|Apache-2.0|308|
|Apache-2.0|307|
|GPL-3|93|
|BSD|89|
|LGPL-3|25|
@ -568,7 +568,6 @@ There are 1530 Ebuilds in total, 1523 of them have in total 1535 (34 different)
|MPL-2.0|3|
|PSF-2|3|
|EPL-1.0|3|
|GPL-2+|3|
|AGPL-3+|2|
|ZPL|2|
|LGPL-2+|2|
@ -576,6 +575,7 @@ There are 1530 Ebuilds in total, 1523 of them have in total 1535 (34 different)
|BSD-4|2|
|CC-BY-NC-SA-3.0|2|
|EPL-2.0|2|
|GPL-2+|2|
|ECL-2.0|1|
|Boost-1.0|1|
|AGPL-3|1|

View File

@ -1,3 +0,0 @@
DIST pyroute2-0.6.9.tar.gz 23700 BLAKE2B d9b341adfeda7106110ddc863b7e864a6b3102ef1a2fb46487c93de282c5c0ad31d591651c0fad145f1bf5d9be8cc3f3d85884181f103b8b6de73fc3e6da391f SHA512 83e7d5074c4ed059025df67e12d7ff2520f97a71a1e2e7b1904d2d747f45dc996eba2d2a2e169d5f46e08c6cb3561d58e236286f6838f7fbbce858e318e078c9
EBUILD pyroute2-0.6.9.ebuild 717 BLAKE2B 9161df666ec74fb83fd8463edabbfdf9a838ccc59e13e2d2fa502f8ee42bcc2f5ac640fd5d4b2db1587229c403c89ee69eb2b5b953cb21e2d195a2ef06e5095e SHA512 9211df6513b75ca966c91148880223ce4a98ce79ad83acebf58f76acd5dd237d68855389de36b777bb4dbc5ec21c20d4b513d53aa9eaf12be2d7ea9d37f617de
MISC metadata.xml 327 BLAKE2B 6cb83720da3248f4f77fc042db1044abad649f64b4371770d0248431fe4f735fb6a0f190dd6be77e76fc8f3d0b6e9a926b47385e2b682ceb9b7be79c8543032c SHA512 1d0b905c9a49d7be91f10cc8eafefcdbdfbedb2b7682ea954f3e32d17d5813cc0ba63e4fff9b92d8723e24c0d1a300985634cf1c0ac0f3595f4da1adad9d439f

View File

@ -1,11 +0,0 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">pyroute2</remote-id>
</upstream>
</pkgmetadata>

View File

@ -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 Netlink library"
HOMEPAGE="https://github.com/svinota/pyroute2 https://pypi.org/project/pyroute2/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2+ Apache-2.0 )"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=""
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
}