r21518 - in /trunk/libtest-tap-htmlmatrix-perl/debian: ./ changelog compat control copyright rules
gregoa at users.alioth.debian.org
gregoa at users.alioth.debian.org
Sun Jun 15 15:39:15 UTC 2008
Author: gregoa
Date: Sun Jun 15 15:39:15 2008
New Revision: 21518
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=21518
Log:
[svn-inject] Applying Debian modifications to trunk
Added:
trunk/libtest-tap-htmlmatrix-perl/debian/
trunk/libtest-tap-htmlmatrix-perl/debian/changelog
trunk/libtest-tap-htmlmatrix-perl/debian/compat
trunk/libtest-tap-htmlmatrix-perl/debian/control
trunk/libtest-tap-htmlmatrix-perl/debian/copyright
trunk/libtest-tap-htmlmatrix-perl/debian/rules (with props)
Added: trunk/libtest-tap-htmlmatrix-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-tap-htmlmatrix-perl/debian/changelog?rev=21518&op=file
==============================================================================
--- trunk/libtest-tap-htmlmatrix-perl/debian/changelog (added)
+++ trunk/libtest-tap-htmlmatrix-perl/debian/changelog Sun Jun 15 15:39:15 2008
@@ -1,0 +1,6 @@
+libtest-tap-htmlmatrix-perl (0.04-1) unstable; urgency=low
+
+ * Initial Release (Closes: #320778).
+
+ -- Florian Ragwitz <rafl at debianforum.de> Mon, 5 Sep 2005 23:15:58 +0200
+
Added: trunk/libtest-tap-htmlmatrix-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-tap-htmlmatrix-perl/debian/compat?rev=21518&op=file
==============================================================================
--- trunk/libtest-tap-htmlmatrix-perl/debian/compat (added)
+++ trunk/libtest-tap-htmlmatrix-perl/debian/compat Sun Jun 15 15:39:15 2008
@@ -1,0 +1,1 @@
+4
Added: trunk/libtest-tap-htmlmatrix-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-tap-htmlmatrix-perl/debian/control?rev=21518&op=file
==============================================================================
--- trunk/libtest-tap-htmlmatrix-perl/debian/control (added)
+++ trunk/libtest-tap-htmlmatrix-perl/debian/control Sun Jun 15 15:39:15 2008
@@ -1,0 +1,15 @@
+Source: libtest-tap-htmlmatrix-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2), libmodule-build-perl
+Build-Depends-Indep: perl (>= 5.8.0-7), libtest-tap-model-perl, libpetal-perl, liburi-perl
+Maintainer: Florian Ragwitz <rafl at debianforum.de>
+Standards-Version: 3.6.2
+
+Package: libtest-tap-htmlmatrix-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libtest-tap-model-perl, libpetal-perl, liburi-perl
+Description: Creates colorful matrix of Test::Harness
+ This module is a wrapper for a template and some visualization classes, that
+ knows to take a Test::TAP::Model object, which encapsulates test results,
+ and produce a pretty html file.
Added: trunk/libtest-tap-htmlmatrix-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-tap-htmlmatrix-perl/debian/copyright?rev=21518&op=file
==============================================================================
--- trunk/libtest-tap-htmlmatrix-perl/debian/copyright (added)
+++ trunk/libtest-tap-htmlmatrix-perl/debian/copyright Sun Jun 15 15:39:15 2008
@@ -1,0 +1,24 @@
+This is the debian package for the Test::TAP::HTMLMatrix module.
+It was created by Florian Ragwitz <rafl at debianforum.de> on
+Mon, 05 Sep 2005 23:18:06 +0200
+
+It was downloaded from: http://search.cpan.org/~gaal/Test-TAP-HTMLMatrix/
+
+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-htmlmatrix-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-tap-htmlmatrix-perl/debian/rules?rev=21518&op=file
==============================================================================
--- trunk/libtest-tap-htmlmatrix-perl/debian/rules (added)
+++ trunk/libtest-tap-htmlmatrix-perl/debian/rules Sun Jun 15 15:39:15 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-htmlmatrix-perl/debian/rules
------------------------------------------------------------------------------
svn:executable = *
More information about the Pkg-perl-cvs-commits
mailing list