r22457 - in /trunk/libtest-mocktime-perl: debian/ debian/changelog debian/compat debian/control debian/copyright debian/rules debian/watch lib/Test/MockTime.pod

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Sun Jun 29 10:23:25 UTC 2008


Author: ansgar-guest
Date: Sun Jun 29 10:23:24 2008
New Revision: 22457

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=22457
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libtest-mocktime-perl/debian/
    trunk/libtest-mocktime-perl/debian/changelog
    trunk/libtest-mocktime-perl/debian/compat
    trunk/libtest-mocktime-perl/debian/control
    trunk/libtest-mocktime-perl/debian/copyright
    trunk/libtest-mocktime-perl/debian/rules   (with props)
    trunk/libtest-mocktime-perl/debian/watch
Modified:
    trunk/libtest-mocktime-perl/lib/Test/MockTime.pod

Added: trunk/libtest-mocktime-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-mocktime-perl/debian/changelog?rev=22457&op=file
==============================================================================
--- trunk/libtest-mocktime-perl/debian/changelog (added)
+++ trunk/libtest-mocktime-perl/debian/changelog Sun Jun 29 10:23:24 2008
@@ -1,0 +1,5 @@
+libtest-mocktime-perl (0.07-1) UNRELEASED; urgency=low
+
+  * Initial Release (Closes: #488385)
+
+ -- Ansgar Burchardt <ansgar at 43-1.org>  Sat, 28 Jun 2008 15:17:29 +0200

Added: trunk/libtest-mocktime-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-mocktime-perl/debian/compat?rev=22457&op=file
==============================================================================
--- trunk/libtest-mocktime-perl/debian/compat (added)
+++ trunk/libtest-mocktime-perl/debian/compat Sun Jun 29 10:23:24 2008
@@ -1,0 +1,1 @@
+7

Added: trunk/libtest-mocktime-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-mocktime-perl/debian/control?rev=22457&op=file
==============================================================================
--- trunk/libtest-mocktime-perl/debian/control (added)
+++ trunk/libtest-mocktime-perl/debian/control Sun Jun 29 10:23:24 2008
@@ -1,0 +1,21 @@
+Source: libtest-mocktime-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Ansgar Burchardt <ansgar at 43-1.org>
+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.

Added: trunk/libtest-mocktime-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-mocktime-perl/debian/copyright?rev=22457&op=file
==============================================================================
--- trunk/libtest-mocktime-perl/debian/copyright (added)
+++ trunk/libtest-mocktime-perl/debian/copyright Sun Jun 29 10:23:24 2008
@@ -1,0 +1,22 @@
+Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat
+Original-Source: http://search.cpan.org/dist/Test-MockTime/
+
+Files: *
+Copyright: © 2006-2007, David Dick <ddick at cpan.org>
+License: GPL-1+ | Artistic
+ This program is free software; you can redistribute it and/or modify it under
+ the same terms as Perl itself.
+ .
+ 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 <ansgar at 43-1.org>
+License: GPL-1+ | Artistic
+ This program is free software; you can redistribute it and/or modify it under
+ the same terms as Perl itself.
+

Added: trunk/libtest-mocktime-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-mocktime-perl/debian/rules?rev=22457&op=file
==============================================================================
--- trunk/libtest-mocktime-perl/debian/rules (added)
+++ trunk/libtest-mocktime-perl/debian/rules Sun Jun 29 10:23:24 2008
@@ -1,0 +1,34 @@
+#!/usr/bin/make -f
+
+# 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 build
+	touch $@
+
+clean:
+	dh clean
+
+install: install-stamp
+install-stamp: build-stamp
+	dh install
+	touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: install
+	dh binary-indep
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install

Propchange: trunk/libtest-mocktime-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libtest-mocktime-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-mocktime-perl/debian/watch?rev=22457&op=file
==============================================================================
--- trunk/libtest-mocktime-perl/debian/watch (added)
+++ trunk/libtest-mocktime-perl/debian/watch Sun Jun 29 10:23:24 2008
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Test-MockTime/   .*/Test-MockTime-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$

Modified: trunk/libtest-mocktime-perl/lib/Test/MockTime.pod
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-mocktime-perl/lib/Test/MockTime.pod?rev=22457&op=diff
==============================================================================
--- trunk/libtest-mocktime-perl/lib/Test/MockTime.pod (original)
+++ trunk/libtest-mocktime-perl/lib/Test/MockTime.pod Sun Jun 29 10:23:24 2008
@@ -40,6 +40,8 @@
 calls to gmtime,time or localtime.
 
 =head1 Functions
+
+=over
 
 =item set_absolute_time
 
@@ -115,6 +117,8 @@
 restore the default time handling values.  C<restore_time> is an alias. When
 exported with the 'all' tag, this subroutine is exported as C<restore_time>.
 
+=back
+
 =head1 AUTHOR
 
 David Dick <ddick at cpan.org>




More information about the Pkg-perl-cvs-commits mailing list