dev-python/gcal-sync: add 2.2.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2022-10-30 15:39:40 +01:00 committed by Andreas Billmeier
parent e27fc094ae
commit eb45a18ec5
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 37 additions and 15 deletions

View File

@ -1,4 +1,5 @@
AUX gcal-sync-0.6.2-no_tests.patch 249 BLAKE2B ab47beaa7628c25ca7cdca35e71acb40bf034e944c035a48eab4e07692081df0a5db50e8d63424d0783cf87311eddf485c1b49dd0a6e42d623cc63326bcc9d76 SHA512 df05480ff9d61d80fbaa00e33361b6b3ace619dbb10b18c5f58318add1f3d085748d6f356241fe7e1a3f097ba7b258997396dfb679cf69555753c72d86fe010e
DIST gcal-sync-0.10.0.tar.gz 12954 BLAKE2B 68cbbc72ee886b51efd32d14d4eef4ce2b4b32e43250c66864fe860898e828aa044f01c43b3f5a790b611021c4c2ba13b8a63216653e2b64c06c1d83bce2f36a SHA512 8c7b50f56ba37a2e87e96db6e313b800c895dbc36a42cdb976c5dfc4fb2e962cab061bc9143d9c6c91582fd0aefe0c18aeb7c244b712b82b9bbb767abaf18870
DIST gcal-sync-2.2.0.tar.gz 20096 BLAKE2B 9b21b758e60c602fcb8bd1664f67c878a70de5b6cae449699b026dbd515b44de88d782c8066854d954ddb5d06ed8a1f80f0e0c550d653e2e909b6bdd8410bd66 SHA512 f94d0e4ee2e562fd5d2b1a9ce02043b4fc0e31b00f44f02accbfea6911fa7ba0c27a9ba714f034549b20431642eea268b3f49b6fde821bc557b4eb32b7537abb
EBUILD gcal-sync-0.10.0.ebuild 805 BLAKE2B 63e141c4ff5d577a4e93f5158fa61bb98908d5f05a3c11768aed419d100ec9bf222589d85144a29d8214e0ac4daee08b0bd2395f4fa10b95c9dc58c4165b46fb SHA512 fe4eae845608791d6189f0d3e9173c2e2d93d40f26af23969641c87f70e4762c6e8f77a9bd9e7c8936160ce0f24e7fe360d213c545d470618b452abc07504c99
EBUILD gcal-sync-2.2.0.ebuild 850 BLAKE2B 7987dd4e80a8ed8e14b9258bebda3d151ce67232b968abd2019b3872bc2629a0e5088180cb21662a33128649428a622f5646fc02db5d175d7702374d452c5f0a SHA512 9f56fbebac203810f7813bcc2505fae1cb2c6e7a36ea1d9563fa4204b680a99ce272c33db20c84327b4f3cfda28bb577db170ce9b7b38aa8506971e25debfbcd
MISC metadata.xml 456 BLAKE2B 97548d03bdc6f85564c422b931e9aa866b294452099d7bf28033c1f585ffb4b2f07dacd2dd6a988a43b0f4420fd788c512a356115b57610f32ee08bcef18b5fb SHA512 70b0aaee2afd83ebc03237fcf868d3f80e2da6b828dda8ecdb2288dad8bce3b97d58d048dfcef6fe62a56bba2f959e5ce2985fb89d4b9cc7419e122aaeee9f4f

View File

@ -1,14 +0,0 @@
diff --git a/setup.cfg b/setup.cfg
index 0055f5d..0ad5e10 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -24,6 +24,9 @@ package_dir =
[options.packages.find]
where = .
+exclude =
+ tests
+ tests.*
[options.package_data]
rtsp_to_webrtc = py.typed

View File

@ -0,0 +1,35 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="A python library for syncing Google Calendar to local storage for use in Home Assistant"
HOMEPAGE="https://github.com/allenporter/gcal_sync https://pypi.org/project/gcal-sync/"
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/aiohttp-3.8.1[${PYTHON_USEDEP}]
>=dev-python/pydantic-1.9.0[${PYTHON_USEDEP}]
>=dev-python/ical-4.1.0[${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