r21483 - in /trunk/libtemplate-timer-perl/debian: ./ changelog compat control copyright rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 15 15:26:17 UTC 2008


Author: gregoa
Date: Sun Jun 15 15:26:17 2008
New Revision: 21483

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

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

Added: trunk/libtemplate-timer-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-timer-perl/debian/changelog?rev=21483&op=file
==============================================================================
--- trunk/libtemplate-timer-perl/debian/changelog (added)
+++ trunk/libtemplate-timer-perl/debian/changelog Sun Jun 15 15:26:17 2008
@@ -1,0 +1,21 @@
+libtemplate-timer-perl (0.04-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix FTBFS with Perl 5.10.  Closes: #468017. 
+
+ -- Mark Hymers <mhy at debian.org>  Sat, 05 Apr 2008 16:47:13 +0100
+
+libtemplate-timer-perl (0.04-1) unstable; urgency=low
+
+  * New upstream release.
+  * Updated Maintainer field with my new mail address.
+  * Cleaned up debian/rules.
+
+ -- Florian Ragwitz <rafl at debian.org>  Fri, 27 Jan 2006 07:05:30 +0100
+
+libtemplate-timer-perl (0.02-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Florian Ragwitz <florian at mookooh.org>  Mon, 11 Jul 2005 15:01:24 +0200
+

Added: trunk/libtemplate-timer-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-timer-perl/debian/compat?rev=21483&op=file
==============================================================================
--- trunk/libtemplate-timer-perl/debian/compat (added)
+++ trunk/libtemplate-timer-perl/debian/compat Sun Jun 15 15:26:17 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libtemplate-timer-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-timer-perl/debian/control?rev=21483&op=file
==============================================================================
--- trunk/libtemplate-timer-perl/debian/control (added)
+++ trunk/libtemplate-timer-perl/debian/control Sun Jun 15 15:26:17 2008
@@ -1,0 +1,15 @@
+Source: libtemplate-timer-perl
+Section: perl
+Priority: optional
+Maintainer: Florian Ragwitz <rafl at debian.org>
+Build-Depends: debhelper (>= 4.0.0)
+Build-Depends-Indep: perl, libtemplate-perl
+Standards-Version: 3.6.2
+
+Package: libtemplate-timer-perl
+Architecture: all
+Depends: ${perl:Depends}, libtemplate-perl
+Description: Rudimentary profiling for Template Toolkit
+ Template::Timer provides inline timings of the template processing througout
+ your code. It's an overridden version of Template::Context that wraps the
+ process() and include() methods.

Added: trunk/libtemplate-timer-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-timer-perl/debian/copyright?rev=21483&op=file
==============================================================================
--- trunk/libtemplate-timer-perl/debian/copyright (added)
+++ trunk/libtemplate-timer-perl/debian/copyright Sun Jun 15 15:26:17 2008
@@ -1,0 +1,16 @@
+This package was debianized by Florian Ragwitz <florian at mookooh.org> on
+Mon, 11 Jul 2005 15:01:24 +0200.
+
+It was downloaded from http://search.cpan.org/~petdance/Template-Timer/
+
+Copyright Holder: Copyright 2004 Andy Lester, All Rights Reserved.
+
+License:
+
+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/libtemplate-timer-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-timer-perl/debian/rules?rev=21483&op=file
==============================================================================
--- trunk/libtemplate-timer-perl/debian/rules (added)
+++ trunk/libtemplate-timer-perl/debian/rules Sun Jun 15 15:26:17 2008
@@ -1,0 +1,54 @@
+#!/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 $(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_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/libtemplate-timer-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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