From db344a11b0ef8d24fa740bcac8ddf92c323ff39ebceec74c66a7f90441bcdddc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Fri, 24 Jan 2020 11:47:04 +0000 Subject: [PATCH] Accepting request 766779 from home:mcalabkova:branches:devel:languages:python - update to 0.6.2 * caldav/lib/error.py - ProppatchError was not defined, ref https://github.com/python-caldav/caldav/issues/54. Also added a common base class DAVError, and made sure the error referenced in #54 will never reappear, even if new methods are added to DAVClient. * caldav/elements/cdav.py - fixing a retention problem - the timezone fixes done recently was not compatible with python 2.7 nor 3.5. * setup.py - reintroducing dependencies pytz and tzlocal - but only for old python versions * README.md - proper documentation of the dual licensing, ref https://github.com/python-caldav/caldav/issues/60 * caldav/objects.py - fixes (or workarounds?) that solves real-world issues with iCloud and MS Exchange. Ref https://github.com/python-caldav/caldav/pull/56 OBS-URL: https://build.opensuse.org/request/show/766779 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-caldav?expand=0&rev=14 --- caldav-0.6.1.tar.gz | 3 --- caldav-0.6.2.tar.gz | 3 +++ python-caldav.changes | 16 ++++++++++++++++ python-caldav.spec | 12 +++++++----- 4 files changed, 26 insertions(+), 8 deletions(-) delete mode 100644 caldav-0.6.1.tar.gz create mode 100644 caldav-0.6.2.tar.gz diff --git a/caldav-0.6.1.tar.gz b/caldav-0.6.1.tar.gz deleted file mode 100644 index 15ff8fd..0000000 --- a/caldav-0.6.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:eddb7f4e6a3eb5f02eaa2227817a53ac4372d4c4d51876536f4c6f00282f569e -size 70380 diff --git a/caldav-0.6.2.tar.gz b/caldav-0.6.2.tar.gz new file mode 100644 index 0000000..cceda0f --- /dev/null +++ b/caldav-0.6.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80c33b143539da3a471148ac89512f67d9df3a5286fae5a023e2ad3923246c0d +size 58280 diff --git a/python-caldav.changes b/python-caldav.changes index d502707..fe733d8 100644 --- a/python-caldav.changes +++ b/python-caldav.changes @@ -1,3 +1,19 @@ +------------------------------------------------------------------- +Fri Jan 24 09:52:25 UTC 2020 - Marketa Calabkova + +- update to 0.6.2 + * caldav/lib/error.py - ProppatchError was not defined, ref https://github.com/python-caldav/caldav/issues/54. + Also added a common base class DAVError, and made sure the error + referenced in #54 will never reappear, even if new methods are + added to DAVClient. + * caldav/elements/cdav.py - fixing a retention problem - the + timezone fixes done recently was not compatible with python 2.7 nor 3.5. + * setup.py - reintroducing dependencies pytz and tzlocal - but only for old python versions + * README.md - proper documentation of the dual licensing, ref + https://github.com/python-caldav/caldav/issues/60 + * caldav/objects.py - fixes (or workarounds?) that solves real-world + issues with iCloud and MS Exchange. Ref https://github.com/python-caldav/caldav/pull/56 + ------------------------------------------------------------------- Thu Apr 25 06:44:50 UTC 2019 - Adrian Schröter diff --git a/python-caldav.spec b/python-caldav.spec index b734efa..32dca7f 100644 --- a/python-caldav.spec +++ b/python-caldav.spec @@ -1,7 +1,7 @@ # -# spec file for package python +# spec file for package python-caldav # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %global modname caldav Name: python-%{modname} -Version: 0.6.1 +Version: 0.6.2 Release: 0 Summary: CalDAV (RFC4791) client library for Python License: GPL-3.0-or-later AND Apache-2.0 @@ -35,12 +35,14 @@ BuildRequires: %{python_module vobject} BuildRequires: python-rpm-macros Requires: python-lxml Requires: python-nose -Requires: python-pytz Requires: python-requests Requires: python-six -Requires: python-tzlocal Requires: python-vobject BuildArch: noarch +%ifpython2 +Requires: python-pytz +Requires: python-tzlocal +%endif %python_subpackages %description