r21504 - in /trunk/libtest-nowarnings-perl/debian: ./ changelog compat control copyright rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 15 15:34:00 UTC 2008


Author: gregoa
Date: Sun Jun 15 15:34:00 2008
New Revision: 21504

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

Added:
    trunk/libtest-nowarnings-perl/debian/
    trunk/libtest-nowarnings-perl/debian/changelog
    trunk/libtest-nowarnings-perl/debian/compat
    trunk/libtest-nowarnings-perl/debian/control
    trunk/libtest-nowarnings-perl/debian/copyright
    trunk/libtest-nowarnings-perl/debian/rules   (with props)

Added: trunk/libtest-nowarnings-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-nowarnings-perl/debian/changelog?rev=21504&op=file
==============================================================================
--- trunk/libtest-nowarnings-perl/debian/changelog (added)
+++ trunk/libtest-nowarnings-perl/debian/changelog Sun Jun 15 15:34:00 2008
@@ -1,0 +1,22 @@
+libtest-nowarnings-perl (0.082-1.3) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/rules: Don't fail when perl is smart enough not to create
+    empty dirs. (Closes: 467812)
+
+ -- Marc 'HE' Brockschmidt <he at debian.org>  Sun, 06 Apr 2008 12:21:41 +0200
+
+libtest-nowarnings-perl (0.082-1) unstable; urgency=low
+
+  * New upstream release (Closes: #348599).
+  * Introduced a version in (build-)dep to libtest-tester-perl.
+  * Changed Maintainer field to my new maintainer address.
+
+ -- Florian Ragwitz <rafl at debian.org>  Wed, 18 Jan 2006 23:23:18 +0100
+
+libtest-nowarnings-perl (0.08-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Florian Ragwitz <florian at mookooh.org>  Tue, 12 Jul 2005 15:20:23 +0200
+

Added: trunk/libtest-nowarnings-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-nowarnings-perl/debian/compat?rev=21504&op=file
==============================================================================
--- trunk/libtest-nowarnings-perl/debian/compat (added)
+++ trunk/libtest-nowarnings-perl/debian/compat Sun Jun 15 15:34:00 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libtest-nowarnings-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-nowarnings-perl/debian/control?rev=21504&op=file
==============================================================================
--- trunk/libtest-nowarnings-perl/debian/control (added)
+++ trunk/libtest-nowarnings-perl/debian/control Sun Jun 15 15:34:00 2008
@@ -1,0 +1,25 @@
+Source: libtest-nowarnings-perl
+Section: perl
+Priority: optional
+Maintainer: Florian Ragwitz <rafl at debian.org>
+Build-Depends: debhelper (>= 4.0.0)
+Build-Depends-Indep: perl, libtest-tester-perl (>= 0.103)
+Standards-Version: 3.6.2
+
+Package: libtest-nowarnings-perl
+Architecture: all
+Depends: ${perl:Depends}, libtest-tester-perl (>= 0.103)
+Description: Perl module to make sure you didn't emit any warnings while testing
+ In general, your tests shouldn't produce warnings. This modules causes any
+ warnings to be captured and stored. It automatically adds an extra test that
+ will run when your script ends to check that there were no warnings. If there
+ were any warings, the test will give a "not ok" and diagnostics of where, when
+ and what the warning was, including a stack trace of what was going on when
+ the it occurred.
+ .
+ If some of your tests are supposed to produce warnings then you should be
+ capturing and checking them with Test::Warn, that way Test::NoWarnings will
+ not see them and so not complain.
+ .
+ The test is run by an END block in Test::NoWarnings. It will not be run when
+ any forked children exit.

Added: trunk/libtest-nowarnings-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-nowarnings-perl/debian/copyright?rev=21504&op=file
==============================================================================
--- trunk/libtest-nowarnings-perl/debian/copyright (added)
+++ trunk/libtest-nowarnings-perl/debian/copyright Sun Jun 15 15:34:00 2008
@@ -1,0 +1,12 @@
+This package was debianized by Florian Ragwitz <florian at mookooh.org> on
+Tue, 12 Jul 2005 15:20:23 +0200.
+
+It was downloaded from http://search.cpan.org/~fdaly/Test-NoWarnings/
+
+Copyright Holder: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>
+
+License:
+
+This program is free software and comes with no warranty. It is distributed
+under the LGPL license. On Debian GNU/Linux systems you can find the full text
+of the LGPL license in /usr/share/common-licenses/LGPL.

Added: trunk/libtest-nowarnings-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-nowarnings-perl/debian/rules?rev=21504&op=file
==============================================================================
--- trunk/libtest-nowarnings-perl/debian/rules (added)
+++ trunk/libtest-nowarnings-perl/debian/rules Sun Jun 15 15:34:00 2008
@@ -1,0 +1,56 @@
+#!/usr/bin/make -f
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE)
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	-$(MAKE) distclean
+	dh_clean build-stamp install-stamp
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5/
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_perl
+	dh_installchangelogs CHANGES
+	dh_link
+	dh_strip
+	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

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




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