[Python-modules-commits] r29859 - in packages/pyth/trunk/debian (4 files)
eriol-guest at users.alioth.debian.org
eriol-guest at users.alioth.debian.org
Tue Jul 22 19:30:25 UTC 2014
Date: Tuesday, July 22, 2014 @ 19:30:24
Author: eriol-guest
Revision: 29859
Remove patches applied upstream
Modified:
packages/pyth/trunk/debian/changelog
packages/pyth/trunk/debian/patches/series
Deleted:
packages/pyth/trunk/debian/patches/01_fix-refactored-PDFWriter-write.patch
packages/pyth/trunk/debian/patches/02_fix-escaping-html-entities-behavior-change.patch
Modified: packages/pyth/trunk/debian/changelog
===================================================================
--- packages/pyth/trunk/debian/changelog 2014-07-22 19:19:33 UTC (rev 29858)
+++ packages/pyth/trunk/debian/changelog 2014-07-22 19:30:24 UTC (rev 29859)
@@ -6,8 +6,12 @@
[ Daniele Tricoli ]
* New upstream release
+ * debian/patches/01_fix-refactored-PDFWriter-write.patch
+ - Remove since applied upstream
+ * debian/02_fix-escaping-html-entities-behavior-change.patch
+ - Remove since applied upstream
- -- Daniele Tricoli <eriol at mornie.org> Tue, 22 Jul 2014 21:17:41 +0200
+ -- Daniele Tricoli <eriol at mornie.org> Tue, 22 Jul 2014 21:29:56 +0200
pyth (0.5.6-3) unstable; urgency=low
Deleted: packages/pyth/trunk/debian/patches/01_fix-refactored-PDFWriter-write.patch
===================================================================
--- packages/pyth/trunk/debian/patches/01_fix-refactored-PDFWriter-write.patch 2014-07-22 19:19:33 UTC (rev 29858)
+++ packages/pyth/trunk/debian/patches/01_fix-refactored-PDFWriter-write.patch 2014-07-22 19:30:24 UTC (rev 29859)
@@ -1,23 +0,0 @@
-Description: PDFWriter.write was refactored in git rev
- d87f7877cca5ea90c2d79979521a3db77c47eb30 loosing "method" argument
-Author: Daniele Tricoli <eriol at mornie.org>
-Forwarded: https://github.com/brendonh/pyth/pull/9
-Last-Update: 2011-05-17
---- a/tests/test_writepdf.py
-+++ b/tests/test_writepdf.py
-@@ -80,13 +80,13 @@
-
- def test_latex(self):
- doc = PythonReader.read(P[u"the-text"])
-- pdf = PDFWriter.write(doc, method='latex').getvalue()
-+ pdf = PDFWriter.write(doc).getvalue()
- html = self.pdf_to_html(pdf)
- assert "the-text" in html, html
-
- def test_rst(self):
- doc = PythonReader.read(P[u"the-text"])
-- pdf = PDFWriter.write(doc, method='rst').getvalue()
-+ pdf = PDFWriter.write(doc).getvalue()
- print pdf
- html = self.pdf_to_html(pdf)
- assert "the-text" in html, html
Deleted: packages/pyth/trunk/debian/patches/02_fix-escaping-html-entities-behavior-change.patch
===================================================================
--- packages/pyth/trunk/debian/patches/02_fix-escaping-html-entities-behavior-change.patch 2014-07-22 19:19:33 UTC (rev 29858)
+++ packages/pyth/trunk/debian/patches/02_fix-escaping-html-entities-behavior-change.patch 2014-07-22 19:30:24 UTC (rev 29859)
@@ -1,16 +0,0 @@
-Description: Fixed escaping HTML entities within strings behavior change in
- python-beautifulsoup 3.2.1.
-Author: Daniele Tricoli <eriol at mornie.org>
-Forwarded: https://github.com/brendonh/pyth/pull/14
-Last-Update: 2012-06-25
---- a/pyth/plugins/xhtml/reader.py
-+++ b/pyth/plugins/xhtml/reader.py
-@@ -55,7 +55,7 @@
- text = unicode(node)
- lines = [x.strip() for x in text.splitlines()]
- text = ' '.join(lines)
-- node.replaceWith(text)
-+ node.replaceWith(BeautifulSoup.BeautifulSoup(text))
- soup = BeautifulSoup.BeautifulSoup(unicode(soup))
- # replace all <br/> tag by newline character
- for node in soup.findAll('br'):
Modified: packages/pyth/trunk/debian/patches/series
===================================================================
--- packages/pyth/trunk/debian/patches/series 2014-07-22 19:19:33 UTC (rev 29858)
+++ packages/pyth/trunk/debian/patches/series 2014-07-22 19:30:24 UTC (rev 29859)
@@ -1,2 +0,0 @@
-01_fix-refactored-PDFWriter-write.patch
-02_fix-escaping-html-entities-behavior-change.patch
More information about the Python-modules-commits
mailing list