bump lru-dict-1.1.8

This commit is contained in:
Andreas Billmeier 2022-08-06 15:44:43 +02:00 committed by Andreas Billmeier
parent 0b1f414b2b
commit 8a31c5546b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 42 additions and 5 deletions

View File

@ -523,11 +523,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 1833 Ebuilds in total, 1826 of them have in total 1837 (35 different) licenses assigned.
There are 1834 Ebuilds in total, 1827 of them have in total 1838 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1111|
|MIT|1112|
|Apache-2.0|339|
|GPL-3|107|
|BSD|104|

View File

@ -1,3 +1,5 @@
DIST lru-dict-1.1.7.tar.gz 10380 BLAKE2B 6360e8d889ac8e9d8d591ba9309e19ae7f8f7069bcfe3546f7b637645650885274078826ab34bd8da1a8a1da4a529c186ad4bb08c69d4cb922f303c552255fa1 SHA512 f645afc40d52b6f7f30afd09f0bdc7b4b6bd98fc5ba31d194c8f55680421b34ef04f5b624b68598369964d3fea82029bd02f9571762c61f9104088f4ecefbf44
EBUILD lru-dict-1.1.7.ebuild 701 BLAKE2B 20b784543759e6988de597b740055afb7c8801081c6dac755ee08437ec6681b9a0f5682e2b433dd8c8c49aafc9ae309edc5ac2f704ab97d4b646677f2c638acb SHA512 67bbf9f4dee2c7688ba14f05ede68049e96ec97c8de90382fe609f0163ba1d218eeb476af1e070456c900f33cd7d4e143e2851a861d71356bf7da76d2834a898
DIST lru-dict-1.1.8.tar.gz 10921 BLAKE2B 792e3cde60779ec377f1912edbf557910ffbd581bfa9678a8994046e24c8b6708d2acded8a7ddd5933a33db479e2983d70a08353f1b737e748bd6ea23fcbfb50 SHA512 df1fc927b62a755bbf324a9f95c19eeb97d1bb555f0dc134e774bb7400dab4fda84ec1f667385d8883747d434d71c6b5cb6f9b07ca4ac0f37eb7b07f9a848ac7
EBUILD lru-dict-1.1.7.ebuild 677 BLAKE2B 617274e77602a49ba21c9c3e3b5d9a8928df86b2f564fa84744dc85ddf8551853d7b3c1db17be01df6a6ad9e7c80cfee987c482cf5366d29a2f2c4e79e75b7a5 SHA512 bd577ee4b93664575a75d0c2a3c949bf0112095659e3a03786bedb46c8e572548272cbbb967ce3ef29f9b6f27a77633fbad79cb1332e84f3f742b408a65e7b5b
EBUILD lru-dict-1.1.8.ebuild 708 BLAKE2B a0a24aaaf96058b2930f06b9c7751393ef3e8bef301cf75c296701006f0b42bb4302a43dbdd2563cb8c0097c34944a5344c22d2101932b00a34cbf1be5638ff1 SHA512 18982c91ea7dabd4fd8d8277612fafadf62854a8f2be90bcf0b8e73713c599b1b5d3f4cdc271e96c7d670bdcb5c7d742cecda29dcc7708256720ff22281e0255
MISC metadata.xml 327 BLAKE2B c04e8a00db45f63296990ea2786c0d4c944fb101b91cfa714cbffcc705bf3f791b1e6fd16b5aab5e86d0b1e0d9c01d0bcf074b9b3d1e231b5f66af0dc93a52b5 SHA512 efd8e5598bcfd939b04625b8295ee93dd03ce85aa1073198148f099fd26dc1bea3f443f5b8d8811ec9f11c2b0ec9ff0ac0b882ce447b25c828c24c3f3ca31116

View File

@ -3,7 +3,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"

View File

@ -0,0 +1,35 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="An Dict like LRU container."
HOMEPAGE="https://github.com/amitdev/lru-dict https://pypi.org/project/lru-dict/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
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
}
distutils_enable_tests pytest