summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/.git-dpm4
-rw-r--r--debian/patches/0001-set-message_id-properly-in-expat-parser.patch4
-rw-r--r--debian/patches/0002-enable-use_2to3-in-setup.py.patch3
-rw-r--r--debian/patches/0003-give-lxml-etree-BytesIO-in-Python-3.patch4
4 files changed, 10 insertions, 5 deletions
diff --git a/debian/.git-dpm b/debian/.git-dpm
index f93cbbb..9ae02eb 100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@ -1,6 +1,6 @@
# see git-dpm(1) from git-dpm package
-591e67b26a2d694d5aae2d77985eab4d8daf2d9e
-591e67b26a2d694d5aae2d77985eab4d8daf2d9e
+bb4f526aa0b6664b45d38c64b546e783407034b6
+bb4f526aa0b6664b45d38c64b546e783407034b6
124074ce42e5d83c71e028a8757afb392cc96548
124074ce42e5d83c71e028a8757afb392cc96548
python-pynzb_0.1.0.orig.tar.gz
diff --git a/debian/patches/0001-set-message_id-properly-in-expat-parser.patch b/debian/patches/0001-set-message_id-properly-in-expat-parser.patch
index 2ed07ab..90441ec 100644
--- a/debian/patches/0001-set-message_id-properly-in-expat-parser.patch
+++ b/debian/patches/0001-set-message_id-properly-in-expat-parser.patch
@@ -1,10 +1,12 @@
-From 0a5a3e9b44be1ec1a150c027a07754a53f039189 Mon Sep 17 00:00:00 2001
+From 14d1c8d4ff4bbf5b942d553fa8638decef9f41c9 Mon Sep 17 00:00:00 2001
From: Carl Suster <carl@contraflo.ws>
Date: Mon, 9 Jan 2017 11:57:13 +1100
Subject: set message_id properly in expat parser
Upstream had a typo in the expat parser wrapper which called the
non-existent message_id() when set_message_id() was intended.
+
+Forwarded: https://github.com/ericflo/pynzb/pull/4
---
pynzb/expat_nzb.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/debian/patches/0002-enable-use_2to3-in-setup.py.patch b/debian/patches/0002-enable-use_2to3-in-setup.py.patch
index 16f2a85..83e6bf7 100644
--- a/debian/patches/0002-enable-use_2to3-in-setup.py.patch
+++ b/debian/patches/0002-enable-use_2to3-in-setup.py.patch
@@ -1,8 +1,9 @@
-From 01027917584eafdf4228bf0590123dfd47fe14a8 Mon Sep 17 00:00:00 2001
+From db99bb2f8b4bc56c6ba91d5dab84ec042bb777ec Mon Sep 17 00:00:00 2001
From: Carl Suster <carl@contraflo.ws>
Date: Wed, 11 Jan 2017 22:23:32 +1100
Subject: enable use_2to3 in setup.py
+Forwarded: https://github.com/ericflo/pynzb/pull/5
---
setup.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/debian/patches/0003-give-lxml-etree-BytesIO-in-Python-3.patch b/debian/patches/0003-give-lxml-etree-BytesIO-in-Python-3.patch
index aac136f..7289d6a 100644
--- a/debian/patches/0003-give-lxml-etree-BytesIO-in-Python-3.patch
+++ b/debian/patches/0003-give-lxml-etree-BytesIO-in-Python-3.patch
@@ -1,4 +1,4 @@
-From 591e67b26a2d694d5aae2d77985eab4d8daf2d9e Mon Sep 17 00:00:00 2001
+From bb4f526aa0b6664b45d38c64b546e783407034b6 Mon Sep 17 00:00:00 2001
From: Carl Suster <carl@contraflo.ws>
Date: Wed, 11 Jan 2017 22:34:34 +1100
Subject: give lxml etree BytesIO in Python 3
@@ -6,6 +6,8 @@ Subject: give lxml etree BytesIO in Python 3
The lxml etree API changed in Python 3 to take BytesIO instead of
StringIO. This patch maintains the original behaviour in Python 2 but
switches to BytesIO in Python 3, decoding the XML data as UTF-8.
+
+Forwarded: https://github.com/ericflo/pynzb/pull/6
---
pynzb/lxml_nzb.py | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)