--- libtext-reflow-perl-1.09.orig/debian/watch +++ libtext-reflow-perl-1.09/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Text-Reflow/ .*/Text-Reflow-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libtext-reflow-perl-1.09.orig/debian/README.source +++ libtext-reflow-perl-1.09/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. --- libtext-reflow-perl-1.09.orig/debian/rules +++ libtext-reflow-perl-1.09/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +%: + dh --with quilt $@ + +override_dh_compress: + dh_compress -Xexamples --- libtext-reflow-perl-1.09.orig/debian/libtext-reflow-perl.examples +++ libtext-reflow-perl-1.09/debian/libtext-reflow-perl.examples @@ -0,0 +1 @@ +reflow --- libtext-reflow-perl-1.09.orig/debian/copyright +++ libtext-reflow-perl-1.09/debian/copyright @@ -0,0 +1,50 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Martin Ward +Upstream-Source: http://search.cpan.org/dist/Text-Reflow/ +Upstream-Name: Text-Reflow + +Files: * +Copyright: 1994, Michael Larsen + 1994, Martin Ward +License: GPL-3+ + +Files: reflow +Copyright: 1994, Michael Larsen + 1994, Martin Ward +License: GPL-2+ + +Files: debian/* +Copyright: 2009, Jonathan Yu +License-Alias: Perl +License: Artistic | GPL-1+ + +License: Artistic + This program is free software; you can redistribute it and/or modify + it under the terms of the Artistic License, which comes with Perl. + On Debian GNU/Linux systems, the complete text of the Artistic License + can be found in `/usr/share/common-licenses/Artistic' + +License: GPL-1+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 1, or (at your option) + any later version. + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' + +License: GPL-2+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-2' + +License: GPL-3+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3, or (at your option) + any later version. + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-3' --- libtext-reflow-perl-1.09.orig/debian/compat +++ libtext-reflow-perl-1.09/debian/compat @@ -0,0 +1 @@ +7 --- libtext-reflow-perl-1.09.orig/debian/control +++ libtext-reflow-perl-1.09/debian/control @@ -0,0 +1,21 @@ +Source: libtext-reflow-perl +Section: perl +Priority: optional +Build-Depends: perl, debhelper (>= 7.0.50), quilt (>= 0.46-7) +Maintainer: Debian Perl Group +Uploaders: Jonathan Yu +Standards-Version: 3.8.3 +Homepage: http://search.cpan.org/dist/Text-Reflow/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtext-reflow-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtext-reflow-perl/ + +Package: libtext-reflow-perl +Architecture: any +Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends} +Description: Perl module for reflowing files using Knuth's algorithm + Text::Reflow provides a series of utilities that reflow paragraphs in a given + file, filehandle, string or array using Knuth's paragraphing algorithm (as + used in TeX) to pick the optimal places to break lines. The reflow algorithm + tries to keep lines the same length but also tries to break at punctuation, + and to avoid breaking within a proper name or after certain connectives. The + result is more readable since fewer phrases are broken across line breaks. --- libtext-reflow-perl-1.09.orig/debian/changelog +++ libtext-reflow-perl-1.09/debian/changelog @@ -0,0 +1,23 @@ +libtext-reflow-perl (1.09-1build3) trusty; urgency=low + + * Rebuild for Perl 5.18. + + -- Colin Watson Mon, 21 Oct 2013 10:57:34 +0100 + +libtext-reflow-perl (1.09-1build2) precise; urgency=low + + * Rebuild for Perl 5.14. + + -- Colin Watson Tue, 15 Nov 2011 20:18:06 +0000 + +libtext-reflow-perl (1.09-1build1) oneiric; urgency=low + + * Rebuild for Perl 5.12. + + -- Colin Watson Sun, 08 May 2011 13:33:07 +0100 + +libtext-reflow-perl (1.09-1) unstable; urgency=low + + * Initial Release (Closes: #540304) + + -- Jonathan Yu Sat, 03 Oct 2009 12:20:12 -0400 --- libtext-reflow-perl-1.09.orig/debian/patches/fix-pod-errors.patch +++ libtext-reflow-perl-1.09/debian/patches/fix-pod-errors.patch @@ -0,0 +1,15 @@ +Description: fix POD errors +Origin: vendor +Forwarded: no +Author: Jonathan Yu +--- a/Reflow.pm ++++ b/Reflow.pm +@@ -817,7 +817,7 @@ + In other words, increasing this value makes connectives an even + more attractive place to break a line. + +- ++=back + + =head2 EXPORT + --- libtext-reflow-perl-1.09.orig/debian/patches/hashbang.patch +++ libtext-reflow-perl-1.09/debian/patches/hashbang.patch @@ -0,0 +1,11 @@ +Author: gregor herrmann +Description: fix hashbang + +--- a/reflow ++++ b/reflow +@@ -1,4 +1,4 @@ +-#!/usr/local/bin/perl -w ++#!/usr/bin/perl -w + # Version 7.0 + # Original script written by Michael Larsen, larsen@edu.upenn.math + # Modified by Martin Ward, martin@gkc.org.uk --- libtext-reflow-perl-1.09.orig/debian/patches/series +++ libtext-reflow-perl-1.09/debian/patches/series @@ -0,0 +1,2 @@ +fix-pod-errors.patch +hashbang.patch