--- libtext-wrapper-perl-1.02.orig/debian/control +++ libtext-wrapper-perl-1.02/debian/control @@ -0,0 +1,20 @@ +Source: libtext-wrapper-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5), libmodule-build-perl +Build-Depends-Indep: perl, libtest-pod-perl, libtest-pod-coverage-perl +Maintainer: Debian Perl Group +Uploaders: Damyan Ivanov , gregor herrmann +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Text-Wrapper/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtext-wrapper-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-wrapper-perl/ + +Package: libtext-wrapper-perl +Architecture: all +Depends: ${perl:Depends} +Description: Simple word wrapping routine + Text::Wrapper provides simple word wrapping. It breaks long lines, + but does not alter spacing or remove existing line breaks. If you're + looking for more sophisticated text formatting, try the + Text::Format module. --- libtext-wrapper-perl-1.02.orig/debian/copyright +++ libtext-wrapper-perl-1.02/debian/copyright @@ -0,0 +1,24 @@ +This is the debian package for the Text::Wrapper module. +It was created by Ivan Kohler using dh-make-perl. + +Upstream source location: http://search.cpan.org/dist/Text-Wrapper/ + +# Copyright 1998 Christopher J. Madsen +# +# Author: Christopher J. Madsen +# Created: 06 Mar 1998 +# Version: 1.000 (27-Oct-1998) +# +# This program is free software; you can redistribute it and/or modify +# it under the same terms as Perl itself. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either the +# GNU General Public License or the Artistic License for more details. + +Perl is distributed under your choice of the GNU General Public License or +the Artistic License. On Debian GNU/Linux systems, the complete text of the +GNU General Public License can be found in `/usr/share/common-licenses/GPL' +and the Artistic Licence in `/usr/share/common-licenses/Artistic'. + --- libtext-wrapper-perl-1.02.orig/debian/watch +++ libtext-wrapper-perl-1.02/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Text-Wrapper/ .*/Text-Wrapper-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) debian --- libtext-wrapper-perl-1.02.orig/debian/compat +++ libtext-wrapper-perl-1.02/debian/compat @@ -0,0 +1 @@ +5 --- libtext-wrapper-perl-1.02.orig/debian/changelog +++ libtext-wrapper-perl-1.02/debian/changelog @@ -0,0 +1,46 @@ +libtext-wrapper-perl (1.02-1) unstable; urgency=low + + * New upstream release. + * debian/copyright: add upstream source location. + * Add /me to Uploaders. + + -- gregor herrmann Sun, 11 May 2008 15:22:50 +0200 + +libtext-wrapper-perl (1.01-1) unstable; urgency=low + + * Take over for the Debian Perl Group; Closes: #479671 -- RFA + + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Changed: + Maintainer set to Debian Perl Group (was: Ivan Kohler ); + Uploaders. + * add myself to Uploaders + * refresh debian/rules from current dh-make-perl templates + + stop installing redundant README + * add debian/watch + + * New upstream release + * DH compatlevel 5 + * add libmodule-build to B-D, libtest-pod-perl and libtest-pod-coverage-perl + to B-D-I + * Standards-Version: 3.7.3 + + change Section from interpreters to perl + * install examples/* + + -- Damyan Ivanov Tue, 06 May 2008 19:24:29 +0300 + +libtext-wrapper-perl (1.000-2) unstable; urgency=low + + * debian/copyright pedantry (closes: Bug#153340, Bug#153387) + * binary-arch vs. binary-indep (closes: Bug#153361) + + -- Ivan Kohler Sat, 7 Sep 2002 06:18:48 -0700 + +libtext-wrapper-perl (1.000-1) unstable; urgency=low + + * Initial Release (closes: Bug#107126) + + -- Ivan Kohler Sun, 12 Aug 2001 03:05:57 -0700 + --- libtext-wrapper-perl-1.02.orig/debian/rules +++ libtext-wrapper-perl-1.02/debian/rules @@ -0,0 +1,64 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. +# +# It was later modified by Jason Kohles +# http://www.jasonkohles.com/ to support Module::Build installed modules + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# If set to a true value then MakeMaker's prompt function will +# always return the default without waiting for user input. +export PERL_MM_USE_DEFAULT=1 + +PERL ?= /usr/bin/perl +PACKAGE = $(shell dh_listpackages) +TMP = $(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + # Add commands to compile the package here + $(PERL) Build.PL installdirs=vendor + $(PERL) Build + $(PERL) Build test + touch $@ + +clean: + dh_testdir + dh_testroot + dh_clean build-stamp install-stamp + # Add commands to clean up after the build process here + [ ! -f Build ] || $(PERL) Build --allow_mb_mismatch 1 distclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + # Add commands to install the package into $(TMP) here + $(PERL) Build install destdir=$(TMP) create_packlist=0 + touch $@ + +binary-arch: +# We have nothing to do here for an architecture-independent package + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installexamples example/* + dh_installchangelogs Changes + dh_perl + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install