dev-python/aenum: drop 3.1.11, 3.1.12

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 16:57:51 +01:00 committed by Andreas Billmeier
parent 3839110199
commit f717a69eff
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 2 additions and 66 deletions

View File

@ -612,14 +612,14 @@ 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 1763 Ebuilds in total, 1752 of them have in total 1776 (43 different) licenses assigned.
There are 1761 Ebuilds in total, 1750 of them have in total 1774 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1025|
|Apache-2.0|374|
|GPL-3|110|
|BSD|100|
|BSD|98|
|LGPL-3|24|
|GPL-2|23|
|all-rights-reserved|15|

View File

@ -1,7 +1,3 @@
DIST aenum-3.1.11.tar.gz 130979 BLAKE2B 9aa05da35a24a72512ad256051f7f7e9621349d081f529dd39e4c11552bde499f5d79083d3212eb9672fc436047d925a71b5d2862ec263c11028f24ea28ffcfd SHA512 8ec8336ccf805dd4ed57ced35e9e0f143bafea61cd9b3a465286b131e962225f8136595d94bcb1d709893106236d8b96de94aa860ffb256116b625bd9a43d78d
DIST aenum-3.1.12.tar.gz 131313 BLAKE2B 408dd36777cfdd4effc40db67ce1cb4539f4486da51ec99167bd4e01091045b4b2612ea603be8a2b091e573dee9812d008361fa69085d47e1bfc573b7c111dbe SHA512 6acec901f6a35c4447931b266da361bc20b52c7395216980b0bc178ce6c131a354a84f5ef6638ddb9e7b542a23f59dcb12709994d3852f57c15d7956f7c4376f
DIST aenum-3.1.15.tar.gz 134730 BLAKE2B e41cf946e5d4fd61d70ecacdab3e9eb45c9cf90b427e7d4a73ddf8dfc3098c41a66fe969e95f006da552cf39fcdfa68a2909d6c6a256537e3e06ca3deb39ad81 SHA512 3bee86fbe5e4dacf0109f3fb7e7eec069addea7dc8e4516be3eb643315e38d5eb3a23f347ac8c6bde65e294e4f237cc830109c30a5a6c1b3d9c85dc68067dbf3
EBUILD aenum-3.1.11.ebuild 651 BLAKE2B ce82976e69cc4d78625b8ddfbfeb7f90fc4ffc567071d8cd4d2f4b251527fdd6fe113af0a9aa770965955aaf319da062ab7bd8cf3ab586eb6555eec8ceec79b1 SHA512 d2d8a8e4bdba6a1abd361171e47d4c8ad03e4f5adf305ee7a12468bd68e7de63824836b1fbb6f0c8eac830c58fdaff99148aae93014329230a3c2a710d99085d
EBUILD aenum-3.1.12.ebuild 651 BLAKE2B ce82976e69cc4d78625b8ddfbfeb7f90fc4ffc567071d8cd4d2f4b251527fdd6fe113af0a9aa770965955aaf319da062ab7bd8cf3ab586eb6555eec8ceec79b1 SHA512 d2d8a8e4bdba6a1abd361171e47d4c8ad03e4f5adf305ee7a12468bd68e7de63824836b1fbb6f0c8eac830c58fdaff99148aae93014329230a3c2a710d99085d
EBUILD aenum-3.1.15.ebuild 651 BLAKE2B ce82976e69cc4d78625b8ddfbfeb7f90fc4ffc567071d8cd4d2f4b251527fdd6fe113af0a9aa770965955aaf319da062ab7bd8cf3ab586eb6555eec8ceec79b1 SHA512 d2d8a8e4bdba6a1abd361171e47d4c8ad03e4f5adf305ee7a12468bd68e7de63824836b1fbb6f0c8eac830c58fdaff99148aae93014329230a3c2a710d99085d
MISC metadata.xml 507 BLAKE2B bbe29823296a67b93e81a70a4701f42bd4bbf98a222eedc8f99faa2833b558e0f453ad7e52cf0717c50cfee36899d19f40e456c070c7b8657896c5ffb6d3776b SHA512 ce2cf14d4037741c992757a6ceb88d9272a3e23e61afefa55c389a62cdd6a8ac13d3328566792db4166599b9343f66ad7781910db156f98133a29d560c6e6132

View File

@ -1,30 +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="Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants"
HOMEPAGE="https://github.com/ethanfurman/aenum https://pypi.org/project/aenum/"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="aenum/doc/aenum.rst"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest

View File

@ -1,30 +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="Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants"
HOMEPAGE="https://github.com/ethanfurman/aenum https://pypi.org/project/aenum/"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="aenum/doc/aenum.rst"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest