summaryrefslogtreecommitdiff
path: root/time
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2012-09-13 20:12:16 +0000
committerwiz <wiz@pkgsrc.org>2012-09-13 20:12:16 +0000
commit3df006dd4f0df40af3c4b57b3cd180a76109fee3 (patch)
treeebd6a15885568e52eac3177d04b9c845e9f9c47d /time
parenta4f815c2729c966ae5cdc1187e6aad48cd646f2f (diff)
downloadpkgsrc-3df006dd4f0df40af3c4b57b3cd180a76109fee3.tar.gz
Update to 3.1:
Changes in version 3.0 ====================== API Change ---------- Since version we unified to icalendar de/serialization API to use only to_ical (for writing an ical string from the internal representation) and from_ical (for parsing an ical string into the internal representation). to_ical is now used instead of the methods ical, string, as_string and instead of string casting via __str__ and str. from_ical is now used instead of from_string. This change is a requirement for future Python 3 compatibility. Please update your code to reflect to the new API. Timezone support ---------------- Timezones are now fully supported in icalendar for serialization and deserialization. We use the pytz library for timezone components of datetime instances. The timezone identifiers must be valid pytz respectively Olson database timezone identifiers. This can be a problem for 'GMT' identifiers, which are not defined in the Olson database. Instead of the own UTC tzinfo implementation we use pytz UTC tzinfo object now. About this fork which is not a fork anymore =========================================== Aim of this fork (not fork anymore, read further) was to bring this package up to date with latest icalendar `RFC`_ specification as part of `plone.app.event`_ project which goal is to bring recurrent evens to `Plone`_. After some thoughts we (Plone developers involved with `plone.app.event`_) send a suggestion to icalendar-dev@codespeak.net to take over mainaining of `icalendar`_. Nobody object and since version 2.2 we are back to development. .. _`icalendar`: http://pypi.python.org/pypi/icalendar .. _`plone.app.event`: http://github.com/collective/plone.app.event .. _`Plone`: http://plone.org .. _`pytz`: http://pypi.python.org/pypi/pytz .. _`setuptools`: http://pypi.python.org/pypi/setuptools .. _`RFC`: http://www.ietf.org/rfc/rfc5545.txt .. _`BSD`: https://github.com/collective/icalendar/issues/2 3.1 Make sure parameters to certain properties propagate to the ical output. [kanarip] Re-include doctests. [rnix] endure correct datatype at instance creation time in prop.vCalAddress and prop.vText. [rnix] Apply TZID parameter to datetimes parsed from RECURRENCE-ID [dbstovall] Localize datetimes for timezones to avoid DST transition errors. [dbstovall] Allow UTC-OFFSET property value data types in seconds, which follows RFC5545 specification. [nikolaeff] Remove utctz and normalized_timezone methods to simplify the codebase. The methods were too tiny to be useful and just used at one place. [thet] When using Component.add() to add icalendar properties, force a value conversion to UTC for CREATED, DTSTART and LAST-MODIFIED. The RFC expects UTC for those properties. [thet] Removed last occurrences of old API (from_string). [Rembane] Add listing. For example when parsing a text/calendar text including multiple components (e.g. a VCALENDAR with 5 VEVENTs), the previous situation required us to look over all properties in VEVENTs even if we just want the properties under the VCALENDAR component (VERSION, PRODID, CALSCALE, METHOD). [dmikurube] All unit tests fixed. [mikaelfrykholm] 3.0.1b2 (2012-03-01) For all TZID parameters in DATE-TIME properties, use timezone identifiers (e.g. Europe/Vienna) instead of timezone names (e.g. CET), as required by RFC5545. Timezone names are used together with timezone identifiers in the Timezone components. [thet] Timezone parsing, issues and test fixes. [mikaelfrykholm, garbas, tgecho] Since we use pytz for timezones, also use UTC tzinfo object from the pytz library instead of own implementation. [thet] 3.0.1b1 (2012-02-24) Update Release information. [thet] 3.0 Add API for proper Timezone support. Allow creating ical DATE-TIME strings with timezone information from Python datetimes with pytz based timezone information and vice versa. [thet] Unify API to only use to_ical and from_ical and remove string casting as a requirement for Python 3 compatibility: New: to_ical. Old: ical, string, as_string and string casting via __str__ and str. New: from_ical. Old: from_string. [thet]
Diffstat (limited to 'time')
-rw-r--r--time/py-icalendar/Makefile6
-rw-r--r--time/py-icalendar/PLIST24
-rw-r--r--time/py-icalendar/distinfo8
3 files changed, 28 insertions, 10 deletions
diff --git a/time/py-icalendar/Makefile b/time/py-icalendar/Makefile
index 399efad5806..ef9bb0a5164 100644
--- a/time/py-icalendar/Makefile
+++ b/time/py-icalendar/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2012/01/20 12:08:47 wiz Exp $
+# $NetBSD: Makefile,v 1.5 2012/09/13 20:12:16 wiz Exp $
#
-DISTNAME= icalendar-2.2
+DISTNAME= icalendar-3.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= time python
MASTER_SITES= http://pypi.python.org/packages/source/i/icalendar/
@@ -11,6 +11,8 @@ HOMEPAGE= http://codespeak.net/icalendar/
COMMENT= Python parser/generator for iCalendar files, as per RFC2445
LICENSE= gnu-lgpl-v2.1
+DEPENDS+= ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz
+
PKG_DESTDIR_SUPPORT= user-destdir
.include "../../lang/python/egg.mk"
diff --git a/time/py-icalendar/PLIST b/time/py-icalendar/PLIST
index 9a31bd83893..5479ae281fa 100644
--- a/time/py-icalendar/PLIST
+++ b/time/py-icalendar/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2012/01/20 12:08:47 wiz Exp $
+@comment $NetBSD: PLIST,v 1.5 2012/09/13 20:12:16 wiz Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -26,21 +26,37 @@ ${PYSITELIB}/icalendar/prop.pyo
${PYSITELIB}/icalendar/tests/__init__.py
${PYSITELIB}/icalendar/tests/__init__.pyc
${PYSITELIB}/icalendar/tests/__init__.pyo
+${PYSITELIB}/icalendar/tests/case_meetup.ics
+${PYSITELIB}/icalendar/tests/encoding.ics
${PYSITELIB}/icalendar/tests/example.txt
${PYSITELIB}/icalendar/tests/groupscheduled.ics
${PYSITELIB}/icalendar/tests/groupscheduled.txt
+${PYSITELIB}/icalendar/tests/issues.rst
${PYSITELIB}/icalendar/tests/multiple.ics
${PYSITELIB}/icalendar/tests/multiple.txt
${PYSITELIB}/icalendar/tests/recurrence.ics
${PYSITELIB}/icalendar/tests/recurrence.txt
${PYSITELIB}/icalendar/tests/small.ics
${PYSITELIB}/icalendar/tests/small.txt
+${PYSITELIB}/icalendar/tests/test_cases.py
+${PYSITELIB}/icalendar/tests/test_cases.pyc
+${PYSITELIB}/icalendar/tests/test_cases.pyo
+${PYSITELIB}/icalendar/tests/test_doctests.py
+${PYSITELIB}/icalendar/tests/test_doctests.pyc
+${PYSITELIB}/icalendar/tests/test_doctests.pyo
+${PYSITELIB}/icalendar/tests/test_encoding.py
+${PYSITELIB}/icalendar/tests/test_encoding.pyc
+${PYSITELIB}/icalendar/tests/test_encoding.pyo
${PYSITELIB}/icalendar/tests/test_icalendar.py
${PYSITELIB}/icalendar/tests/test_icalendar.pyc
${PYSITELIB}/icalendar/tests/test_icalendar.pyo
+${PYSITELIB}/icalendar/tests/test_property_params.py
+${PYSITELIB}/icalendar/tests/test_property_params.pyc
+${PYSITELIB}/icalendar/tests/test_property_params.pyo
+${PYSITELIB}/icalendar/tests/test_timezoned.py
+${PYSITELIB}/icalendar/tests/test_timezoned.pyc
+${PYSITELIB}/icalendar/tests/test_timezoned.pyo
+${PYSITELIB}/icalendar/tests/timezoned.ics
${PYSITELIB}/icalendar/tools.py
${PYSITELIB}/icalendar/tools.pyc
${PYSITELIB}/icalendar/tools.pyo
-${PYSITELIB}/icalendar/util.py
-${PYSITELIB}/icalendar/util.pyc
-${PYSITELIB}/icalendar/util.pyo
diff --git a/time/py-icalendar/distinfo b/time/py-icalendar/distinfo
index d8d7f7c6330..71fb7bfa366 100644
--- a/time/py-icalendar/distinfo
+++ b/time/py-icalendar/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.4 2012/01/20 12:08:47 wiz Exp $
+$NetBSD: distinfo,v 1.5 2012/09/13 20:12:16 wiz Exp $
-SHA1 (icalendar-2.2.tar.gz) = f678e03a0bfb4b44b243a4cd69d2f19111b0e841
-RMD160 (icalendar-2.2.tar.gz) = 9b0e336858805360100d499fd8ea443a49a8a4b9
-Size (icalendar-2.2.tar.gz) = 34739 bytes
+SHA1 (icalendar-3.1.tar.gz) = 5fe1df343589a26f227718c185fd80c7e81749b8
+RMD160 (icalendar-3.1.tar.gz) = a429b9d1d94f1a4bf36cbba04ea211d2b7b9dbc3
+Size (icalendar-3.1.tar.gz) = 52177 bytes