dev-python/dacite: drop 1.8.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-10 10:16:02 +01:00 committed by Andreas Billmeier
parent 568a1df8fd
commit 677c520da0
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 35 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 1676 Ebuilds in total, 1665 of them have in total 1686 (43 different) licenses assigned.
There are 1675 Ebuilds in total, 1664 of them have in total 1685 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|981|
|MIT|980|
|Apache-2.0|350|
|BSD|96|
|GPL-3|95|

View File

@ -1,7 +1,5 @@
DIST dacite-1.6.0.tar.gz 16538 BLAKE2B ec42ecbd9dd1328d39df2c9d836f82091dd562966de75435a1cada297d3bdf848fdc3b8c055cc20bd8af238fac8d3a5def771a7cf882c4c211c9216989b362c2 SHA512 d34b4dfd1192cb285a7cc34da8a87cfda87129db9b3ac026a7ce3dc01d227093b6db920c6eba148fc8a4be1d0fec57f50b117877419419d06264ad1a79ffaa15
DIST dacite-1.8.0.tar.gz 17836 BLAKE2B 7747dd2ae871ab64c4619225967705f7144f59c9001c3126bf48c5f02acbee2eb48e91de1303855fb3efaeabf28fab0ecc1d242f9cecb64d7178979ca33f1d17 SHA512 7e9ebf7da56aa8e65d5a5f0576a0e268344ee40459bdcde2560d17e90d4b73f660ce9dbec3ab5377100f42a21ad8698019b5b6f4fa03ddcd959af5ebb261b465
DIST dacite-1.8.1.gh.tar.gz 26038 BLAKE2B 53b859953221dd01a98976fcb1a8242bb99186c9fa4da04814eaad9232232a27da37fb8d80a91a3e875b1071c809c7f928b2eb0c165f5c4acef3ec9d4c64a94e SHA512 4b40c0bdcf5490bcc77de9e7f04b7267642bcfd41e4168607a5457f38abe3ad4b3041d8a23cb43af76de14eabee45f900ad5ddf7af8f70a2be4850bccc2d3af1
EBUILD dacite-1.6.0.ebuild 642 BLAKE2B 0c55bc633b09f79b913c1f4d7e36e0ade63e479944838f54f830541587bcf9e43ec869565a29b64733c9a815ceae5a5f9f6c4038a311c4312bd418f115368934 SHA512 d3805e2d8dd16f6328bd6e702f8e842c2c67573bf6247cf93f0809a021f85297e6b9431078e1dd17e32e41eb9b0b3acfc16b564daf2e896e2022bb21f855429a
EBUILD dacite-1.8.0.ebuild 642 BLAKE2B 0c55bc633b09f79b913c1f4d7e36e0ade63e479944838f54f830541587bcf9e43ec869565a29b64733c9a815ceae5a5f9f6c4038a311c4312bd418f115368934 SHA512 d3805e2d8dd16f6328bd6e702f8e842c2c67573bf6247cf93f0809a021f85297e6b9431078e1dd17e32e41eb9b0b3acfc16b564daf2e896e2022bb21f855429a
EBUILD dacite-1.8.1.ebuild 734 BLAKE2B 8d6f613cfe5f0d06fbce11082d56c9b8cb0f8dcfd0e01612b0eb898d4c9231c0360d89f65d5a2ab4cf1fdfe05d0692ea739963b7d6dc2e9cda0f0c31a5e17cbf SHA512 fb03271d6ea4765216d70d32c510b468e976c3b92f73e53c03bbb4ba5bcbc30e1a168d1db8c9c189873a33c98136aca810720c13163e30e394b25be6027e1012
MISC metadata.xml 514 BLAKE2B 95aca628e8288837027394b2bbe3bc1496a46f284e0b30006ee275ffa2a34490277501a95b820c08229d49801203eea2a593d26ff31c0c288a23dec71d2e0345 SHA512 84e4155b6aa279b265cea1e4371c9bd3d626ee2cd0346f956656936d6bfe4f4291e186c00430e875498a2a9c06213322e596437bc8b39c18c706eab5bfa33746

View File

@ -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
inherit distutils-r1 pypi
DESCRIPTION="Simple creation of data classes from dictionaries."
HOMEPAGE="https://github.com/konradhalas/dacite https://pypi.org/project/dacite/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest