This is an automated email from the git hooks/post-receive script. eythian-guest pushed a commit to branch master in repository libpdf-reuse-perl.
commit 407b0957b8202c3547c4c8e49878ed76e08a9cea Author: Robin Sheat <[email protected]> Date: Tue Dec 16 17:37:09 2014 +1300 New upstream version (0.36) --- debian/changelog | 12 +++++++++-- debian/control | 5 +++-- debian/patches/fix-pod.patch | 13 ------------ debian/patches/series | 1 - debian/patches/uninitialized_warning.patch | 32 ++++++++++++++++-------------- debian/rules | 23 +-------------------- debian/source/format | 1 + 7 files changed, 32 insertions(+), 55 deletions(-) diff --git a/debian/changelog b/debian/changelog index 6615d0c..930ffbe 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -libpdf-reuse-perl (0.35-3) UNRELEASED; urgency=low +libpdf-reuse-perl (0.36-1) unstable; urgency=low [ Nathan Handler ] * debian/watch: Update to ignore development releases. @@ -19,7 +19,15 @@ libpdf-reuse-perl (0.35-3) UNRELEASED; urgency=low [ Salvatore Bonaccorso ] * Update Vcs-Browser URL to cgit web frontend - -- Nathan Handler <[email protected]> Sat, 06 Jun 2009 01:36:52 +0000 + [ Robin Sheat ] + * New upstream release. + * Added debian/source/format, modified debian/rules to not invoke quilt + manually. + * Updated Standards-Version + * Removed fix-pod.patch as it's upstream + * Updated uninitialized_warning.patch to remove conflicts + + -- Robin Sheat <[email protected]> Tue, 16 Dec 2014 17:32:39 +1300 libpdf-reuse-perl (0.35-2) unstable; urgency=low diff --git a/debian/control b/debian/control index 8574e9b..8a35c86 100644 --- a/debian/control +++ b/debian/control @@ -1,7 +1,8 @@ Source: libpdf-reuse-perl Maintainer: Debian Perl Group <[email protected]> Uploaders: Vincent Danjean <[email protected]>, - gregor herrmann <[email protected]> + gregor herrmann <[email protected]>, + Robin Sheat <[email protected]> Section: perl Priority: optional Build-Depends: debhelper (>= 7), @@ -9,7 +10,7 @@ Build-Depends: debhelper (>= 7), Build-Depends-Indep: perl, libfont-ttf-perl, libtext-pdf-perl -Standards-Version: 3.8.0 +Standards-Version: 3.9.6 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libpdf-reuse-perl.git Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libpdf-reuse-perl.git Homepage: https://metacpan.org/release/PDF-Reuse diff --git a/debian/patches/fix-pod.patch b/debian/patches/fix-pod.patch deleted file mode 100644 index b02af50..0000000 --- a/debian/patches/fix-pod.patch +++ /dev/null @@ -1,13 +0,0 @@ -Author: gregor herrmann <[email protected]> -Description: add missing empty line to POD to avoid errors from pod2man - ---- a/Reuse.pm -+++ b/Reuse.pm -@@ -1612,6 +1612,7 @@ - To write a program with PDF::Reuse, you need these components: - - =begin html -+ - <style> - pre span.comment { - color:AA0000 ; diff --git a/debian/patches/series b/debian/patches/series index a9f38d3..859348f 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,2 +1 @@ uninitialized_warning.patch -fix-pod.patch diff --git a/debian/patches/uninitialized_warning.patch b/debian/patches/uninitialized_warning.patch index a095a0e..cc7820a 100644 --- a/debian/patches/uninitialized_warning.patch +++ b/debian/patches/uninitialized_warning.patch @@ -3,18 +3,20 @@ Description: avoid warnings about "Use of uninitialized value $string in unpack ..." Bug: #506214 ---- a/Reuse.pm -+++ b/Reuse.pm -@@ -1281,8 +1281,10 @@ - - if (ref($PDF::Reuse::Util::font_widths{$Font}) eq 'ARRAY') - { my @font_table = @{ $PDF::Reuse::Util::font_widths{$Font} }; -- for (unpack ("C*", $string)) -- { $w += $font_table[$_]; -+ if (defined $string) { -+ for (unpack ("C*", $string)) -+ { $w += $font_table[$_]; -+ } - } - } - else +Index: libpdf-reuse-perl/Reuse.pm +=================================================================== +--- libpdf-reuse-perl.orig/Reuse.pm 2014-12-16 17:49:43.277638652 +1300 ++++ libpdf-reuse-perl/Reuse.pm 2014-12-16 17:50:32.117713106 +1300 +@@ -1285,8 +1285,10 @@ + + if (ref($PDF::Reuse::Util::font_widths{$Font}) eq 'ARRAY') + { my @font_table = @{ $PDF::Reuse::Util::font_widths{$Font} }; +- for (unpack ("C*", $string)) +- { $w += $font_table[$_]; ++ if (defined $string) { ++ for (unpack ("C*", $string)) ++ { $w += $font_table[$_]; ++ } + } + } + else diff --git a/debian/rules b/debian/rules index d9229f5..2d33f6a 100755 --- a/debian/rules +++ b/debian/rules @@ -1,25 +1,4 @@ #!/usr/bin/make -f -include /usr/share/quilt/quilt.make - -build: build-stamp -build-stamp: $(QUILT_STAMPFN) - dh build - touch $@ - -clean: unpatch - dh $@ - -install: install-stamp -install-stamp: build-stamp - dh install - touch $@ - -binary-arch: - -binary-indep: install +%: dh $@ - -binary: binary-arch binary-indep - -.PHONY: binary binary-arch binary-indep install clean build diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libpdf-reuse-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
