--- libtest-mocktime-perl-0.09.orig/debian/control +++ libtest-mocktime-perl-0.09/debian/control @@ -0,0 +1,21 @@ +Source: libtest-mocktime-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl, libtest-pod-perl +Maintainer: Debian Perl Group +Uploaders: Ansgar Burchardt , Rene Mayorga +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Test-MockTime/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtest-mocktime-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-mocktime-perl/ + +Package: libtest-mocktime-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: Replace actual time with simulated time + Test::MockTime enables test suites to test code at specific points in time. + Specifically it overrides the localtime, gmtime and time functions at compile + time and then relies on the user supplying a mock time via set_relative_time, + set_absolute_time or set_fixed_time to alter future calls to gmtime, time or + localtime. --- libtest-mocktime-perl-0.09.orig/debian/copyright +++ libtest-mocktime-perl-0.09/debian/copyright @@ -0,0 +1,23 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat +Original-Source: http://search.cpan.org/dist/Test-MockTime/ + +Files: * +Copyright: © 2006-2007, David Dick +License: GPL-1+ | Artistic + This program is free software; you can redistribute it and/or modify it under + the same terms as Perl itself. + (see lib/Test/MockTime.pod) + . + Perl is distributed under the GNU General Public License, either version 1 or + (at your opinion) any later version, and the Artistic License. + . + On Debian systems, the complete text of the GNU General Public License can be + found in /usr/share/common-licenses/GPL and the Artistic license in + /usr/share/common-licenses/Artistic. + +Files: debian/* +Copyright: © 2008, Ansgar Burchardt +License: GPL-1+ | Artistic + This program is free software; you can redistribute it and/or modify it under + the same terms as Perl itself. + --- libtest-mocktime-perl-0.09.orig/debian/watch +++ libtest-mocktime-perl-0.09/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Test-MockTime/ .*/Test-MockTime-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libtest-mocktime-perl-0.09.orig/debian/compat +++ libtest-mocktime-perl-0.09/debian/compat @@ -0,0 +1 @@ +7 --- libtest-mocktime-perl-0.09.orig/debian/changelog +++ libtest-mocktime-perl-0.09/debian/changelog @@ -0,0 +1,19 @@ +libtest-mocktime-perl (0.09-1) unstable; urgency=low + + [ Rene Mayorga ] + * New upstream release + * Add libtest-pod-perl to B-D-I + * add /me to uploaders + + [ Ansgar Burchardt ] + * Remove fix_pod.diff patch (applied upstream), no more patches remain + + Remove quilt from debian/rules, debian/control + + Remove README.source + + -- Rene Mayorga Mon, 07 Jul 2008 21:42:15 -0600 + +libtest-mocktime-perl (0.07-1) unstable; urgency=low + + * Initial Release (Closes: #488385) + + -- Ansgar Burchardt Sat, 28 Jun 2008 15:17:29 +0200 --- libtest-mocktime-perl-0.09.orig/debian/rules +++ libtest-mocktime-perl-0.09/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