Package: release.debian.org Severity: normal Tags: buster User: release.debian....@packages.debian.org Usertags: pu X-Debbugs-Cc: Giulio Paci <giuliop...@gmail.com>
* Apply patch by Michael Hudson-Doyle to use pdftoppm instead of convert to convert pdf to jpg as the latter fails with the changed security policy of ImageMagick. (Closes: #962439) See #987504 for background.
diff -Nru sctk-2.4.10-20151007-1312Z+dfsg2/debian/changelog sctk-2.4.10-20151007-1312Z+dfsg2/debian/changelog --- sctk-2.4.10-20151007-1312Z+dfsg2/debian/changelog 2016-04-27 19:42:33.000000000 +0300 +++ sctk-2.4.10-20151007-1312Z+dfsg2/debian/changelog 2022-08-25 17:16:13.000000000 +0300 @@ -1,3 +1,19 @@ +sctk (2.4.10-20151007-1312Z+dfsg2-3.1~deb10u1) buster; urgency=medium + + * Non-maintainer upload. + * Rebuild for buster. + + -- Adrian Bunk <b...@debian.org> Thu, 25 Aug 2022 17:16:13 +0300 + +sctk (2.4.10-20151007-1312Z+dfsg2-3.1) unstable; urgency=medium + + * Non-maintainer upload. + * Apply patch by Michael Hudson-Doyle to use pdftoppm instead + of convert to convert pdf to jpg as the latter fails with the + changed security policy of ImageMagick. (Closes: #962439) + + -- Adrian Bunk <b...@debian.org> Tue, 03 Aug 2021 09:44:24 +0300 + sctk (2.4.10-20151007-1312Z+dfsg2-3) unstable; urgency=medium * Fix an error in replacement files Makefile. diff -Nru sctk-2.4.10-20151007-1312Z+dfsg2/debian/control sctk-2.4.10-20151007-1312Z+dfsg2/debian/control --- sctk-2.4.10-20151007-1312Z+dfsg2/debian/control 2016-04-27 19:42:33.000000000 +0300 +++ sctk-2.4.10-20151007-1312Z+dfsg2/debian/control 2021-08-03 09:44:12.000000000 +0300 @@ -8,6 +8,7 @@ dh-buildinfo, dpkg-dev (>= 1.16.1~), librsvg2-bin, + poppler-utils, texlive-latex-base, texlive-latex-extra, imagemagick, diff -Nru sctk-2.4.10-20151007-1312Z+dfsg2/debian/replacement_files/Makefile sctk-2.4.10-20151007-1312Z+dfsg2/debian/replacement_files/Makefile --- sctk-2.4.10-20151007-1312Z+dfsg2/debian/replacement_files/Makefile 2016-04-27 19:42:33.000000000 +0300 +++ sctk-2.4.10-20151007-1312Z+dfsg2/debian/replacement_files/Makefile 2021-08-03 09:43:34.000000000 +0300 @@ -34,7 +34,7 @@ all: $(OUTPUT) %.jpg: %.pdf - convert -density 300 $< $@ + pdftoppm -jpeg -singlefile -r 300 $< > $@ %.png: %.svg convert "$<" "$@"