dev-python/lru-dict: add 1.3.0

Closes: #2680
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-01-06 12:07:30 +01:00
parent 61d3e35229
commit b48361e03f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 28 additions and 4 deletions

View File

@ -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 1641 Ebuilds in total, 1630 of them have in total 1646 (42 different) licenses assigned.
There are 1642 Ebuilds in total, 1631 of them have in total 1647 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|939|
|MIT|940|
|Apache-2.0|352|
|GPL-3|107|
|BSD|91|

View File

@ -1,3 +1,5 @@
DIST lru-dict-1.2.0.tar.gz 10895 BLAKE2B 885ff779dcc2c7324ad0b8ce2b031617d4c4214fd5e981dcdc10debe3c4d5a20612e12bfe2ba7974e3e6ea9a43118ae42064a7f987ec44846263692f8e022f53 SHA512 2c96c65a6258023fc0af112e680f41ad28f544b547986230c968e3d429aea3cfcd8e1c8ae912268edb686f00d8164bcfbba6addaaf4586f9d6157dddb53ce970
EBUILD lru-dict-1.2.0.ebuild 598 BLAKE2B 2da771069476fe38742eddb00451802ffa7441b7a2f44a0f01d790e63a538505c0230197561075daed10016cc18400a7802f63b06d623c1942d6a1b45ee9051e SHA512 4d7edf0de812731454c5686242d1b2efa056eaadec1558f86c9fb953681f833602305f98d721da13b31428e0905699e954ae22ca667c3351c9241f8f51b8aa41
DIST lru-dict-1.3.0.tar.gz 13123 BLAKE2B 705fb47e2f8564e5aea43d2a9a08b834e2f645dd78e6604896b159aceb75d71bf88c138fb2db746808b0d901e18d206c09181997f2a7366264d91bd412856d10 SHA512 c5db55f7808ce404a71990546a40c26a9c46c3edff475cf5c0cb5082c5527793c41c517a2d615145f4733c6f39b988775f2092f55b58ea54a8e6830a66bbaf5a
EBUILD lru-dict-1.2.0.ebuild 598 BLAKE2B ff1d533e576b5a1f2a102f80f1c034f07d7cbbafacf512e160b23a002d4fde9e359dd71515e90d60099003f81c87a64112c998576a05d46c594e3062380cebc0 SHA512 0c0a1b34eca72c5052a01322c77a8ce8a5da0b292d3704586fb9dfb911200e32acb9052bfa1e43039c7c4e2fa7009060c508e80f91ef9fe4ef0da8a526a2576c
EBUILD lru-dict-1.3.0.ebuild 495 BLAKE2B 29572a95bed6ddfbb3bd5d86e94dcbaa27e0ca03a235d12b233dd3de0edd927775bc53cfff9f405839c31f3443459a1fdc1bb8ada6a688f6e8714bd31ddf4dee SHA512 53102bdb233309639b61b98e8902ffbfdae93f5986df89c962b135ac2fd27d12ffb83348a20ab81913f9a1e600c77a85fced2bb1566b5ae939aa7a18fde57bb2
MISC metadata.xml 385 BLAKE2B f6e09bc4307cbf0774d75534b80cb944b439610091bb67f4966da3aeb95c8f2b769ecfd5a0c707363dbf3ad935c843b8686a8ab9c780630dc8beb115cae0a649 SHA512 5f884b8e5a035f78faa70ad129822ba99fc72a2cc9d95e51322014251b837ae9ed379e418ee0c419ee0781c18a27aae8e9aa51562aae20f6a1d6e603ab8d91ff

View File

@ -1,4 +1,4 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8

View File

@ -0,0 +1,22 @@
# Copyright 1999-2024 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"
distutils_enable_tests pytest