--- libterm-size-perl-0.2.orig/debian/changelog +++ libterm-size-perl-0.2/debian/changelog @@ -0,0 +1,80 @@ +libterm-size-perl (0.2-4build4) oneiric; urgency=low + + * Rebuild for Perl 5.12. + + -- Colin Watson Sat, 07 May 2011 01:19:19 +0100 + +libterm-size-perl (0.2-4build3) lucid; urgency=low + + * rebuild rest of main for armel armv7/thumb2 optimization; + UbuntuSpec:mobile-lucid-arm-gcc-v7-thumb2 + + -- Alexander Sack Sat, 06 Mar 2010 13:37:28 +0100 + +libterm-size-perl (0.2-4build2) intrepid; urgency=low + + * Rebuild against Perl 5.10 (this time on hppa too). + + -- Colin Watson Sat, 14 Jun 2008 22:03:20 +0100 + +libterm-size-perl (0.2-4build1) intrepid; urgency=low + + * Rebuild for the perl 5.10 transition (LP: #230016). + + -- Pedro Fragoso Sat, 24 May 2008 01:14:52 +0100 + +libterm-size-perl (0.2-4) unstable; urgency=low + + [ gregor herrmann ] + The 'ready for perl 5.10' 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 ${perl:Depends} (and ${misc:Depends}) to Depends to + make the package pick up to correct dependency on perlapi; remove "-V" + from dh_perl call in debian/rules. + * Set Standards-Version to 3.7.3 (no changes). + * Set debhelper compatibility level to 6. + * debian/watch: improve regexp for matching upstream tarballs. + * debian/copyright: rewrite from scratch. + * debian/rules: + - don't install empty /usr/share/perl5 directory if it exists + - use $(CURDIR) instead of `pwd` + - don't ignore errors of $(MAKE) realclean + - move tests to build target + - delete unused/unneeded dh_* calls + - remove DESTDIR variable + - move dh_clean before make distclean + - use dh_clean to remove -stamp files + - introduce install-stamp target depending on build-stamp + - use "$@" for touching stamp files + - use PREFIX and DESTDIR in call to make install + - don't install README any more + + [ Damyan Ivanov ] + * also remove unused dh_installdirs call + + -- gregor herrmann Sun, 27 Jan 2008 20:49:02 +0100 + +libterm-size-perl (0.2-3) unstable; urgency=low + + * New Maintainer: Debian Perl Group. + * Set Standards-Version to 3.7.2 (no changes). + * Add watch file. + * Activate tests in debian/rules. + + -- gregor herrmann Fri, 15 Sep 2006 00:59:25 +0200 + +libterm-size-perl (0.2-2) unstable; urgency=low + + * Adopting package (Closes: #357073). + + -- David Moreno Garza Thu, 16 Mar 2006 18:57:51 -0400 + +libterm-size-perl (0.2-1) unstable; urgency=low + + * Initial Release. + + -- Chip Salzenberg Sat, 15 Feb 2003 15:05:52 -0500 + --- libterm-size-perl-0.2.orig/debian/rules +++ libterm-size-perl-0.2/debian/rules @@ -0,0 +1,79 @@ +#!/usr/bin/make -f +#-*- makefile -*- +# Made with the aid of dh_make, by Craig Small +# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. +# Some lines taken from debmake, by Christoph Lameter. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +OPTIMIZE = -O2 -Wall +ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) +OPTIMIZE += -g +endif + +build: build-stamp +build-stamp: + dh_testdir + + # Add here commands to compile the package. + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="$(OPTIMIZE)" LD_RUN_PATH="" + $(MAKE) test + + touch $@ + +clean: + dh_testdir + dh_testroot + + dh_clean build-stamp install-stamp + + # Add here commands to clean up after the build process. + [ ! -f Makefile ] || $(MAKE) realclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + + # Add here commands to install the package into debian/tmp. + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + [ ! -d $(TMP)/usr/share/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/share/perl5 + + touch $@ + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs Changes + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary --- libterm-size-perl-0.2.orig/debian/watch +++ libterm-size-perl-0.2/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Term-Size/ .*/Term-Size-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libterm-size-perl-0.2.orig/debian/compat +++ libterm-size-perl-0.2/debian/compat @@ -0,0 +1 @@ +6 --- libterm-size-perl-0.2.orig/debian/control +++ libterm-size-perl-0.2/debian/control @@ -0,0 +1,17 @@ +Source: libterm-size-perl +Section: perl +Priority: optional +Build-Depends: perl (>= 5.8.0-7), debhelper (>= 6) +Maintainer: Debian Perl Group +Uploaders: gregor herrmann +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Term-Size/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libterm-size-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libterm-size-perl/ + +Package: libterm-size-perl +Architecture: any +Depends: ${perl:Depends}, ${misc:Depends}, ${shlibs:Depends} +Description: Perl extension for retrieving terminal size + Term::Size is a Perl module which provides a straightforward way to + retrieve the terminal size. --- libterm-size-perl-0.2.orig/debian/copyright +++ libterm-size-perl-0.2/debian/copyright @@ -0,0 +1,22 @@ +Upstream source location: http://search.cpan.org/dist/Term-Size/ + +Files: * +Copyright: Copyright 1997-05-13, Tim Goodwin +License: GPL-1+ | Artistic + You may redistribute them [the files in this directory] under the same + terms as Perl itself. + +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'. + +Files: debian/* +Copyright: + 2003-2006, Chip Salzenberg + 2006, David Moreno Garza + 2006-2008, gregor herrmann +License: GPL-1+ | Artistic + It is assumed that all contributors release their packaging works under the + same term as the module itself. +