diff -Nru libalien-wxwidgets-perl-0.67+dfsg/debian/changelog libalien-wxwidgets-perl-0.67+dfsg/debian/changelog --- libalien-wxwidgets-perl-0.67+dfsg/debian/changelog 2015-05-09 15:18:54.000000000 +0000 +++ libalien-wxwidgets-perl-0.67+dfsg/debian/changelog 2015-12-18 14:16:25.000000000 +0000 @@ -1,3 +1,13 @@ +libalien-wxwidgets-perl (0.67+dfsg-3) unstable; urgency=medium + + * Update generation of libwx*-dev versioned dependencies. + Adjust version mangling of upper bound to also handle the new "+dfsg" + versions. + (Closes: #808284) + * Add another fix to fix-pod-spelling.patch. + + -- gregor herrmann Fri, 18 Dec 2015 15:16:13 +0100 + libalien-wxwidgets-perl (0.67+dfsg-2) unstable; urgency=medium * Add "gcc | c-compiler" to Depends. (Closes: #784846) diff -Nru libalien-wxwidgets-perl-0.67+dfsg/debian/patches/fix-pod-spelling.patch libalien-wxwidgets-perl-0.67+dfsg/debian/patches/fix-pod-spelling.patch --- libalien-wxwidgets-perl-0.67+dfsg/debian/patches/fix-pod-spelling.patch 2015-05-09 15:18:54.000000000 +0000 +++ libalien-wxwidgets-perl-0.67+dfsg/debian/patches/fix-pod-spelling.patch 2015-12-18 14:16:25.000000000 +0000 @@ -1,9 +1,22 @@ Description: fix POD spelling -Author: Jonathan Yu Origin: vendor +Bug: https://rt.cpan.org/Public/Bug/Display.html?id=69641 Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=69641 +Author: Jonathan Yu +Reviewed-by: gregor herrmann +Last-Update: 2015-12-18 + --- a/lib/Alien/wxWidgets.pm +++ b/lib/Alien/wxWidgets.pm +@@ -206,7 +206,7 @@ + + Using C without parameters will load a default + configuration (for most people this will be the only installed +-confiuration). Additional parameters allow to be more selective. ++confiuration). Additional parameters allow one to be more selective. + + If there is no matching configuration the method will C. + @@ -236,7 +236,7 @@ my $config = Alien::wxWidgets->config; diff -Nru libalien-wxwidgets-perl-0.67+dfsg/debian/rules libalien-wxwidgets-perl-0.67+dfsg/debian/rules --- libalien-wxwidgets-perl-0.67+dfsg/debian/rules 2015-05-09 15:18:54.000000000 +0000 +++ libalien-wxwidgets-perl-0.67+dfsg/debian/rules 2015-12-18 14:16:25.000000000 +0000 @@ -6,7 +6,9 @@ VMAJOR:=$(shell echo $(V) |cut -f 1 -d .) VMINOR:=$(shell echo $(V) |cut -f 2 -d .) VPATCH:=$(shell echo $(V) |cut -f 3 -d .) -NEXTPATCH:=$(shell expr $(VPATCH) + 1 2>/dev/null || expr `echo $(VPATCH) | cut -f 1 -d - ` + 1) +VPATCHU:=$(shell echo $(VPATCH) |cut -f 1 -d +) +VPATCHD:=$(shell echo $(VPATCH) |cut -f 2 -d +) +NEXTPATCH:=$(shell expr $(VPATCH) + 1 2>/dev/null || expr `echo $(VPATCH) | cut -f 1 -d - ` + 1 2>/dev/null || expr $(VPATCHU) + 1 2>/dev/null) _DETECTION_CMD := PERL5LIB=$(CURDIR)/blib/lib:$(CURDIR)/blib/arch perl -MAlien::wxWidgets -e '$$key = Alien::wxWidgets->key; $$key =~ s/_/-/g; print "$$key";'