--- libdevel-caller-perl-2.03.orig/debian/changelog +++ libdevel-caller-perl-2.03/debian/changelog @@ -0,0 +1,51 @@ +libdevel-caller-perl (2.03-1) unstable; urgency=low + + [ Jose Luis Rivas ] + * New upstream release + * debian/rules: touch $@ instead of *-stamp. + + [ Niko Tyni ] + * Update debian/copyright. + * No need to remove upstream MacOS resource forks in debian/rules anymore. + * Don't set INSTALLVENDORLIB etc., conditionally remove the empty + usr/share/perl5 directory instead. + + -- Niko Tyni Sun, 13 Jan 2008 21:59:54 +0200 + +libdevel-caller-perl (2.02-1) unstable; urgency=low + + [ gregor herrmann ] + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Removed: XS- + Vcs-Svn fields. + * debian/rules: + - remove empty /usr/share/perl5 directory + - let install-stamp depend on build-stamp + - don't create .packlist file + + [ Damyan Ivanov ] + * [debian/watch] Stop capturing file extension + + [ Martín Ferrari ] + * New upstream release. + * debian/control: + - bumped Standards-Version (no changes). + - removed libmodule-build-perl dependency (the module now uses MakeMaker). + * debian/watch: removed unneeded comment, changed URL to match dist/ page. + * debian/copyright: converted to new format, updated copyright info. + * debian/rules: mostly rewritten, because of the switch to MakeMaker and + some incorrect debhelper invocations. + + [ Niko Tyni ] + * Add myself to Uploaders. + * Set INSTALLVENDORLIB=/usr/lib/perl5/ to prevent Extutils::MakeMaker + creating an empty /usr/share/perl5 directory. + * Remove a useless call to dh_installexamples. + + -- Niko Tyni Sat, 29 Dec 2007 12:00:04 +0200 + +libdevel-caller-perl (0.11-1) unstable; urgency=low + + * Initial Release. + + -- Alexis Sukrieh Fri, 17 Aug 2007 19:52:57 +0200 --- libdevel-caller-perl-2.03.orig/debian/watch +++ libdevel-caller-perl-2.03/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Devel-Caller/ .*/Devel-Caller-v?(\d.*).(?:tar.gz|tar|tgz) --- libdevel-caller-perl-2.03.orig/debian/control +++ libdevel-caller-perl-2.03/debian/control @@ -0,0 +1,23 @@ +Source: libdevel-caller-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5.0.0), perl (>= 5.8.8-7), + libpadwalker-perl (>= 0.08) +Maintainer: Debian Perl Group +Uploaders: Alexis Sukrieh , Niko Tyni +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Devel-Caller/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdevel-caller-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-caller-perl/ + +Package: libdevel-caller-perl +Architecture: any +Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends}, + libpadwalker-perl (>= 0.08) +Description: Perl module for enhancing the caller() function + Devel::Caller provides four functions for introspecting your code deeper than + the internal function "caller()" does. + . + You can access arguments passed to a function or even the code reference of + the subroutine being invoked at the call frame indicated by the given level. + --- libdevel-caller-perl-2.03.orig/debian/rules +++ libdevel-caller-perl-2.03/debian/rules @@ -0,0 +1,79 @@ +#!/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. + +# 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 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +# Allow disabling build optimation by setting noopt in +# $DEB_BUILD_OPTIONS +CFLAGS = -Wall -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +build: build-stamp +build-stamp: + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH="" + $(MAKE) test + touch $@ + +clean: + dh_testdir + dh_testroot + [ ! -f Makefile ] || $(MAKE) realclean + dh_clean build-stamp install-stamp + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + [ ! -d $(TMP)/usr/share/perl5/ ] || \ + rmdir --verbose --parents --ignore-fail-on-non-empty $(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_shlibdeps + dh_strip + dh_perl + dh_compress + dh_fixperms + dh_installdeb + 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 --- libdevel-caller-perl-2.03.orig/debian/copyright +++ libdevel-caller-perl-2.03/debian/copyright @@ -0,0 +1,28 @@ +This is the debian package for the Devel-Caller module. +It was created by Alexis Sukrieh using dh-make-perl. + +It was downloaded from http://search.cpan.org/dist/Devel-Caller/. + +The upstream author is: + Richard Clamp with close reference to PadWalker by + Robin Houston. + +Files: * +Copyright: © 2002, 2003, 2006, 2007, 2008 Richard Clamp. +License: Artistic | GPL-1+ + All Rights Reserved. This module is free software. It may be used, + redistributed and/or modified 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: © 2007 Martín Ferrari + © 2007 gregor herrmann + © 2007 Damyan Ivanov + © 2007 Alexis Sukrieh +License: Artistic | GPL-1+ + This module is licensed under the same terms as the software itself (see + above). --- libdevel-caller-perl-2.03.orig/debian/compat +++ libdevel-caller-perl-2.03/debian/compat @@ -0,0 +1 @@ +5