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

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Thu Nov 23 23:05:25 CET 2006


Author: eloy
Date: Thu Nov 23 23:05:24 2006
New Revision: 4368

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

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

Added: packages/libtemplate-plugin-yaml-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libtemplate-plugin-yaml-perl/trunk/debian/changelog?rev=4368&op=file
==============================================================================
--- packages/libtemplate-plugin-yaml-perl/trunk/debian/changelog (added)
+++ packages/libtemplate-plugin-yaml-perl/trunk/debian/changelog Thu Nov 23 23:05:24 2006
@@ -1,0 +1,20 @@
+libtemplate-plugin-yaml-perl (1.22-3) unstable; urgency=low
+
+  * debian/watch - Fixed url
+
+ -- Stephen Quinney <sjq at debian.org>  Fri,  3 Nov 2006 18:52:09 +0000
+
+libtemplate-plugin-yaml-perl (1.22-2) unstable; urgency=low
+
+  * debian/control:
+      - Switched to my debian.org address
+
+ -- Stephen Quinney <sjq at debian.org>  Mon, 16 Oct 2006 19:24:23 +0100
+
+libtemplate-plugin-yaml-perl (1.22-1) unstable; urgency=low
+
+  *  Initial release, closes: #305421.
+
+ -- Stephen Quinney <sjq at debian.org>  Wed, 20 Apr 2005 15:13:35 +0100
+
+

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

Added: packages/libtemplate-plugin-yaml-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libtemplate-plugin-yaml-perl/trunk/debian/control?rev=4368&op=file
==============================================================================
--- packages/libtemplate-plugin-yaml-perl/trunk/debian/control (added)
+++ packages/libtemplate-plugin-yaml-perl/trunk/debian/control Thu Nov 23 23:05:24 2006
@@ -1,0 +1,15 @@
+Source: libtemplate-plugin-yaml-perl
+Section: perl
+Priority: optional
+Maintainer: Stephen Quinney <sjq at debian.org>
+Build-Depends-Indep: perl (>= 5.6.0-16)
+Build-Depends: debhelper (>= 4)
+Standards-Version: 3.7.2
+
+Package: libtemplate-plugin-yaml-perl
+Architecture: all
+Depends: ${perl:Depends}, libtemplate-perl, libyaml-perl
+Description: simple Template Toolkit Plugin Interface to the YAML module
+ Provides the ability to load YAML strings and files into data
+ structures and also dump data structures to files and strings from
+ within the Perl Template Toolkit.

Added: packages/libtemplate-plugin-yaml-perl/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libtemplate-plugin-yaml-perl/trunk/debian/copyright?rev=4368&op=file
==============================================================================
--- packages/libtemplate-plugin-yaml-perl/trunk/debian/copyright (added)
+++ packages/libtemplate-plugin-yaml-perl/trunk/debian/copyright Thu Nov 23 23:05:24 2006
@@ -1,0 +1,31 @@
+This package was debianized by Stephen Quinney <sjq at debian.org> on
+Wed, 20 Apr 2005 15:15:14 +0100
+
+It was downloaded from http://www.cpan.org/authors/id/R/RC/RCLAMP/
+
+Author: Richard Clamp <richardc at unixbeard.net>
+
+undump, undumpfile, and dumpfile implementations are 
+by Randal L. Schwartz <merlyn at stonehenge.com>
+
+based on the Template::Plugin::Dumper module written by Simon Matthews
+
+Copyright:
+
+     Copyright 2003 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-yaml-perl/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libtemplate-plugin-yaml-perl/trunk/debian/rules?rev=4368&op=file
==============================================================================
--- packages/libtemplate-plugin-yaml-perl/trunk/debian/rules (added)
+++ packages/libtemplate-plugin-yaml-perl/trunk/debian/rules Thu Nov 23 23:05:24 2006
@@ -1,0 +1,72 @@
+#!/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     =$(CURDIR)/debian/$(PACKAGE)
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+
+	$(PERL) Makefile.PL verbose INSTALLDIRS=vendor
+
+	touch configure-stamp
+
+build: build-stamp
+build-stamp: configure-stamp
+	dh_testdir
+
+	$(MAKE)
+	#$(MAKE) test
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot 
+
+	[ ! -e Makefile ] || $(MAKE) distclean
+
+	dh_clean build-stamp configure-stamp
+
+install:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	$(MAKE) install PREFIX=$(TMP)/usr
+
+	# Remove any empty directories
+
+	find $(TMP)/usr -type d -empty -print0 | xargs --no-run-if-empty --null rmdir -p --ignore-fail-on-non-empty
+
+# 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-yaml-perl/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/libtemplate-plugin-yaml-perl/trunk/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libtemplate-plugin-yaml-perl/trunk/debian/watch?rev=4368&op=file
==============================================================================
--- packages/libtemplate-plugin-yaml-perl/trunk/debian/watch (added)
+++ packages/libtemplate-plugin-yaml-perl/trunk/debian/watch Thu Nov 23 23:05:24 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://backpan.perl.org/authors/id/R/RC/RCLAMP/Template-Plugin-YAML-(\d+\.\d+)\.tar\.gz debian uupdate
+




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