forked from pool/python-caldav
Accepting request 906345 from home:jacraig:branches:devel:languages:python
- Update to 0.8.0 * Support for WebDAV sync-tokens * Work on support for RFC6635, scheduling/RVSP (partially done) * Improved support for iCloud, Google * Calendar API improvements * Improvement of the documentation, examples and inline docstrings and comments * Bugfixes - Use fdupes to remove duplicate files. - Remove shebangs from various non-executable Python files. OBS-URL: https://build.opensuse.org/request/show/906345 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-caldav?expand=0&rev=18
This commit is contained in:
parent
d842fc498a
commit
150c7ac6e0
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:55173d7efa4856c4183bd2dab4195c6a2760a590b07e16245a6deec0e71a5666
|
||||
size 118233
|
3
caldav-0.8.0.tar.gz
Normal file
3
caldav-0.8.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5b40dc2b39950e78989d515ce6a2c1131f20cc2c413ba28f8d5b582546b40a4c
|
||||
size 152602
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 12 23:22:46 UTC 2021 - Jason Craig <os@jacraig.com>
|
||||
|
||||
- Update to 0.8.0
|
||||
* Support for WebDAV sync-tokens
|
||||
* Work on support for RFC6635, scheduling/RVSP (partially done)
|
||||
* Improved support for iCloud, Google
|
||||
* Calendar API improvements
|
||||
* Improvement of the documentation, examples and inline
|
||||
docstrings and comments
|
||||
* Bugfixes
|
||||
- Use fdupes to remove duplicate files.
|
||||
- Remove shebangs from various non-executable Python files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 15 06:29:32 UTC 2020 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-caldav
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -19,10 +19,10 @@
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
%global modname caldav
|
||||
Name: python-%{modname}
|
||||
Version: 0.7.1
|
||||
Version: 0.8.0
|
||||
Release: 0
|
||||
Summary: CalDAV (RFC4791) client library for Python
|
||||
License: GPL-3.0-or-later AND Apache-2.0
|
||||
License: Apache-2.0 AND GPL-3.0-or-later
|
||||
Group: Development/Languages/Python
|
||||
URL: https://pypi.python.org/pypi/%{modname}
|
||||
Source: https://files.pythonhosted.org/packages/source/c/caldav/%{modname}-%{version}.tar.gz
|
||||
@ -31,6 +31,7 @@ BuildRequires: %{python_module requests}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module six}
|
||||
BuildRequires: %{python_module vobject}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-lxml
|
||||
Requires: python-requests
|
||||
@ -51,6 +52,8 @@ events, modify events and properties).
|
||||
|
||||
%prep
|
||||
%setup -q -n %{modname}-%{version}
|
||||
# Remove shebangs
|
||||
find caldav -name "*.py" | xargs sed -i '1 {/^#!/d}'
|
||||
|
||||
%build
|
||||
%python_build
|
||||
@ -61,6 +64,7 @@ events, modify events and properties).
|
||||
|
||||
%install
|
||||
%python_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%files %{python_files}
|
||||
%license COPYING.APACHE COPYING.GPL
|
||||
|
Loading…
Reference in New Issue
Block a user