--- libpdf-reuse-perl-0.35.orig/debian/control +++ libpdf-reuse-perl-0.35/debian/control @@ -0,0 +1,29 @@ +Source: libpdf-reuse-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7), quilt +Build-Depends-Indep: perl (>= 5.8.8-7), libcompress-zlib-perl, + libfont-ttf-perl, libtext-pdf-perl +Maintainer: Debian Perl Group +Uploaders: Vincent Danjean , + gregor herrmann +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/PDF-Reuse/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libpdf-reuse-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libpdf-reuse-perl/ + +Package: libpdf-reuse-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libcompress-zlib-perl +Recommends: libfont-ttf-perl, libtext-pdf-perl +Description: Reuse and mass produce PDF documents + PDF::Reuse could be used when you want to mass produce similar (but not + identical) PDF documents and reuse templates, JavaScripts and some other + components. It is functional to be fast, and to give your programs capacity to + produce many pages per second and very big PDF documents if necessary. + . + The module produces PDF-1.4 files. Some features of PDF-1.5, like "object + streams" and "cross reference streams", are supported, but only at an + experimental level. More testing is needed. (If you get problems with a new + document from Acrobat 6 or 7, try to save it or recreate it as a PDF-1.4 + document first, before using it together with this module.) --- libpdf-reuse-perl-0.35.orig/debian/copyright +++ libpdf-reuse-perl-0.35/debian/copyright @@ -0,0 +1,25 @@ +This is the debian package for the PDF-Reuse module. +It was created by Vincent Danjean using dh-make-perl. + +It was downloaded from the Comprehensive Perl Archive Network (CPAN): +http://search.cpan.org/dist/PDF-Reuse/ + +The upstream author is Lars Lundberg . + +Copyright (C) 2003 - 2004 Lars Lundberg, Solidez HB. +Copyright (C) 2005 - 2007 Karin Lundberg. All rights reserved. +Copyright (C) 2008 - Lars Lundberg, Solidez HB. + +License: + + PDF::Reuse is dual licensed under the same terms as Perl itself. + + This means at your choice, either the Perl Artistic License, or + the GNU GPL version 1 or higher. + + On a Debian system a copy of the Perl Artistic license can be found in + the file '/usr/share/common-licenses/Artistic' and a copy of the GPL + version can be found in the file '/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2007, Vincent Danjean and +is licensed under the same licenses as the software itself (see above). --- libpdf-reuse-perl-0.35.orig/debian/watch +++ libpdf-reuse-perl-0.35/debian/watch @@ -0,0 +1,3 @@ +version=3 +http://search.cpan.org/dist/PDF-Reuse/ .*/PDF-Reuse-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ + --- libpdf-reuse-perl-0.35.orig/debian/compat +++ libpdf-reuse-perl-0.35/debian/compat @@ -0,0 +1 @@ +7 --- libpdf-reuse-perl-0.35.orig/debian/README.source +++ libpdf-reuse-perl-0.35/debian/README.source @@ -0,0 +1,5 @@ +This package uses quilt to manage all modifications to the upstream +source. Changes are stored in the source package as diffs in +debian/patches and applied during the build. + +See /usr/share/doc/quilt/README.source for a detailed explanation. --- libpdf-reuse-perl-0.35.orig/debian/changelog +++ libpdf-reuse-perl-0.35/debian/changelog @@ -0,0 +1,42 @@ +libpdf-reuse-perl (0.35-2) unstable; urgency=low + + * debian/control: + - switch Vcs-Browser field to ViewSVN + - mention module name in long description + * Fix "Uninitialized value $string in unpack" by creating + uninitialized_warning.patch which checks for $string before using it; + thanks to Patrick Matthäi for the bug report and the patch + (closes: #506214). + * Add patch fix-pod.patch, avoids an error from pod2man. + * Add quilt framework and debian/README.source. + + -- gregor herrmann Sun, 07 Dec 2008 22:03:53 +0100 + +libpdf-reuse-perl (0.35-1) unstable; urgency=low + + * New upstream release. + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Removed: XS- + Vcs-Svn fields. + * debian/control: add libfont-ttf-perl, libtext-pdf-perl to + Build-Depends-Indep and Recommends. + * debian/control: add /me to Uploaders. + * Use dist-based URL in debian/watch. + * debian/control: Move libcompress-zlib-perl from Build-Depends to + Build-Depends-Indep. + * debian/copyright: point to specific upstream source location and update + copyright information. + * Remove empty debian/patches directory and quilt/patchutils dependencies. + * Switch from cdbs to debhelper 7 (debian/{rules,control.compat}). + * Don't install README any more. + * Set Standards-Version to 3.8.0 (no changes). + + -- gregor herrmann Sun, 06 Jul 2008 23:03:30 +0200 + +libpdf-reuse-perl (0.33-1) unstable; urgency=low + + * Initial release. (Closes: #408064: ITP: libpdf-reuse-perl -- Reuse + and mass produce PDF documents - Debian Bug report logs) + + -- Vincent Danjean Wed, 24 Jan 2007 16:26:27 +0100 + --- libpdf-reuse-perl-0.35.orig/debian/rules +++ libpdf-reuse-perl-0.35/debian/rules @@ -0,0 +1,25 @@ +#!/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 --- libpdf-reuse-perl-0.35.orig/debian/patches/fix-pod.patch +++ libpdf-reuse-perl-0.35/debian/patches/fix-pod.patch @@ -0,0 +1,13 @@ +Author: gregor herrmann +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 ++ +