dev-python/url-normalize: remove outdated url-normalize

This commit is contained in:
Andreas Billmeier 2022-10-18 01:17:20 +02:00 committed by Andreas Billmeier
parent 6e906f6501
commit 3a88446ea3
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 2 additions and 54 deletions

View File

@ -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 1457 Ebuilds in total, 1450 of them have in total 1460 (34 different) licenses assigned.
There are 1456 Ebuilds in total, 1449 of them have in total 1459 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|846|
|MIT|845|
|Apache-2.0|297|
|GPL-3|91|
|BSD|87|

View File

@ -1,3 +0,0 @@
DIST url-normalize-1.4.1.tar.gz 5005 BLAKE2B e9fdddea2b7f42552ae467c922512c5ed0f5848401e142e44afce5c496da0ddd44e67b858f48625b98804dba50655316ee55ac1240f008e8cb1e801fbbdd58ee SHA512 4e29c4986cfe390f2fce67f3b1bb6fbc915e51c6a3b047d745951af5401596ef0e175e368eb8c1e2f8843d4c4d51470fda707f205fd99f08aaa07627698f4c5f
EBUILD url-normalize-1.4.1.ebuild 793 BLAKE2B a1083353b70ceb79ae6c9bf79956bc6bcdf64a358c1a2b335a21f415374708de5e16e5a2647389b8438ab8b8e6e14593f85327aded5125ce0b33db23a166f7ed SHA512 17fcc30a356bae91864a5f8db103fffc320e5aa06d49cd30eb34c7d57946048b323de2d4ade27bb2842e205e8ebb139d2088f2676d7e9ba6bc2a4340a8894a9b
MISC metadata.xml 456 BLAKE2B 236632503256db6c74f33782bf82af89c40c69787174152f1dee18829061005174f489b35f11dce8f3f321e35b813e78b3a103fa2a1feb2d72d8f73a3e68bcf2 SHA512 c2ec0dc32784dcf76a35ca162bb4915e13ad10d49b7d5a2bdc4b47d778db7887c8b7b794a3516668d1eb0d35d993c1e6a7c69ee4b50ec56181791b8a131d58fa

View File

@ -1,15 +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">url-normalize</remote-id>
<maintainer status="unknown">
<email>github@npanov.com</email>
<name>Nikolay Panov</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -1,34 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="URL normalization for Python"
HOMEPAGE="https://github.com/niksite/url-normalize https://pypi.org/project/url-normalize/"
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/six[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
>=dev-python/poetry-0.12[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}