Accepting request 687583 from home:pgajdos
- version update to 0.6.0 * caldav/elements/cdav.py - proper timezone support * caldav/elements/dav.py - add GetEtag * caldav/elements/cdav.py - allow Expand tag to be used with open-ended start * caldav/objects.py - enhancement: add the ability to add events to calendar using directly a vobject object, and not necessarily an ical string. * caldav/objects.py - bugfix: uid handling while fetching elements etc. see https://github.com/python-caldav/caldav/blob/master/ChangeLog - almost all tests are online, do not run OBS-URL: https://build.opensuse.org/request/show/687583 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-caldav?expand=0&rev=10
This commit is contained in:
parent
c686b64632
commit
c28b3364c9
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:c71d922906259fef96e85142d8fb495e395e7851a176e816eabef1d88e0437ad
|
|
||||||
size 43932
|
|
3
caldav-0.6.0.tar.gz
Normal file
3
caldav-0.6.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:3fabc9483e5df8ec1c87d2b2f46f784689d8aeb26e67880aeadd83c2ae9d89d2
|
||||||
|
size 33946
|
@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 22 10:55:32 UTC 2019 - pgajdos@suse.com
|
||||||
|
|
||||||
|
- version update to 0.6.0
|
||||||
|
* caldav/elements/cdav.py - proper timezone support
|
||||||
|
* caldav/elements/dav.py - add GetEtag
|
||||||
|
* caldav/elements/cdav.py - allow Expand tag to be used with open-ended
|
||||||
|
start
|
||||||
|
* caldav/objects.py - enhancement: add the ability to add events to
|
||||||
|
calendar using directly a vobject object, and not necessarily an ical
|
||||||
|
string.
|
||||||
|
* caldav/objects.py - bugfix: uid handling while fetching
|
||||||
|
elements
|
||||||
|
etc. see https://github.com/python-caldav/caldav/blob/master/ChangeLog
|
||||||
|
- almost all tests are online, do not run
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 4 12:46:27 UTC 2018 - Matej Cepl <mcepl@suse.com>
|
Tue Dec 4 12:46:27 UTC 2018 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python
|
# spec file for package python
|
||||||
#
|
#
|
||||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,7 +19,7 @@
|
|||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
%global modname caldav
|
%global modname caldav
|
||||||
Name: python-%{modname}
|
Name: python-%{modname}
|
||||||
Version: 0.5.0
|
Version: 0.6.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: CalDAV (RFC4791) client library for Python
|
Summary: CalDAV (RFC4791) client library for Python
|
||||||
License: GPL-3.0-or-later AND Apache-2.0
|
License: GPL-3.0-or-later AND Apache-2.0
|
||||||
@ -35,8 +35,10 @@ BuildRequires: %{python_module vobject}
|
|||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-lxml
|
Requires: python-lxml
|
||||||
Requires: python-nose
|
Requires: python-nose
|
||||||
|
Requires: python-pytz
|
||||||
Requires: python-requests
|
Requires: python-requests
|
||||||
Requires: python-six
|
Requires: python-six
|
||||||
|
Requires: python-tzlocal
|
||||||
Requires: python-vobject
|
Requires: python-vobject
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
@ -53,12 +55,13 @@ events, modify events and properties).
|
|||||||
%build
|
%build
|
||||||
%python_build
|
%python_build
|
||||||
|
|
||||||
|
%check
|
||||||
|
# almost all tests are online, would require
|
||||||
|
# caldav server to run
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%python_install
|
||||||
|
|
||||||
# Remove test files
|
|
||||||
%python_expand rm -rf %{buildroot}%{$python_sitelib}/tests/
|
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%license COPYING.APACHE COPYING.GPL
|
%license COPYING.APACHE COPYING.GPL
|
||||||
%{python_sitelib}/%{modname}-%{version}-py*.egg-info
|
%{python_sitelib}/%{modname}-%{version}-py*.egg-info
|
||||||
|
Loading…
Reference in New Issue
Block a user