diff -Nru pdftoipe-20110916/debian/changelog pdftoipe-20110916/debian/changelog --- pdftoipe-20110916/debian/changelog 2012-02-24 03:21:11.000000000 +0000 +++ pdftoipe-20110916/debian/changelog 2012-06-15 10:34:38.000000000 +0100 @@ -1,3 +1,9 @@ +pdftoipe (20110916-3ubuntu1) quantal; urgency=low + + * Track changes to libpoppler25 API. + + -- Andy Whitcroft Fri, 15 Jun 2012 10:34:36 +0100 + pdftoipe (20110916-3) unstable; urgency=low * control: Migrate the libpoppler-dev build dependency to diff -Nru pdftoipe-20110916/debian/control pdftoipe-20110916/debian/control --- pdftoipe-20110916/debian/control 2012-02-24 03:20:35.000000000 +0000 +++ pdftoipe-20110916/debian/control 2012-06-15 10:34:47.000000000 +0100 @@ -2,7 +2,8 @@ Homepage: http://ipe7.sourceforge.net/ Section: graphics Priority: optional -Maintainer: Steve M. Robbins +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Steve M. Robbins Build-Depends: debhelper (>= 8), pkg-config, libpoppler-private-dev Standards-Version: 3.9.2 diff -Nru pdftoipe-20110916/debian/patches/series pdftoipe-20110916/debian/patches/series --- pdftoipe-20110916/debian/patches/series 2011-12-11 15:17:48.000000000 +0000 +++ pdftoipe-20110916/debian/patches/series 2012-06-15 10:28:21.000000000 +0100 @@ -1 +1,2 @@ poppler.patch +track_libpoppler25_api.patch diff -Nru pdftoipe-20110916/debian/patches/track_libpoppler25_api.patch pdftoipe-20110916/debian/patches/track_libpoppler25_api.patch --- pdftoipe-20110916/debian/patches/track_libpoppler25_api.patch 1970-01-01 01:00:00.000000000 +0100 +++ pdftoipe-20110916/debian/patches/track_libpoppler25_api.patch 2012-06-15 10:38:17.000000000 +0100 @@ -0,0 +1,19 @@ +Description: Track libpoppler25 API changes + Track changes to the libpoppler25 API: + . + error() now takes an additional ErrorCategory argument. +Author: Andy Whitcroft +Last-Update: 2012-06-15 +Index: pdftoipe-20110916/xmloutputdev.cpp +=================================================================== +--- pdftoipe-20110916.orig/xmloutputdev.cpp 2012-06-15 10:12:14.000000000 +0100 ++++ pdftoipe-20110916/xmloutputdev.cpp 2012-06-15 10:31:49.752795033 +0100 +@@ -30,7 +30,7 @@ + FILE *f; + + if (!(f = fopen(fileName, "wb"))) { +- error(-1, "Couldn't open output file '%s'", fileName); ++ error(errCommandLine, -1, "Couldn't open output file '%s'", fileName); + ok = gFalse; + return; + }