No maintainer response for 3 months, so I'll upload this NMU shortly.
Binary files /tmp/QwHFJsfGn1/python-dateutil-1.5/dateutil/zoneinfo/zoneinfo-2010g.tar.gz and /tmp/zvV9EAtm8d/python-dateutil-1.5+dfsg/dateutil/zoneinfo/zoneinfo-2010g.tar.gz differ
diff -Nru python-dateutil-1.5/debian/changelog python-dateutil-1.5+dfsg/debian/changelog
--- python-dateutil-1.5/debian/changelog	2011-08-30 16:20:51.000000000 -0400
+++ python-dateutil-1.5+dfsg/debian/changelog	2012-07-06 10:00:10.000000000 -0400
@@ -1,3 +1,15 @@
+python-dateutil (1.5+dfsg-0.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Repack upstream tarball to remove non-free time zone information
+    (sourceless binary data) (Closes: #665894)
+  * Remove reference to dateutil/zoneinfo/zoneinfo-2010g.tar.gz from both
+    upstream build system and debian/rules
+    - The file was not shipped in the binary, so there's no impact on the
+      functionality of the package
+
+ -- Scott Kitterman <sc...@kitterman.com>  Fri, 06 Jul 2012 09:00:45 -0400
+
 python-dateutil (1.5-1) unstable; urgency=low
 
   [ Guido Günther ]
diff -Nru python-dateutil-1.5/debian/patches/Remove_Zoneinfo_Tarball_665894 python-dateutil-1.5+dfsg/debian/patches/Remove_Zoneinfo_Tarball_665894
--- python-dateutil-1.5/debian/patches/Remove_Zoneinfo_Tarball_665894	1969-12-31 19:00:00.000000000 -0500
+++ python-dateutil-1.5+dfsg/debian/patches/Remove_Zoneinfo_Tarball_665894	2012-07-06 10:00:10.000000000 -0400
@@ -0,0 +1,78 @@
+Description: Remove dateutil/zoneinfo/zoneinfo-2010g.tar.gz from build system
+ python-dateutil (1.5+dfsg-0.1) unstable; urgency=low
+ .
+   * Non-maintainer upload.
+   * Repack upstream tarball to remove non-free time zone information
+     (sourceless binary data) (Closes: #665894)
+   * Remove reference to dateutil/zoneinfo/zoneinfo-2010g.tar.gz from both
+     upstream build system and debian/rules
+     - The file was not shipped in the binary, so there's no impact on the
+       functionality of the package
+Author: Scott Kitterman <sc...@kitterman.com>
+Bug-Debian: http://bugs.debian.org/665894
+Origin: <vendor>
+Forwarded: <no>
+Last-Update: <2012-07-06>
+
+Index: python-dateutil-1.5+dfsg/MANIFEST.in
+===================================================================
+--- python-dateutil-1.5+dfsg.orig/MANIFEST.in	2012-07-06 09:37:24.398650586 -0400
++++ python-dateutil-1.5+dfsg/MANIFEST.in	2012-07-06 09:37:50.042649829 -0400
+@@ -1,4 +1,4 @@
+-recursive-include dateutil *.py *.tar.*
++recursive-include dateutil *.py
+ recursive-include sandbox *.py
+ include setup.py setup.cfg MANIFEST.in README LICENSE NEWS Makefile
+ include test.py example.py
+Index: python-dateutil-1.5+dfsg/setup.py
+===================================================================
+--- python-dateutil-1.5+dfsg.orig/setup.py	2012-07-06 09:37:24.414650583 -0400
++++ python-dateutil-1.5+dfsg/setup.py	2012-07-06 09:37:50.042649829 -0400
+@@ -29,7 +29,5 @@
+ datetime module, available in Python 2.3+.
+ """,
+       packages = ["dateutil", "dateutil.zoneinfo"],
+-      package_data={"": ["*.tar.gz"]},
+-      include_package_data=True,
+       zip_safe=False,
+       )
+Index: python-dateutil-1.5+dfsg/python_dateutil.egg-info/SOURCES.txt
+===================================================================
+--- python-dateutil-1.5+dfsg.orig/python_dateutil.egg-info/SOURCES.txt	2012-07-06 09:37:24.426650583 -0400
++++ python-dateutil-1.5+dfsg/python_dateutil.egg-info/SOURCES.txt	2012-07-06 09:37:50.042649829 -0400
+@@ -16,11 +16,10 @@
+ dateutil/tz.py
+ dateutil/tzwin.py
+ dateutil/zoneinfo/__init__.py
+-dateutil/zoneinfo/zoneinfo-2010g.tar.gz
+ python_dateutil.egg-info/PKG-INFO
+ python_dateutil.egg-info/SOURCES.txt
+ python_dateutil.egg-info/dependency_links.txt
+ python_dateutil.egg-info/not-zip-safe
+ python_dateutil.egg-info/top_level.txt
+ sandbox/rrulewrapper.py
+-sandbox/scheduler.py
+\ No newline at end of file
++sandbox/scheduler.py
+Index: python-dateutil-1.5+dfsg/test.py
+===================================================================
+--- python-dateutil-1.5+dfsg.orig/test.py	2012-07-06 09:37:46.118649944 -0400
++++ python-dateutil-1.5+dfsg/test.py	2012-07-06 09:38:12.294649170 -0400
+@@ -3883,7 +3883,7 @@
+         self.assertEqual(datetime(2003,10,26,0,59,tzinfo=tz).tzname(), "EDT")
+         self.assertEqual(datetime(2003,10,26,1,00,tzinfo=tz).tzname(), "EST")
+ 
+-    def testZoneInfoFileStart1(self):
++    """def testZoneInfoFileStart1(self):
+         tz = zoneinfo.gettz("EST5EDT")
+         self.assertEqual(datetime(2003,4,6,1,59,tzinfo=tz).tzname(), "EST")
+         self.assertEqual(datetime(2003,4,6,2,00,tzinfo=tz).tzname(), "EDT")
+@@ -3900,7 +3900,7 @@
+         t1 = t0.astimezone(utc)
+         t2 = t1.astimezone(nyc)
+         self.assertEquals(t0, t2)
+-        self.assertEquals(nyc.dst(t0), timedelta(hours=1))
++        self.assertEquals(nyc.dst(t0), timedelta(hours=1))"""
+ 
+     def testICalStart1(self):
+         tz = tzical(StringIO(self.TZICAL_EST5EDT)).get()
diff -Nru python-dateutil-1.5/debian/patches/series python-dateutil-1.5+dfsg/debian/patches/series
--- python-dateutil-1.5/debian/patches/series	2011-08-30 16:20:10.000000000 -0400
+++ python-dateutil-1.5+dfsg/debian/patches/series	2012-07-06 10:00:10.000000000 -0400
@@ -1 +1,2 @@
 Use-C-locale-when-calling-date.patch
+Remove_Zoneinfo_Tarball_665894
diff -Nru python-dateutil-1.5/debian/rules python-dateutil-1.5+dfsg/debian/rules
--- python-dateutil-1.5/debian/rules	2011-08-30 16:20:10.000000000 -0400
+++ python-dateutil-1.5+dfsg/debian/rules	2012-07-06 10:00:10.000000000 -0400
@@ -6,9 +6,5 @@
 %:
 	dh $@ --with python2
 
-override_dh_auto_install:
-	dh_auto_install $@
-	rm -f debian/python-dateutil/usr/lib/`pyversions -d`/site-packages/dateutil/zoneinfo/zoneinfo-*.tar.gz
-
 override_dh_auto_test:
 	python test.py

Attachment: signature.asc
Description: This is a digitally signed message part.



Reply via email to