Hi, Please find attached to this message the diff concerning what's in the debian folder for upgrading to python 0.1.8 (I stripped out the upstream changes).
Cheers, Thomas Goirand (zigo)
diff -Nru python-iso8601-0.1.4/debian/changelog python-iso8601-0.1.8/debian/changelog --- python-iso8601-0.1.4/debian/changelog 2012-04-09 00:25:51.000000000 +0000 +++ python-iso8601-0.1.8/debian/changelog 2013-12-16 11:22:30.000000000 +0000 @@ -1,3 +1,12 @@ +python-iso8601 (0.1.8-0.1) unstable; urgency=medium + + * Non-maintainer upload. + * New upstream release. + * Refresh patch. + * Fix debian/docs for upstream of README into README.rst + + -- Thomas Goirand <[email protected]> Mon, 16 Dec 2013 11:19:02 +0000 + python-iso8601 (0.1.4-2) unstable; urgency=low * Convert to dh_python2 (Closes: #661534) diff -Nru python-iso8601-0.1.4/debian/docs python-iso8601-0.1.8/debian/docs --- python-iso8601-0.1.4/debian/docs 2012-04-09 00:23:23.000000000 +0000 +++ python-iso8601-0.1.8/debian/docs 2013-12-16 11:22:11.000000000 +0000 @@ -1 +1 @@ -README +README.rst diff -Nru python-iso8601-0.1.4/debian/patches/0001-fixed-issue-with-distutils-that-does-not-work-in-new.patch python-iso8601-0.1.8/debian/patches/0001-fixed-issue-with-distutils-that-does-not-work-in-new.patch --- python-iso8601-0.1.4/debian/patches/0001-fixed-issue-with-distutils-that-does-not-work-in-new.patch 2012-04-09 00:23:23.000000000 +0000 +++ python-iso8601-0.1.8/debian/patches/0001-fixed-issue-with-distutils-that-does-not-work-in-new.patch 2013-12-16 11:21:00.000000000 +0000 @@ -7,19 +7,14 @@ setup.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -diff --git a/setup.py b/setup.py -index cdb61ec..2daf5b1 100644 --- a/setup.py +++ b/setup.py -@@ -1,7 +1,7 @@ +@@ -3,7 +3,7 @@ import os try: from setuptools import setup except ImportError: - from distutils import setup + from distutils.core import setup - long_description="""Simple module to parse ISO 8601 dates + long_description = open(os.path.join(os.path.dirname(__file__), "README.rst")).read() --- -1.7.2.3 -

