r28649 - in /trunk/libtest-number-delta-perl/debian: ./ changelog compat control copyright rules

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Sun Dec 28 06:04:26 UTC 2008


Author: ryan52-guest
Date: Sun Dec 28 06:04:23 2008
New Revision: 28649

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

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

Added: trunk/libtest-number-delta-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-number-delta-perl/debian/changelog?rev=28649&op=file
==============================================================================
--- trunk/libtest-number-delta-perl/debian/changelog (added)
+++ trunk/libtest-number-delta-perl/debian/changelog Sun Dec 28 06:04:23 2008
@@ -1,0 +1,5 @@
+libtest-number-delta-perl (1.03-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Marc 'HE' Brockschmidt <he at debian.org>  Thu, 02 Aug 2007 10:31:42 +0200

Added: trunk/libtest-number-delta-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-number-delta-perl/debian/compat?rev=28649&op=file
==============================================================================
--- trunk/libtest-number-delta-perl/debian/compat (added)
+++ trunk/libtest-number-delta-perl/debian/compat Sun Dec 28 06:04:23 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libtest-number-delta-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-number-delta-perl/debian/control?rev=28649&op=file
==============================================================================
--- trunk/libtest-number-delta-perl/debian/control (added)
+++ trunk/libtest-number-delta-perl/debian/control Sun Dec 28 06:04:23 2008
@@ -1,0 +1,14 @@
+Source: libtest-number-delta-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5), libmodule-build-perl, perl (>= 5.6.0-16), perl-modules
+Maintainer: Marc 'HE' Brockschmidt <he at debian.org>
+Standards-Version: 3.7.2
+
+Package: libtest-number-delta-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, perl-modules 
+Description: compare the difference between numbers against a given tolerance
+ Test::Number::Delta allows perl programmers to define tests for
+ operations that have no exact outcome, but need to return values
+ in a given tolerance range around a certain value.

Added: trunk/libtest-number-delta-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-number-delta-perl/debian/copyright?rev=28649&op=file
==============================================================================
--- trunk/libtest-number-delta-perl/debian/copyright (added)
+++ trunk/libtest-number-delta-perl/debian/copyright Sun Dec 28 06:04:23 2008
@@ -1,0 +1,16 @@
+This is the debian package for the Test::Number::Delta module.
+It was created by Marc 'HE' Brockschmidt <he at debian.org>
+
+The sources where downloaded from CPAN.
+
+The upstream author is David A. Golden <dagolden at cpan.org>
+
+Copyright (c) 2005, 2006 by David A. Golden
+
+The module is licensed for use under the same terms as Perl itself (GPL
+and Artistic license).
+
+On Debian systems the complete text of the GPL and Artistic
+licenses can be found at:
+        /usr/share/common-licenses/GPL and
+        /usr/share/common-licenses/Artistic

Added: trunk/libtest-number-delta-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-number-delta-perl/debian/rules?rev=28649&op=file
==============================================================================
--- trunk/libtest-number-delta-perl/debian/rules (added)
+++ trunk/libtest-number-delta-perl/debian/rules Sun Dec 28 06:04:23 2008
@@ -1,0 +1,70 @@
+#!/usr/bin/make -f
+
+# 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)
+
+build:
+	dh_testdir
+	
+	# Add here commands to compile the package.
+	$(PERL) Build.PL installdirs=vendor
+	$(PERL) Build
+
+	touch build-stamp
+
+clean: 
+	dh_testdir
+	dh_testroot
+
+	# Add here commands to clean up after the build process.
+	-$(PERL) Build clean
+	rm -rf _build build-stamp Build
+
+	dh_clean
+
+install:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Add here commands to install the package into debian/tmp.
+	$(PERL) Build test
+	$(PERL) Build install destdir=$(TMP)
+
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installexamples
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_perl 
+	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 build-stamp clean clean-unpatched binary-indep binary-arch binary

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




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