--- liblog-trace-perl-1.070.orig/debian/control +++ liblog-trace-perl-1.070/debian/control @@ -0,0 +1,26 @@ +Source: liblog-trace-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.8.8-8), libdata-serializer-perl, + libtest-pod-perl, libtest-pod-coverage-perl +Maintainer: Debian Perl Group +Uploaders: gregor herrmann +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Log-Trace/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/liblog-trace-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/liblog-trace-perl/ + +Package: liblog-trace-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends} +Recommends: libdata-serializer-perl +Description: Perl module to provide a unified approach to tracing + A module to provide a unified approach to tracing. A script can use Log::Trace + qw( < mode > ) to set the behaviour of the TRACE function. + . + By default, the trace functions are exported to the calling package only. You + can export the trace functions to other packages with the "Deep" option. See + "OPTIONS" for more information. + . + All exports are in uppercase (to minimise collisions with "real" functions). --- liblog-trace-perl-1.070.orig/debian/copyright +++ liblog-trace-perl-1.070/debian/copyright @@ -0,0 +1,37 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: BBC +Upstream-Authors: John Alden and Simon Flack with some additions by Piers Kent and Wayne Myers +Upstream-Source: http://search.cpan.org/dist/Log-Trace/ +Upstream-Name: Log-Trace + +Files: * +Copyright: 2005, BBC +License: GPL-2+ + +Files: debian/* +Copyright: 2007-2009, various members of the Debian Perl Group, + cf. debian/changelog +License: GPL-2+ | Artistic | GPL-1+ + +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; version 2 dated June, 1991, or (at your + option) any later version. + On Debian GNU/Linux systems, the complete text of version 2 of the GNU + General Public License can be found in `/usr/share/common-licenses/GPL-2' + +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' --- liblog-trace-perl-1.070.orig/debian/watch +++ liblog-trace-perl-1.070/debian/watch @@ -0,0 +1,3 @@ +# format version number, currently 3; this line is compulsory! +version=3 +http://search.cpan.org/dist/Log-Trace/ .*/Log-Trace-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- liblog-trace-perl-1.070.orig/debian/compat +++ liblog-trace-perl-1.070/debian/compat @@ -0,0 +1 @@ +7 --- liblog-trace-perl-1.070.orig/debian/changelog +++ liblog-trace-perl-1.070/debian/changelog @@ -0,0 +1,27 @@ +liblog-trace-perl (1.070-2) unstable; urgency=low + + [ David Paleino ] + * debian/control: removed myself from Uploaders (Closes: #509507) + + [ gregor herrmann ] + * debian/watch: use dist-based URL. + * debian/control: + - added: Vcs-Svn field (source stanza); Vcs-Browser field (source stanza); + Homepage field (source stanza) + - removed: Homepage pseudo-field (Description); XS-Vcs-Svn fields + - added: ${misc:Depends} to Depends: field + - set Standards-Version to 3.8.0 (no changes) + - add /me to Uploaders + - improve short and long description + * Don't install README anymore. + * Set debhelper compatibility level to 7; adapt + debian/{control,compat,rules}. + * debian/copyright: switch to new format. + + -- gregor herrmann Wed, 07 Jan 2009 17:31:30 +0100 + +liblog-trace-perl (1.070-1) unstable; urgency=low + + * Initial Release. + + -- David Paleino Tue, 18 Sep 2007 12:28:14 +0200 --- liblog-trace-perl-1.070.orig/debian/rules +++ liblog-trace-perl-1.070/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + dh build + touch $@ + +clean: + 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