pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/time/py-icalendar Updated py-icalendar to 3.10.
details: https://anonhg.NetBSD.org/pkgsrc/rev/846de30c9901
branches: trunk
changeset: 350477:846de30c9901
user: wiz <wiz%pkgsrc.org@localhost>
date: Thu Jul 28 13:58:45 2016 +0000
description:
Updated py-icalendar to 3.10.
3.10 (2016-05-26)
-----------------
New:
- Updated components description to better comply with RFC 5545.
Refs #183.
[stlaz]
- Added PERIOD value type to date types.
Also fixes incompatibilities described in #184.
Refs #189.
[stlaz]
Fixes:
- Fix testsuite for use with ``dateutil>=2.5``.
Refs #195.
[untitaker]
- Reintroduce cal.Component.is_broken that was removed with 3.9.2.
Refs #185.
[geier]
3.9.2 (2016-02-05)
------------------
New:
- Defined ``test_suite`` in setup.py.
Now tests can be run via ``python setup.py test``.
[geier]
Fixes:
- Fixed cal.Component.from_ical() representing an unknown component as one of the known.
[stlaz]
- Fixed possible IndexError exception during parsing of an ical string.
[stlaz]
- When doing a boolean test on ``icalendar.cal.Component``, always return ``True``.
Before it was returning ``False`` due to CaselessDict, if it didn't contain any items.
[stlaz]
- Fixed date-time being recognized as date or time during parsing.
Added better error handling to parsing from ical strings.
[stlaz]
- Added __version__ attribute to init.py.
[TomTry]
- Documentation fixes.
[TomTry]
- Pep 8, UTF 8 headers, dict/list calls to literals.
[thet]
3.9.1 (2015-09-08)
------------------
- Fix ``vPeriod.__repr__``.
[spacekpe]
- Improve foldline() performance. This improves the foldline performance,
especially for large strings like base64-encoded inline attachements. In some
cases (1MB string) from 7 Minutes to less than 20ms for ASCII data and 500ms
for non-ASCII data. Ref: #163.
[emfree]
3.9.0 (2015-03-24)
------------------
- Creating timezone objects from VTIMEZONE components.
[geier]
- Make ``python-dateutil`` a dependency.
[geier]
- Made RRULE tolerant of trailing semicolons.
[sleeper]
- Documentation fixes.
[t-8ch, thet]
3.8.4 (2014-11-01)
------------------
- Add missing BYWEEKNO to recurrence rules.
[russkel]
diffstat:
time/py-icalendar/Makefile | 4 ++--
time/py-icalendar/PLIST | 7 ++++++-
time/py-icalendar/distinfo | 10 +++++-----
3 files changed, 13 insertions(+), 8 deletions(-)
diffs (59 lines):
diff -r a773714897ac -r 846de30c9901 time/py-icalendar/Makefile
--- a/time/py-icalendar/Makefile Thu Jul 28 13:33:45 2016 +0000
+++ b/time/py-icalendar/Makefile Thu Jul 28 13:58:45 2016 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.22 2016/06/08 17:43:43 wiz Exp $
+# $NetBSD: Makefile,v 1.23 2016/07/28 13:58:45 wiz Exp $
-DISTNAME= icalendar-3.8.3
+DISTNAME= icalendar-3.10
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= time python
MASTER_SITES= ${MASTER_SITE_PYPI:=i/icalendar/}
diff -r a773714897ac -r 846de30c9901 time/py-icalendar/PLIST
--- a/time/py-icalendar/PLIST Thu Jul 28 13:33:45 2016 +0000
+++ b/time/py-icalendar/PLIST Thu Jul 28 13:58:45 2016 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2014/06/09 12:29:23 wiz Exp $
+@comment $NetBSD: PLIST,v 1.11 2016/07/28 13:58:45 wiz Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -29,10 +29,12 @@
${PYSITELIB}/icalendar/tests/__init__.py
${PYSITELIB}/icalendar/tests/__init__.pyc
${PYSITELIB}/icalendar/tests/__init__.pyo
+${PYSITELIB}/icalendar/tests/america_new_york.ics
${PYSITELIB}/icalendar/tests/encoding.ics
${PYSITELIB}/icalendar/tests/issue_112_missing_tzinfo_on_exdate.ics
${PYSITELIB}/icalendar/tests/issue_53_parsing_failure.ics
${PYSITELIB}/icalendar/tests/multiple.ics
+${PYSITELIB}/icalendar/tests/pacific_fiji.ics
${PYSITELIB}/icalendar/tests/recurrence.ics
${PYSITELIB}/icalendar/tests/test_encoding.py
${PYSITELIB}/icalendar/tests/test_encoding.pyc
@@ -75,6 +77,9 @@
${PYSITELIB}/icalendar/tests/test_unit_tools.pyo
${PYSITELIB}/icalendar/tests/time.ics
${PYSITELIB}/icalendar/tests/timezoned.ics
+${PYSITELIB}/icalendar/timezone_cache.py
+${PYSITELIB}/icalendar/timezone_cache.pyc
+${PYSITELIB}/icalendar/timezone_cache.pyo
${PYSITELIB}/icalendar/tools.py
${PYSITELIB}/icalendar/tools.pyc
${PYSITELIB}/icalendar/tools.pyo
diff -r a773714897ac -r 846de30c9901 time/py-icalendar/distinfo
--- a/time/py-icalendar/distinfo Thu Jul 28 13:33:45 2016 +0000
+++ b/time/py-icalendar/distinfo Thu Jul 28 13:58:45 2016 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.15 2015/11/02 23:31:43 agc Exp $
+$NetBSD: distinfo,v 1.16 2016/07/28 13:58:45 wiz Exp $
-SHA1 (icalendar-3.8.3.tar.gz) = 28efe876d745f7f4e9b34617929bf6ece0479e44
-RMD160 (icalendar-3.8.3.tar.gz) = b71f8970322d315756129a18e3c1f5001322894c
-SHA512 (icalendar-3.8.3.tar.gz) = 7f84af60a141a2c975b98879a159b1a7ba0b1248384ac9898b6451e91b12310a62db1fa0b1ed9bfea629594ee81a4914a8d10babb33710b1c9d01f9760366bbb
-Size (icalendar-3.8.3.tar.gz) = 64885 bytes
+SHA1 (icalendar-3.10.tar.gz) = a03dbe2fb1707a5c9246f611e24241f586ef2b7e
+RMD160 (icalendar-3.10.tar.gz) = e00282bda7fa3f899b858cee910462d58b2daab8
+SHA512 (icalendar-3.10.tar.gz) = 363441cde889f5f768e28e0cdf9340d0e1fe16e52a421c4643b8e880cb477b418c12a14853f27605a1cd621ae127e01c5d33795d91bb98b0e8cd4e84c7de9540
+Size (icalendar-3.10.tar.gz) = 67615 bytes
Home |
Main Index |
Thread Index |
Old Index