forked from pool/python-vobject
Accepting request 651601 from home:frispete:python
- update to version 0.9.6.1:
* Revert too-strict serialization of timestamp values
- broke too many other implementations
- update to version 0.9.6:
* Correctly order calendar properties before calendar components
(#98)
* Pass correct formatting string to logger (#102)
- thanks @CruzR!
* RRULE: Fix floating UNTIL with dateutil > 2.6.1 (#115)
- thanks @Unrud!
* Encode params if necessary in serialization (#109)
- thanks @matthias-k!
* Ignore escaped semi-colons in UNTIL value (#114)
- thanks @Unrud!
* RRULE: Fix VTODO without DTSTART (#116)
- thanks @Unrud!
* Fixed regexp for VCF Version 2.1 (#121)
- thanks @farmovit!
* repr changed for datetime.timedelta in python 3.7 (#122)
- thanks @sharkcz!
- enable testing
OBS-URL: https://build.opensuse.org/request/show/651601
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-vobject?expand=0&rev=7
This commit is contained in:
@@ -1,16 +1,30 @@
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 23 12:16:58 UTC 2018 - mvetter@suse.com
|
Tue Nov 20 21:23:56 UTC 2018 - Hans-Peter Jansen <hpj@urpla.net>
|
||||||
|
|
||||||
- Update to 0.9.6:
|
- update to version 0.9.6.1:
|
||||||
* Correctly order calendar properties before calendar components (#98)
|
* Revert too-strict serialization of timestamp values
|
||||||
|
- broke too many other implementations
|
||||||
|
|
||||||
|
- update to version 0.9.6:
|
||||||
|
* Correctly order calendar properties before calendar components
|
||||||
|
(#98)
|
||||||
* Correctly serialize timestamp values (i.e. REV) (#99)
|
* Correctly serialize timestamp values (i.e. REV) (#99)
|
||||||
* Pass correct formatting string to logger (#102) - thanks @CruzR!
|
* Pass correct formatting string to logger (#102)
|
||||||
* RRULE: Fix floating UNTIL with dateutil > 2.6.1 (#115) - thanks @Unrud!
|
- thanks @CruzR!
|
||||||
* Encode params if necessary in serialization (#109) - thanks @matthias-k!
|
* RRULE: Fix floating UNTIL with dateutil > 2.6.1 (#115)
|
||||||
* Ignore escaped semi-colons in UNTIL value (#114) - thanks @Unrud!
|
- thanks @Unrud!
|
||||||
* RRULE: Fix VTODO without DTSTART (#116) - thanks @Unrud!
|
* Encode params if necessary in serialization (#109)
|
||||||
* Fixed regexp for VCF Version 2.1 (#121) - thanks @farmovit!
|
- thanks @matthias-k!
|
||||||
* repr changed for datetime.timedelta in python 3.7 (#122) - thanks @sharkcz!
|
* Ignore escaped semi-colons in UNTIL value (#114)
|
||||||
|
- thanks @Unrud!
|
||||||
|
* RRULE: Fix VTODO without DTSTART (#116)
|
||||||
|
- thanks @Unrud!
|
||||||
|
* Fixed regexp for VCF Version 2.1 (#121)
|
||||||
|
- thanks @farmovit!
|
||||||
|
* repr changed for datetime.timedelta in python 3.7 (#122)
|
||||||
|
- thanks @sharkcz!
|
||||||
|
|
||||||
|
- enable testing
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Aug 3 20:00:25 UTC 2017 - benoit.monin@gmx.fr
|
Thu Aug 3 20:00:25 UTC 2017 - benoit.monin@gmx.fr
|
||||||
|
|||||||
@@ -12,14 +12,16 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
|
%bcond_without test
|
||||||
|
|
||||||
Name: python-vobject
|
Name: python-vobject
|
||||||
%global modname vobject
|
%global modname vobject
|
||||||
Version: 0.9.6
|
Version: 0.9.6.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python package for parsing and creating iCalendar and vCard files
|
Summary: Python package for parsing and creating iCalendar and vCard files
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@@ -64,6 +66,11 @@ for p in change_tz ics_diff ; do
|
|||||||
done
|
done
|
||||||
%fdupes %{buildroot}%{_prefix}
|
%fdupes %{buildroot}%{_prefix}
|
||||||
|
|
||||||
|
%if %{with test}
|
||||||
|
%check
|
||||||
|
%python_exec tests.py
|
||||||
|
%endif
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%python_install_alternative change_tz
|
%python_install_alternative change_tz
|
||||||
%python_install_alternative ics_diff
|
%python_install_alternative ics_diff
|
||||||
@@ -74,7 +81,8 @@ done
|
|||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc ACKNOWLEDGEMENTS.txt LICENSE-2.0.txt README.md
|
%license LICENSE-2.0.txt
|
||||||
|
%doc ACKNOWLEDGEMENTS.txt README.md
|
||||||
%python_alternative %{_bindir}/change_tz
|
%python_alternative %{_bindir}/change_tz
|
||||||
%python_alternative %{_bindir}/ics_diff
|
%python_alternative %{_bindir}/ics_diff
|
||||||
%{python_sitelib}/%{modname}/
|
%{python_sitelib}/%{modname}/
|
||||||
|
|||||||
3
vobject-0.9.6.1.tar.gz
Normal file
3
vobject-0.9.6.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:96512aec74b90abb71f6b53898dd7fe47300cc940104c4f79148f0671f790101
|
||||||
|
size 58556
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:cd9ede4363f83c06ba8d8f1541c736efa5c46f9a431430002b2f84f4f4e674d8
|
|
||||||
size 58669
|
|
||||||
Reference in New Issue
Block a user