Skip to content

Commit 39fae68

Browse files
committed
dev-python/ical: add 6.1.0
Signed-off-by: Andreas Billmeier <[email protected]>
1 parent 91f2dd7 commit 39fae68

File tree

3 files changed

+38
-2
lines changed

3 files changed

+38
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -612,12 +612,12 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
612612

613613
## Licenses
614614
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.
615-
There are 1642 Ebuilds in total, 1631 of them have in total 1651 (43 different) licenses assigned.
615+
There are 1644 Ebuilds in total, 1633 of them have in total 1653 (43 different) licenses assigned.
616616

617617
|License| Ebuilds using it|
618618
|-------|-----|
619619
|MIT|956|
620-
|Apache-2.0|338|
620+
|Apache-2.0|340|
621621
|GPL-3|95|
622622
|BSD|95|
623623
|GPL-2|27|

dev-python/ical/Manifest

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
DIST ical-5.0.1.tar.gz 68376 BLAKE2B dce20888b0c1d06134d71d21620028a95cd5416c2ba984b3f1fc561c09b77999b060fe2fc67eff9f16e8c18b2d0df993dc11fb155b5870afc97bea24581beff2 SHA512 c4d6e17b009682f690a2b6aa24c82f7a1bc04c542bab679c2ba4ffe82b61ca32d04bcb915182abaead6a5b47e61b8ab360731a94a1073be0b6c3be428453ebfd
22
DIST ical-5.1.0.tar.gz 69259 BLAKE2B 29ba6dc6f42d501710cf6dcb0752a05cc5d76e541106cafb20816a610608e83d06ea20e9f645f395db00dc96a76b3de41b6d323043d53f495e5d3b69864f449d SHA512 cfe0aded359f5ff27f4e9279b9ac589671d846363451966a189e4facf636e76d94020e8d4281f57ba44ef9081113de1aa5ef8efb5ad4b4bd67b6c03ee971acce
3+
DIST ical-6.1.0.tar.gz 104439 BLAKE2B 8e8d525ea821b10699f35aa7d14fe848198d0e19c96f308de3ce6b5367ce055f6233214621fb9855c0588faa8cca1dbeb78043913a6ae56ab8b5c17de79bf5b8 SHA512 42f4d3ec7089ee28fadfef039c5a9fff18bbe802cebff78644fa7bc4f6620823f554d1c915c3ad003d70bb056642f694f084cc7156cf7a66f9f527a36b4450ad
34
EBUILD ical-5.0.1.ebuild 843 BLAKE2B 4900e1ed16b2aa5e87926aac04ada021fa90d2df50a9e51061c3d1c242800c4201da067b213e5805171ca5001a9c50a529a251e0b4a091acc4020e3c9993996b SHA512 e9446ec679ce0dc7d22feba3680e6b1b23f0b1bb550b52f798b0cc693fd2711a9f9f46fe2b2711e031208203cfae3c8c5ef80051db30980f5cbf66465b42b28b
45
EBUILD ical-5.1.0.ebuild 843 BLAKE2B 4900e1ed16b2aa5e87926aac04ada021fa90d2df50a9e51061c3d1c242800c4201da067b213e5805171ca5001a9c50a529a251e0b4a091acc4020e3c9993996b SHA512 e9446ec679ce0dc7d22feba3680e6b1b23f0b1bb550b52f798b0cc693fd2711a9f9f46fe2b2711e031208203cfae3c8c5ef80051db30980f5cbf66465b42b28b
6+
EBUILD ical-6.1.0.ebuild 799 BLAKE2B d4cb1dd8b8fe838e8a5335e9343bd53b0a9059259c878cc21916580c8f7bb829404363a4b168e5455c8267bedcca6a48faff5b856faac42ccf7d39cd071367ff SHA512 4ceaae6ef6de923ed5ed97b2768dfcbc859631f99595ad8fb09494581837a936c015f4c2e6f634467d961973a956bef7e7d6b6ddf75ccb0eed1abc9ebe984f0f
57
MISC metadata.xml 509 BLAKE2B d7c0238fb4d0ede41b268244ff51750973fac0c0a680c41e77d8402701c1a8da7d54e13a9b43a971e2688cc403906d8903d92a689b89b6fe52a0fd4878c30848 SHA512 1e4ad6da4851dcdbbc32c260df0b9062310e37c0abc249ccfeb20b02084d577f96c6c904a94b5aa6e2e270015246c53b374edc559b3f314c86f114add5b38c2f

dev-python/ical/ical-6.1.0.ebuild

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Copyright 1999-2023 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
PYTHON_COMPAT=( python3_{10..12} )
7+
DISTUTILS_USE_PEP517=setuptools
8+
inherit distutils-r1 pypi
9+
10+
DESCRIPTION="Python iCalendar implementation (rfc 2445)"
11+
HOMEPAGE="https://github.com/allenporter/ical https://pypi.org/project/ical/"
12+
13+
LICENSE="Apache-2.0"
14+
SLOT="0"
15+
KEYWORDS="amd64 arm arm64 x86"
16+
IUSE="test"
17+
RESTRICT="!test? ( test )"
18+
19+
DOCS="README.md"
20+
21+
RDEPEND=">=dev-python/python-dateutil-2.8.2[${PYTHON_USEDEP}]
22+
>=dev-python/tzdata-2023.3[${PYTHON_USEDEP}]
23+
>=dev-python/pydantic-1.9.1[${PYTHON_USEDEP}]
24+
>=dev-python/pyparsing-3.0.9[${PYTHON_USEDEP}]"
25+
BDEPEND="
26+
test? (
27+
dev-python/pytest[${PYTHON_USEDEP}]
28+
)"
29+
30+
python_test() {
31+
py.test -v -v || die
32+
}
33+
34+
distutils_enable_tests pytest

0 commit comments

Comments
 (0)