dev-python/ical: bump 4.1.1, PEP517

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2022-11-08 21:25:00 +01:00
committed by onkelbeh
parent b8c061ef5c
commit b7079eabbc
4 changed files with 43 additions and 3 deletions
+2 -2
View File
@@ -573,12 +573,12 @@ 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 1530 Ebuilds in total, 1523 of them have in total 1531 (34 different) licenses assigned.
There are 1531 Ebuilds in total, 1524 of them have in total 1532 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|888|
|Apache-2.0|314|
|Apache-2.0|315|
|GPL-3|96|
|BSD|90|
|LGPL-3|23|
+3 -1
View File
@@ -1,3 +1,5 @@
DIST ical-4.1.0.tar.gz 49663 BLAKE2B 6c0b69e58840ad17dcc3bf4c77df224e1c7b5af1dd9510d1c685dc8d46489fac293aa9f3fa605e8e2820bd745d7052643bee8e87980646aa553a402ad216e8a2 SHA512 a474431a16df288edf5a53b60d545738ae9ad0a05fb8d2e43985722fe0f98a242aba2628dcd2cef7f129b0da1454596233a1be54c54222adb57224a58a36c015
EBUILD ical-4.1.0.ebuild 854 BLAKE2B a2439fb30d331f0f7636690e0cd513c05bd0d1365f06aa77e2d25802b940ad370df84b2d32e57b9497502c0f1ac58dbe67135caa62ca3081daeda5ce613caf38 SHA512 769208f4311fa95fcca25f9d18ae2ec3498ee463fc61167cfa12a90ea97b67adc41a52a4c4913128a3d1b7451da9d2c02d87a863a14bfc479a04c2f56363a14f
DIST ical-4.1.1.tar.gz 49731 BLAKE2B 5102cb9a559c0d41b7a782c26a0ee209e25a64339d49eb7fd51484cb58dc48a1c62049a2fae88894fcec25d0511bedee615d67369b5ded178c6545c3811107d1 SHA512 4fdfc0f5e62e8629424e119b230bca575b908ff7b8ae66e64ea4a49a2fd587787c3ef2e59ce68deabd32c11a015f3ce476abd4462285a530da3a2d2634cd146f
EBUILD ical-4.1.0.ebuild 886 BLAKE2B e17441162214719c8a37e9c5b4d6b7c266eefcb9647580764118d98542ef97a1f405263b0dc5e1505d9f4c254d6ce3f928b77ee34ced4997764d23b7875fc251 SHA512 7b4dc4072d5ebe98d54a1db1686350197983cf29f2e4cf0daf59ac448670c5e2f883c336de73f86129908c5dc0a6c6ae5b78002d669bf402c0d1a33f9f6cbc86
EBUILD ical-4.1.1.ebuild 886 BLAKE2B e17441162214719c8a37e9c5b4d6b7c266eefcb9647580764118d98542ef97a1f405263b0dc5e1505d9f4c254d6ce3f928b77ee34ced4997764d23b7875fc251 SHA512 7b4dc4072d5ebe98d54a1db1686350197983cf29f2e4cf0daf59ac448670c5e2f883c336de73f86129908c5dc0a6c6ae5b78002d669bf402c0d1a33f9f6cbc86
MISC metadata.xml 451 BLAKE2B 5de6ffc492edba6fe45c28d61c854def4f4c4b26e57d90cfc3bd7089cc3306e748326760b8e9eff21704351cbf2bf3efa30688adc6b75dcefbb840c77dfa90ca SHA512 6ecfe9fea2679208ee88ca673ed6421d71f6425408a1b7db1105a82d508535ff3dd7916dfe5a8e02e608b383581769d3977a8f089e36a2143e614b5c6b33902b
+1
View File
@@ -4,6 +4,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
+37
View File
@@ -0,0 +1,37 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Python iCalendar implementation (rfc 2445)"
HOMEPAGE="https://github.com/allenporter/ical https://pypi.org/project/ical/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/python-dateutil-2.8.2[${PYTHON_USEDEP}]
>=dev-python/tzdata-2022.1[${PYTHON_USEDEP}]
>=dev-python/pydantic-1.9.1[${PYTHON_USEDEP}]
>=dev-python/pyparsing-3.0.9[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest