diff -Nru wand-0.4.4/debian/changelog wand-0.4.4/debian/changelog --- wand-0.4.4/debian/changelog 2017-01-11 09:15:07.000000000 +0000 +++ wand-0.4.4/debian/changelog 2018-07-19 16:59:45.000000000 +0000 @@ -1,3 +1,41 @@ +wand (0.4.4-1.3ubuntu1~ubuntu18.10.1~ppa201807191259) cosmic; urgency=medium + + * No-change backport to cosmic + + -- Corey Bryant Thu, 19 Jul 2018 12:59:45 -0400 + +wand (0.4.4-1.3ubuntu1) cosmic; urgency=medium + + * d/control: Update dependencies on libmagickwand from libmagickwand-6.q16-5 + to libmagickwand-6.q16-6. + + -- Corey Bryant Thu, 19 Jul 2018 12:55:35 -0400 + +wand (0.4.4-1.3) unstable; urgency=medium + + * Non-maintainer upload. + + [ Michal Arbet ] + * Add fix-ensure-sequence-is-allocated.patch (Closes: #903908) + + -- Michal Arbet Mon, 16 Jul 2018 13:47:50 +0100 + +wand (0.4.4-1.2) unstable; urgency=medium + + * Non-maintainer upload. + + [ Dmitry Shachnev ] + * Use dh-sphinxdoc instead of broken hardcoded linking (Closes: #857510). + + [ Changwoo Ryu ] + * Drop devhelp + + [ HIGUCHI Daisuke (VDR dai) ] + * Update dependencies on libmagickwand from libmagickwand-6.q16-3 to + libmagickwand-6.q16-5. Closes: #890956 + + -- HIGUCHI Daisuke (VDR dai) Wed, 28 Mar 2018 22:05:08 +0900 + wand (0.4.4-1.1) unstable; urgency=medium * Non-maintainer upload. diff -Nru wand-0.4.4/debian/control wand-0.4.4/debian/control --- wand-0.4.4/debian/control 2017-01-11 09:14:15.000000000 +0000 +++ wand-0.4.4/debian/control 2018-07-19 16:55:35.000000000 +0000 @@ -23,7 +23,7 @@ Package: python-wand Architecture: all Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}, - libmagickwand5 | libmagickwand-6.q16-3, + libmagickwand-6.q16-6 Suggests: wand-doc Description: Python interface for ImageMagick library (Python 2 build) Wand is a ctypes-based simple ImageMagick binding for Python. It @@ -39,7 +39,7 @@ Package: python3-wand Architecture: all Depends: ${python3:Depends}, ${misc:Depends}, - libmagickwand5 | libmagickwand-6.q16-3, + libmagickwand-6.q16-6 Suggests: wand-doc Description: Python interface for ImageMagick library (Python 3 build) Wand is a ctypes-based simple ImageMagick binding for Python. It @@ -54,7 +54,7 @@ Package: pypy-wand Architecture: all Depends: ${pypy:Depends}, ${misc:Depends}, - libmagickwand5 | libmagickwand-6.q16-3, + libmagickwand-6.q16-6 Suggests: wand-doc Description: Python interface for ImageMagick library (PyPy build) Wand is a ctypes-based simple ImageMagick binding for Python. It @@ -70,7 +70,7 @@ Architecture: all Section: doc Depends: ${misc:Depends}, - libjs-sphinxdoc, + ${sphinxdoc:Depends}, Suggests: python-wand Description: Python interface for ImageMagick library - documentation Wand is a ctypes-based simple ImageMagick binding for Python. It diff -Nru wand-0.4.4/debian/patches/fix-ensure-sequence-is-allocated.patch wand-0.4.4/debian/patches/fix-ensure-sequence-is-allocated.patch --- wand-0.4.4/debian/patches/fix-ensure-sequence-is-allocated.patch 1970-01-01 00:00:00.000000000 +0000 +++ wand-0.4.4/debian/patches/fix-ensure-sequence-is-allocated.patch 2018-07-16 12:47:50.000000000 +0000 @@ -0,0 +1,22 @@ +Description: Fixes issue #324. Ensure sequence is allocated +Author: Eric McConville +Date: Mon, 27 Feb 2017 06:59:51 -0600 +Origin: https://github.com/emcconville/wand/commit/4ab2fbc78c5e21e63a5aee394a5e164886107dea +Last-Update: 2018-07-16 + +diff --git a/wand/image.py b/wand/image.py +index f73f8e3..faf502d 100644 +--- a/wand/image.py ++++ b/wand/image.py +@@ -2764,8 +2764,9 @@ class Image(BaseImage): + manager. + + """ +- for i in range(0, len(self.sequence)): +- self.sequence.pop() ++ if self.sequence is not None: ++ for i in range(0, len(self.sequence)): ++ self.sequence.pop() + super(Image, self).destroy() + + def read(self, file=None, filename=None, blob=None, resolution=None): diff -Nru wand-0.4.4/debian/patches/series wand-0.4.4/debian/patches/series --- wand-0.4.4/debian/patches/series 2016-11-06 09:02:18.000000000 +0000 +++ wand-0.4.4/debian/patches/series 2018-07-16 12:47:50.000000000 +0000 @@ -1,2 +1,3 @@ flask-sphinx-themes.patch no-intersphinx.patch +fix-ensure-sequence-is-allocated.patch diff -Nru wand-0.4.4/debian/rules wand-0.4.4/debian/rules --- wand-0.4.4/debian/rules 2016-11-06 09:02:18.000000000 +0000 +++ wand-0.4.4/debian/rules 2018-07-16 12:47:50.000000000 +0000 @@ -3,7 +3,7 @@ export PYBUILD_NAME=wand %: - dh $@ --buildsystem=pybuild --with python2,python3,pypy + dh $@ --buildsystem=pybuild --with python2,python3,pypy,sphinxdoc .PHONY: build_doc clean_doc @@ -27,7 +27,7 @@ #dh_auto_test build_doc: - $(MAKE) -C $(CURDIR)/docs devhelp + $(MAKE) -C $(CURDIR)/docs html clean_doc: $(MAKE) -C $(CURDIR)/docs clean diff -Nru wand-0.4.4/debian/wand-doc.install wand-0.4.4/debian/wand-doc.install --- wand-0.4.4/debian/wand-doc.install 2016-11-06 09:02:18.000000000 +0000 +++ wand-0.4.4/debian/wand-doc.install 2018-07-16 12:47:50.000000000 +0000 @@ -1 +1 @@ -docs/_build/devhelp/* usr/share/doc/wand-doc/html/ +docs/_build/html/* usr/share/doc/wand-doc/html/ diff -Nru wand-0.4.4/debian/wand-doc.links wand-0.4.4/debian/wand-doc.links --- wand-0.4.4/debian/wand-doc.links 2016-11-06 09:02:18.000000000 +0000 +++ wand-0.4.4/debian/wand-doc.links 2018-07-16 12:47:50.000000000 +0000 @@ -1,10 +1,3 @@ -usr/share/doc/wand-doc/html usr/share/devhelp/books/Wand usr/share/doc/wand-doc/html usr/share/doc/pypy-wand/html usr/share/doc/wand-doc/html usr/share/doc/python-wand/html usr/share/doc/wand-doc/html usr/share/doc/python3-wand/html -usr/share/javascript/sphinxdoc/1.0/doctools.js usr/share/doc/wand-doc/html/_static/doctools.js -usr/share/javascript/sphinxdoc/1.0/jquery.js usr/share/doc/wand-doc/html/_static/jquery.js -usr/share/javascript/sphinxdoc/1.0/searchtools.js usr/share/doc/wand-doc/html/_static/searchtools.js -usr/share/javascript/sphinxdoc/1.0/sidebar.js usr/share/doc/wand-doc/html/_static/sidebar.js -usr/share/javascript/sphinxdoc/1.0/underscore.js usr/share/doc/wand-doc/html/_static/underscore.js -usr/share/javascript/sphinxdoc/1.0/websupport.js usr/share/doc/wand-doc/html/_static/websupport.js