diff --git a/README.md b/README.md index 32539b4a0..a067c7aa5 100644 --- a/README.md +++ b/README.md @@ -612,11 +612,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 1676 Ebuilds in total, 1665 of them have in total 1683 (42 different) licenses assigned. +There are 1675 Ebuilds in total, 1664 of them have in total 1682 (42 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|972| +|MIT|971| |Apache-2.0|350| |GPL-3|108| |BSD|92| diff --git a/dev-python/lru-dict/Manifest b/dev-python/lru-dict/Manifest index 550d301b7..af06ee113 100644 --- a/dev-python/lru-dict/Manifest +++ b/dev-python/lru-dict/Manifest @@ -1,5 +1,3 @@ -DIST lru-dict-1.1.8.tar.gz 10921 BLAKE2B 792e3cde60779ec377f1912edbf557910ffbd581bfa9678a8994046e24c8b6708d2acded8a7ddd5933a33db479e2983d70a08353f1b737e748bd6ea23fcbfb50 SHA512 df1fc927b62a755bbf324a9f95c19eeb97d1bb555f0dc134e774bb7400dab4fda84ec1f667385d8883747d434d71c6b5cb6f9b07ca4ac0f37eb7b07f9a848ac7 DIST lru-dict-1.2.0.tar.gz 10895 BLAKE2B 885ff779dcc2c7324ad0b8ce2b031617d4c4214fd5e981dcdc10debe3c4d5a20612e12bfe2ba7974e3e6ea9a43118ae42064a7f987ec44846263692f8e022f53 SHA512 2c96c65a6258023fc0af112e680f41ad28f544b547986230c968e3d429aea3cfcd8e1c8ae912268edb686f00d8164bcfbba6addaaf4586f9d6157dddb53ce970 -EBUILD lru-dict-1.1.8.ebuild 598 BLAKE2B 2da771069476fe38742eddb00451802ffa7441b7a2f44a0f01d790e63a538505c0230197561075daed10016cc18400a7802f63b06d623c1942d6a1b45ee9051e SHA512 4d7edf0de812731454c5686242d1b2efa056eaadec1558f86c9fb953681f833602305f98d721da13b31428e0905699e954ae22ca667c3351c9241f8f51b8aa41 EBUILD lru-dict-1.2.0.ebuild 598 BLAKE2B 2da771069476fe38742eddb00451802ffa7441b7a2f44a0f01d790e63a538505c0230197561075daed10016cc18400a7802f63b06d623c1942d6a1b45ee9051e SHA512 4d7edf0de812731454c5686242d1b2efa056eaadec1558f86c9fb953681f833602305f98d721da13b31428e0905699e954ae22ca667c3351c9241f8f51b8aa41 MISC metadata.xml 385 BLAKE2B f6e09bc4307cbf0774d75534b80cb944b439610091bb67f4966da3aeb95c8f2b769ecfd5a0c707363dbf3ad935c843b8686a8ab9c780630dc8beb115cae0a649 SHA512 5f884b8e5a035f78faa70ad129822ba99fc72a2cc9d95e51322014251b837ae9ed379e418ee0c419ee0781c18a27aae8e9aa51562aae20f6a1d6e603ab8d91ff diff --git a/dev-python/lru-dict/lru-dict-1.1.8.ebuild b/dev-python/lru-dict/lru-dict-1.1.8.ebuild deleted file mode 100644 index 102fd6bf3..000000000 --- a/dev-python/lru-dict/lru-dict-1.1.8.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..12} ) -DISTUTILS_USE_PEP517=setuptools -PYPI_NO_NORMALIZE=1 -inherit distutils-r1 pypi - -DESCRIPTION="An Dict like LRU container." -HOMEPAGE="https://github.com/amitdev/lru-dict https://pypi.org/project/lru-dict/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm arm64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -DOCS="README.rst" - -BDEPEND=" - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - )" - -python_test() { - py.test -v -v || die -} - -distutils_enable_tests pytest