summaryrefslogtreecommitdiff
path: root/time
diff options
context:
space:
mode:
authorwiz <wiz>2010-01-20 10:34:23 +0000
committerwiz <wiz>2010-01-20 10:34:23 +0000
commit2dc9c8b0f2d0c26cb5f60417d7e3df131d5e3769 (patch)
tree784e1ceb0f062696f00c3e39fe9929a72bed34f4 /time
parentb041ba50f4ffc4392d43b3895ad4f01cd572dd93 (diff)
downloadpkgsrc-2dc9c8b0f2d0c26cb5f60417d7e3df131d5e3769.tar.gz
Update to 2.1:
2.1 (2009-12-14) ================ * Fix deprecation warnings about `object.__init__` taking no parameters. * Set the VALUE parameter correctly for date values. * Long binary data would be base64 encoded with newlines, which made the iCalendar files incorrect. (This still needs testing). * Correctly handle content lines which include newlines.
Diffstat (limited to 'time')
-rw-r--r--time/py-icalendar/Makefile4
-rw-r--r--time/py-icalendar/distinfo9
-rw-r--r--time/py-icalendar/patches/patch-aa13
3 files changed, 6 insertions, 20 deletions
diff --git a/time/py-icalendar/Makefile b/time/py-icalendar/Makefile
index dded53ff661..5b3850d4ecc 100644
--- a/time/py-icalendar/Makefile
+++ b/time/py-icalendar/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.2 2009/05/20 13:38:47 wiz Exp $
+# $NetBSD: Makefile,v 1.3 2010/01/20 10:34:23 wiz Exp $
#
-DISTNAME= icalendar-2.0.1
+DISTNAME= icalendar-2.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= time python
MASTER_SITES= http://pypi.python.org/packages/source/i/icalendar/
diff --git a/time/py-icalendar/distinfo b/time/py-icalendar/distinfo
index d0335884370..083c1dc0063 100644
--- a/time/py-icalendar/distinfo
+++ b/time/py-icalendar/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.2 2009/05/20 13:38:47 wiz Exp $
+$NetBSD: distinfo,v 1.3 2010/01/20 10:34:23 wiz Exp $
-SHA1 (icalendar-2.0.1.tar.gz) = aae1f3e67eceba9d06461f5eccdb7560194dc58f
-RMD160 (icalendar-2.0.1.tar.gz) = e377c8591c0a014c0d84e5a8ebd072dd49839bf9
-Size (icalendar-2.0.1.tar.gz) = 73338 bytes
-SHA1 (patch-aa) = 7a322a70f5ec1915eb72d89421135f7b96dd1785
+SHA1 (icalendar-2.1.tar.gz) = be1104db8853e3e0746a6f7bc3bb8103c79d5edb
+RMD160 (icalendar-2.1.tar.gz) = a62548dcabe8657d0445e2b810ff6f3c49fdec0f
+Size (icalendar-2.1.tar.gz) = 73180 bytes
diff --git a/time/py-icalendar/patches/patch-aa b/time/py-icalendar/patches/patch-aa
deleted file mode 100644
index 79c0aef9d65..00000000000
--- a/time/py-icalendar/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2009/05/20 13:38:47 wiz Exp $
-
---- src/icalendar/prop.py.orig 2008-07-11 19:56:43.000000000 +0000
-+++ src/icalendar/prop.py
-@@ -1059,7 +1059,7 @@ class vText(unicode):
- encoding = 'utf-8'
-
- def __init__(self, *args, **kwargs):
-- unicode.__init__(self, *args, **kwargs)
-+ unicode.__init__(self)
- self.params = Parameters()
-
- def escape(self):