dev-python/caldav: add 1.2.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-03-16 22:29:03 +01:00 committed by Andreas Billmeier
parent 22cb04d4dd
commit 6bbb467f25
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 45 additions and 3 deletions

View File

@ -576,13 +576,13 @@ 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 1816 Ebuilds in total, 1805 of them have in total 1820 (36 different) licenses assigned.
There are 1817 Ebuilds in total, 1806 of them have in total 1822 (36 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1058|
|Apache-2.0|396|
|GPL-3|114|
|Apache-2.0|397|
|GPL-3|115|
|BSD|96|
|LGPL-3|26|
|GPL-2|24|

View File

@ -1,3 +1,5 @@
DIST caldav-0.9.1.tar.gz 167811 BLAKE2B 340db92d70b76f5862e186b2a40cb33a593d5251801c34b41f26e9f3e26dcf68bd1b7bd933c7084eecda552f7dcd3c9dcb37deced65e43b42fe0aa899e59bd81 SHA512 db12b2880d4a50a2f5ae44a3f92eab210c805eb581e5e8f72a180b23edff48cf38b538e960483a56d7d22eb48c9bd33a6592d847c788f88c3da0cad314eb838a
DIST caldav-1.2.0.gh.tar.gz 122290 BLAKE2B 62e60695737298dae299aed6e73ed3570c51f5fd05d15f25fb34852e2ca97d6a3e700148f69b5a67f1fad0db8233426d0908f58d513602e8be171ebbb5fef1bb SHA512 56b329d1fcc9ef750e30721485825e067706280b48131816357df023b53e6631b6749e154d0db4815328588359cc98e996c35a0e93395f1cd58d4c36615f96e6
EBUILD caldav-0.9.1-r1.ebuild 1025 BLAKE2B 85ff0e60e5bef0204445fd147462198e9ea3a3a7b396d74b71b00800d0ee3213a9b58a363502fb8ad1cc0a46920ad0d58f183dadc7ade4f5e281165d9461e95a SHA512 18788ac29d926e146debb92c214e7fa135677b1787545c855190e1e7b6fd9328cb065def5e699bd40f67f3e9d62c08832300f2535da0f98e1a87012983e36bf2
EBUILD caldav-1.2.0.ebuild 897 BLAKE2B c6cdc1418d29e4c5db6a748ac08f01a5a297163a4abbff64b10bb5bf2081e5ef4abae5a7ca5292f9f4c0d4acf64ea317ee111e699a23aeec88534eca92be9de4 SHA512 a115dfb70549228d7a9478c0e44a67314a44b2f93d16a21106d3487d71228945aea6e80de9bd27cee2c1f85f797b1b6a56f3565ffdad5ee447c266cc15c10b94
MISC metadata.xml 508 BLAKE2B 18bd94caf8d8d41d5ccb36dfa92ce9097d86f8c41c337c3b033ecd4593939d9303b4affb826cbf80819ba9a7734476e52d02d12d020410eba8cb92fcb7c80f38 SHA512 b8c28c30dfabbc665715989fc1f7817d50f77b7257e0a6c30d8a2a1b31c2c92d47ca96a9e9a214e0c2f61b9e6898d1317c4f7c71d2eb133777814bc462d85a55

View File

@ -0,0 +1,40 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1
DESCRIPTION="CalDAV (RFC4791) client library for Python"
HOMEPAGE="
https://github.com/python-caldav/caldav/
https://pypi.org/project/caldav/
"
SRC_URI="
https://github.com/python-caldav/caldav/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="|| ( GPL-3 Apache-2.0 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-python/lxml[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/vobject[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/icalendar[${PYTHON_USEDEP}]
dev-python/recurring-ical-events[${PYTHON_USEDEP}]
dev-python/tzlocal[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
www-apps/radicale[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest