diff -Nru pisa-3.0.32/debian/changelog pisa-3.0.32/debian/changelog --- pisa-3.0.32/debian/changelog 2015-12-14 01:03:49.000000000 +0000 +++ pisa-3.0.32/debian/changelog 2016-06-09 21:21:07.000000000 +0000 @@ -1,3 +1,17 @@ +pisa (3.0.32-4) unstable; urgency=medium + + * Team upload. + + [ Ondřej Nový ] + * Fixed VCS URL (https) + + [ Luciano Bello ] + * Removing dependency to python-pypdf in favor of python-pypdf2. + (Closes: #763981) + * Standards-Version updated. + + -- Luciano Bello Thu, 09 Jun 2016 15:27:11 +0200 + pisa (3.0.32-3) unstable; urgency=low * Team upload. diff -Nru pisa-3.0.32/debian/control pisa-3.0.32/debian/control --- pisa-3.0.32/debian/control 2015-12-14 00:55:37.000000000 +0000 +++ pisa-3.0.32/debian/control 2016-06-09 21:20:50.000000000 +0000 @@ -5,15 +5,15 @@ Uploaders: W. Martin Borgert Build-Depends: debhelper (>= 9), python, xsltproc, docbook-xsl Build-Depends-Indep: dh-python, python-setuptools -Standards-Version: 3.9.6 +Standards-Version: 3.9.8 Homepage: http://www.xhtml2pdf.com/ -Vcs-Git: git://anonscm.debian.org/python-modules/packages/pisa.git +Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/pisa.git Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/pisa.git Package: python-pisa Architecture: all Provides: ${python:Provides} -Depends: ${misc:Depends}, ${python:Depends}, python-html5lib, python-imaging, python-pypdf, python-reportlab (>= 2.2), python-pkg-resources +Depends: ${misc:Depends}, ${python:Depends}, python-html5lib, python-imaging, python-pypdf2, python-reportlab (>= 2.2), python-pkg-resources Description: PDF generator using HTML and CSS (Python module) pisa is an html2pdf converter using the ReportLab Toolkit, HTML5lib and pyPdf. . diff -Nru pisa-3.0.32/debian/patches/0004-pypdf-2-pypdf2.patch pisa-3.0.32/debian/patches/0004-pypdf-2-pypdf2.patch --- pisa-3.0.32/debian/patches/0004-pypdf-2-pypdf2.patch 1970-01-01 00:00:00.000000000 +0000 +++ pisa-3.0.32/debian/patches/0004-pypdf-2-pypdf2.patch 2016-06-09 20:57:15.000000000 +0000 @@ -0,0 +1,22 @@ +--- a/sx/pisa3/pisa_pdf.py ++++ b/sx/pisa3/pisa_pdf.py +@@ -39,7 +39,7 @@ class pisaPDF: + self.files.append(doc.dest) + + def join(self, file=None): +- import pyPdf ++ import PyPDF2 as pyPdf + if pyPdf: + output = pyPdf.PdfFileWriter() + for pdffile in self.files: +--- a/sx/pisa3/pisa_util.py ++++ b/sx/pisa3/pisa_util.py +@@ -55,7 +55,7 @@ except: + import StringIO + + try: +- import pyPdf ++ import PyPDF2 as pyPdf + except: + pyPdf = None + diff -Nru pisa-3.0.32/debian/patches/series pisa-3.0.32/debian/patches/series --- pisa-3.0.32/debian/patches/series 2015-12-14 00:51:11.000000000 +0000 +++ pisa-3.0.32/debian/patches/series 2016-06-09 13:48:27.000000000 +0000 @@ -1,3 +1,4 @@ 0001-Fix-path-to-interpreter.patch 0002-Fix-reportlab-version-detection-for-versions-greater.patch 0003-Fix-interpreter-path-to-please-lintian.patch +0004-pypdf-2-pypdf2.patch