r21525 - in /trunk/libtest-tap-model-perl/debian: ./ changelog compat control copyright rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 15 15:41:52 UTC 2008


Author: gregoa
Date: Sun Jun 15 15:41:52 2008
New Revision: 21525

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

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

Added: trunk/libtest-tap-model-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-tap-model-perl/debian/changelog?rev=21525&op=file
==============================================================================
--- trunk/libtest-tap-model-perl/debian/changelog (added)
+++ trunk/libtest-tap-model-perl/debian/changelog Sun Jun 15 15:41:52 2008
@@ -1,0 +1,6 @@
+libtest-tap-model-perl (0.04-1) unstable; urgency=low
+
+  * Initial Release (Closes: #320775).
+
+ -- Florian Ragwitz <rafl at debianforum.de>  Mon,  5 Sep 2005 23:01:12 +0200
+

Added: trunk/libtest-tap-model-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-tap-model-perl/debian/compat?rev=21525&op=file
==============================================================================
--- trunk/libtest-tap-model-perl/debian/compat (added)
+++ trunk/libtest-tap-model-perl/debian/compat Sun Jun 15 15:41:52 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libtest-tap-model-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-tap-model-perl/debian/control?rev=21525&op=file
==============================================================================
--- trunk/libtest-tap-model-perl/debian/control (added)
+++ trunk/libtest-tap-model-perl/debian/control Sun Jun 15 15:41:52 2008
@@ -1,0 +1,23 @@
+Source: libtest-tap-model-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2), libmodule-build-perl
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Florian Ragwitz <rafl at debianforum.de>
+Standards-Version: 3.6.2
+
+Package: libtest-tap-model-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, 
+Description:  Accessible (queryable, serializable object) result collector
+ This module is a subclass of Test::Harness::Straps (although in an ideal
+ world it would really use delegation).
+ .
+ It uses callbacks in the straps object to construct a deep structure, with all
+ the data known about a test run accessible within.
+ .
+ It's purpose is to ease the processing of test data, for the purpose of
+ generating reports, or something like that.
+ .
+ The niche it fills is creating a way to access test run data, both from a
+ serialized and a real source, and to ease the querying of this data.

Added: trunk/libtest-tap-model-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-tap-model-perl/debian/copyright?rev=21525&op=file
==============================================================================
--- trunk/libtest-tap-model-perl/debian/copyright (added)
+++ trunk/libtest-tap-model-perl/debian/copyright Sun Jun 15 15:41:52 2008
@@ -1,0 +1,24 @@
+This is the debian package for the Test::TAP::Model module.
+It was created by Florian Ragwitz <rafl at debianforum.de> on
+Mon, 05 Sep 2005 23:04:31 +0200
+
+It was downloaded from: http://search.cpan.org/~nuffin/Test-TAP-Model/
+
+The upstream authors are:
+    * Michal Jurosz
+    * Yuval Kogman <nothingmuch at woobling.org> NUFFIN
+    * Max Maischein <corion at cpan.org> CORION
+    * James Mastros <james at mastros.biz> JMASTROS
+    * Scott McWhirter <scott-cpan at NOSPAMkungfuftr.com> KUNGFUFTR
+    * putter (svn handle)
+    * Autrijs Tang <autrijus at autrjius.org> AUTRIJUS
+    * Gaal Yahas <gaal at forum2.org> GAAL
+
+Copyright (c) 2005 the aforementioned authors. All rights reserved. This
+program is free software; you can redistribute it and/or modify it under the
+same terms as Perl itself.
+
+Perl is distributed under your choice of the GNU General Public License or
+the Artistic License.  On Debian GNU/Linux systems, the complete text of the
+GNU General Public License can be found in `/usr/share/common-licenses/GPL'
+and the Artistic Licence in `/usr/share/common-licenses/Artistic'.

Added: trunk/libtest-tap-model-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-tap-model-perl/debian/rules?rev=21525&op=file
==============================================================================
--- trunk/libtest-tap-model-perl/debian/rules (added)
+++ trunk/libtest-tap-model-perl/debian/rules Sun Jun 15 15:41:52 2008
@@ -1,0 +1,55 @@
+#!/usr/bin/make -f
+
+export PERL_MM_USE_DEFAULT=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	$(PERL) Build.PL installdirs=vendor
+	OPTIMIZE="-Wall -O2 -g" $(PERL) Build
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	[ ! -f Build ] || $(PERL) Build distclean
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	$(PERL) Build test
+	$(PERL) Build install destdir=$(TMP)
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs 
+	dh_installchangelogs 
+	dh_perl
+	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-tap-model-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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