dev-python/cached-ipaddress: add 0.5.0

Closes: #3603
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-09-22 09:02:29 +02:00
parent 10569f3d42
commit 3905a69094
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 25 additions and 4 deletions

View File

@ -606,11 +606,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 1987 Ebuilds in total, 1976 of them have in total 2001 (42 different) licenses assigned.
There are 1988 Ebuilds in total, 1977 of them have in total 2002 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1146|
|MIT|1147|
|Apache-2.0|445|
|GPL-3|117|
|BSD|112|

View File

@ -1,3 +1,5 @@
DIST cached_ipaddress-0.3.0.tar.gz 7379 BLAKE2B e6912f79a0d8ab6a5cee16c9625292319ccaf87a60aeb39129af118c1f8f0e7ca68b0c2ccb706e45307ef058715551dd4a0dfec201730a11d2022323672bbdd8 SHA512 656b74ff384726f1fec4c9e4b2a28d8ad7ca609f714798837c4fedc06b647b9c8676ba3884cf1e3cf33831422f3b8541f8f4f75929d450d3091d5ddfc405fec1
EBUILD cached-ipaddress-0.3.0.ebuild 466 BLAKE2B a8f4396d82051313828b4551d932559c2dba3d97a879e15af8a4383b1dc7aeda2f2414ee0aca0a754d368ed6dc6d9e549f7b97031efb322d8b0b9884df08d11a SHA512 3fdbc5a93f0d2f9fceb40dd0318f296935c4d56f6777690beb0da2621552a1b782459a334de599f000a31da9ee87fa1bd45398fed505906c79020da3a25f1a36
DIST cached_ipaddress-0.5.0.tar.gz 7504 BLAKE2B eef7e10bf2b437e5bcb8a0fbcb727c2b0ec31ce24a3fa91aedc97dd1110179cc223f175469495caad64363b62926e748d385cfb0a8f4b9e01dab7a2c1dc32785 SHA512 5d722bad47e4ea868c7acac831377b06d90f801bf816bca273ec1ae36b01c6be6857c879bbef5584c148509c04120727e93228685d83b91db5f2611ad5a6c1b3
EBUILD cached-ipaddress-0.3.0.ebuild 466 BLAKE2B 5d991ac9e671729fd5b7ae8161cc8cee52afb30b1e054496c58e48ffce4faa9f8892fc9a0e22284ca19ccda82f5641f80d7a586dbb10b59f292fa4444404d875 SHA512 f233d025ede0463bc2a546bdf7c348d992b828f1eea21ddc705a72910b7fc07eadcecb4d0789c79c4d6a880acfaf7bf3e377359f81484d29ef5551df9d3150df
EBUILD cached-ipaddress-0.5.0.ebuild 466 BLAKE2B 5d991ac9e671729fd5b7ae8161cc8cee52afb30b1e054496c58e48ffce4faa9f8892fc9a0e22284ca19ccda82f5641f80d7a586dbb10b59f292fa4444404d875 SHA512 f233d025ede0463bc2a546bdf7c348d992b828f1eea21ddc705a72910b7fc07eadcecb4d0789c79c4d6a880acfaf7bf3e377359f81484d29ef5551df9d3150df
MISC metadata.xml 523 BLAKE2B a78a1c97cbcd56a7374a346af34cc4e50acc310565ba6192bc9bcba4ac8d35ee3bd7686d3c9976f12391e29673341b5a5a6604ce95e41f8e33feee6c5eed7b55 SHA512 9ca2e915d0cb2933b122a8bbc6d86e4864f2d429d77f586821cc72899ee7a545cc6ee6ee690e96ee2d986da19da32caf888f9fbde9a1b16dcc8a70cf6ce6f2a1

View File

@ -3,7 +3,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{11..12} )
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi

View File

@ -0,0 +1,19 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi
DESCRIPTION="Cache construction of ipaddress objects"
HOMEPAGE="https://github.com/bdraco/cached-ipaddress https://pypi.org/project/cached-ipaddress/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"