r4351 - in /packages/libtemplate-plugin-class-perl/trunk/debian: ./ changelog compat control copyright rules watch

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Thu Nov 23 13:33:55 CET 2006


Author: eloy
Date: Thu Nov 23 13:33:54 2006
New Revision: 4351

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=4351
Log:
Load libtemplate-plugin-class-perl-0.13 into
packages/libtemplate-plugin-class-perl/trunk.

Added:
    packages/libtemplate-plugin-class-perl/trunk/debian/
    packages/libtemplate-plugin-class-perl/trunk/debian/changelog
    packages/libtemplate-plugin-class-perl/trunk/debian/compat
    packages/libtemplate-plugin-class-perl/trunk/debian/control
    packages/libtemplate-plugin-class-perl/trunk/debian/copyright
    packages/libtemplate-plugin-class-perl/trunk/debian/rules   (with props)
    packages/libtemplate-plugin-class-perl/trunk/debian/watch

Added: packages/libtemplate-plugin-class-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libtemplate-plugin-class-perl/trunk/debian/changelog?rev=4351&op=file
==============================================================================
--- packages/libtemplate-plugin-class-perl/trunk/debian/changelog (added)
+++ packages/libtemplate-plugin-class-perl/trunk/debian/changelog Thu Nov 23 13:33:54 2006
@@ -1,0 +1,27 @@
+libtemplate-plugin-class-perl (0.13-1) unstable; urgency=low
+
+  * New upstream release
+  * Switched to my debian.org email address.
+
+ -- Stephen Quinney <sjq at debian.org>  Fri, 26 May 2006 18:33:11 +0100
+
+libtemplate-plugin-class-perl (0.12-2) unstable; urgency=low
+
+  * debian/watch - Updated URL to stop lookups randomly failing.
+
+ -- Stephen Quinney <sjq at debian.org>  Sat, 11 Jun 2005 14:07:53 +0100
+
+libtemplate-plugin-class-perl (0.12-1) unstable; urgency=low
+
+  * New upstream release, small bug fixes.
+  * Uploaded for first time, closes: #226902.
+
+ -- Stephen Quinney <sjq at debian.org>  Fri, 23 Jan 2004 10:44:25 +0000
+
+libtemplate-plugin-class-perl (0.11-1) unstable; urgency=low
+
+  *  Inital release.
+
+ -- Stephen Quinney <sjq at debian.org>  Fri,  9 Jan 2004 10:57:22 +0000
+
+

Added: packages/libtemplate-plugin-class-perl/trunk/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libtemplate-plugin-class-perl/trunk/debian/compat?rev=4351&op=file
==============================================================================
--- packages/libtemplate-plugin-class-perl/trunk/debian/compat (added)
+++ packages/libtemplate-plugin-class-perl/trunk/debian/compat Thu Nov 23 13:33:54 2006
@@ -1,0 +1,1 @@
+4

Added: packages/libtemplate-plugin-class-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libtemplate-plugin-class-perl/trunk/debian/control?rev=4351&op=file
==============================================================================
--- packages/libtemplate-plugin-class-perl/trunk/debian/control (added)
+++ packages/libtemplate-plugin-class-perl/trunk/debian/control Thu Nov 23 13:33:54 2006
@@ -1,0 +1,17 @@
+Source: libtemplate-plugin-class-perl
+Section: perl
+Priority: optional
+Maintainer: Stephen Quinney <sjq at debian.org>
+Build-Depends-Indep: perl (>= 5.6.0-16), libtemplate-perl, libmodule-build-perl
+Build-Depends: debhelper (>= 4)
+Standards-Version: 3.7.2
+
+Package: libtemplate-plugin-class-perl
+Architecture: all
+Depends: ${perl:Depends}, libtemplate-perl
+Description: Call methods of arbitrary classes in perl Template Toolkit
+ This is a plugin for the perl Template Toolkit.
+ .
+ Template::Plugin::Class allows you to call class methods on arbitrary
+ classes.  One particularly good use for this is in Class::DBI style
+ applications.

Added: packages/libtemplate-plugin-class-perl/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libtemplate-plugin-class-perl/trunk/debian/copyright?rev=4351&op=file
==============================================================================
--- packages/libtemplate-plugin-class-perl/trunk/debian/copyright (added)
+++ packages/libtemplate-plugin-class-perl/trunk/debian/copyright Thu Nov 23 13:33:54 2006
@@ -1,0 +1,26 @@
+This package was debianized by Stephen Quinney <stephen at jadevine.org.uk> on
+Fri Jan  9 10:57:38 GMT 2004
+
+It was downloaded from http://search.cpan.org/CPAN/authors/id/R/RC/RCLAMP/
+
+Author: Richard Clamp <richardc at unixbeard.net>
+
+Copyright:
+
+     Copyright (C) 2003, 2004, 2006 Richard Clamp. All Rights Reserved.
+
+     This module is free software; you can redistribute it and/or
+     modify it under the same terms as Perl itself.
+
+     This means that you can redistribute it and/or modify it under
+     the terms of either:
+ 
+     a) the GNU General Public License as published by the Free
+        Software Foundation; either version 1, or (at your option) any
+        later version, or
+ 
+     b) the "Artistic License" which comes with Perl.
+ 
+     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: packages/libtemplate-plugin-class-perl/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libtemplate-plugin-class-perl/trunk/debian/rules?rev=4351&op=file
==============================================================================
--- packages/libtemplate-plugin-class-perl/trunk/debian/rules (added)
+++ packages/libtemplate-plugin-class-perl/trunk/debian/rules Thu Nov 23 13:33:54 2006
@@ -1,0 +1,68 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PACKAGE=$(shell dh_listpackages)
+
+PERL = /usr/bin/perl
+
+DESTDIR=..
+
+TMP     =`pwd`/debian/$(PACKAGE)
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+
+	$(PERL) Build.PL installdirs=vendor
+
+	touch configure-stamp
+
+build: build-stamp
+build-stamp: configure-stamp
+	dh_testdir
+
+	./Build
+	./Build test
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot 
+
+	[ ! -e ./Build ] || ./Build distclean
+
+	dh_clean build-stamp configure-stamp
+
+install:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	./Build install destdir=$(TMP)
+
+# Build architecture-independent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installman
+	dh_installchangelogs Changes
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_perl
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb --destdir=$(DESTDIR)
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary
+

Propchange: packages/libtemplate-plugin-class-perl/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/libtemplate-plugin-class-perl/trunk/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libtemplate-plugin-class-perl/trunk/debian/watch?rev=4351&op=file
==============================================================================
--- packages/libtemplate-plugin-class-perl/trunk/debian/watch (added)
+++ packages/libtemplate-plugin-class-perl/trunk/debian/watch Thu Nov 23 13:33:54 2006
@@ -1,0 +1,7 @@
+# Example watch control file for uscan
+# Rename this file to "watch" and then you can run the "uscan" command
+# to check for upstream updates and more.
+# Site		Directory		Pattern			Version	Script
+version=2
+http://www.cpan.org/authors/id/R/RC/RCLAMP/Template-Plugin-Class-(\d+\.\d+)\.tar\.gz debian uupdate
+




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