r2531 - in packages/libtemplate-multilingual-perl/trunk: . debian

gregor herrmann gregoa-guest at costa.debian.org
Sun Apr 9 13:07:13 UTC 2006


Author: gregoa-guest
Date: 2006-04-09 13:07:12 +0000 (Sun, 09 Apr 2006)
New Revision: 2531

Added:
   packages/libtemplate-multilingual-perl/trunk/debian/
   packages/libtemplate-multilingual-perl/trunk/debian/changelog
   packages/libtemplate-multilingual-perl/trunk/debian/compat
   packages/libtemplate-multilingual-perl/trunk/debian/control
   packages/libtemplate-multilingual-perl/trunk/debian/copyright
   packages/libtemplate-multilingual-perl/trunk/debian/rules
   packages/libtemplate-multilingual-perl/trunk/debian/watch
Log:
Load libtemplate-multilingual-perl-0.06 into
packages/libtemplate-multilingual-perl/trunk.


Added: packages/libtemplate-multilingual-perl/trunk/debian/changelog
===================================================================
--- packages/libtemplate-multilingual-perl/trunk/debian/changelog	2006-04-09 13:06:59 UTC (rev 2530)
+++ packages/libtemplate-multilingual-perl/trunk/debian/changelog	2006-04-09 13:07:12 UTC (rev 2531)
@@ -0,0 +1,6 @@
+libtemplate-multilingual-perl (0.06-1) unstable; urgency=low
+
+  * Initial Release (closes: #304625).
+
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Sun,  9 Apr 2006 14:46:35 +0200
+

Added: packages/libtemplate-multilingual-perl/trunk/debian/compat
===================================================================
--- packages/libtemplate-multilingual-perl/trunk/debian/compat	2006-04-09 13:06:59 UTC (rev 2530)
+++ packages/libtemplate-multilingual-perl/trunk/debian/compat	2006-04-09 13:07:12 UTC (rev 2531)
@@ -0,0 +1 @@
+5

Added: packages/libtemplate-multilingual-perl/trunk/debian/control
===================================================================
--- packages/libtemplate-multilingual-perl/trunk/debian/control	2006-04-09 13:06:59 UTC (rev 2530)
+++ packages/libtemplate-multilingual-perl/trunk/debian/control	2006-04-09 13:07:12 UTC (rev 2531)
@@ -0,0 +1,18 @@
+Source: libtemplate-multilingual-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0), libmodule-build-perl, libtemplate-perl, libtest-pod-perl, libtest-pod-coverage-perl
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: gregor herrmann <gregor+debian at comodo.priv.at>
+Standards-Version: 3.6.2
+
+Package: libtemplate-multilingual-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libtemplate-perl
+Description: Multilingual templates for Template Toolkit
+ This subclass of Template Toolkit's Template class supports multilingual
+ templates: templates that contain text in several languages.
+ .
+  Homepage: http://search.cpan.org/~cholet/Template-Multilingual-0.06/
+  

Added: packages/libtemplate-multilingual-perl/trunk/debian/copyright
===================================================================
--- packages/libtemplate-multilingual-perl/trunk/debian/copyright	2006-04-09 13:06:59 UTC (rev 2530)
+++ packages/libtemplate-multilingual-perl/trunk/debian/copyright	2006-04-09 13:07:12 UTC (rev 2531)
@@ -0,0 +1,19 @@
+This is the debian package for the Template-Multilingual module.
+It was created by gregor herrmann <gregor+debian at comodo.priv.at> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/~cholet/Template-Multilingual-0.06/lib/Template/Multilingual.pm
+
+Copyright:
+Copyright (C) 2005 Eric Cholet
+
+Licence: 
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+Perl is distributed under either the Artistic licence or the GPL.
+
+The full text of the GPL is available on Debian systems in
+/usr/share/common-licenses/GPL
+
+The full text of the Artistic Licence is available on Debian systems in
+/usr/share/common-licenses/Artistic.

Added: packages/libtemplate-multilingual-perl/trunk/debian/rules
===================================================================
--- packages/libtemplate-multilingual-perl/trunk/debian/rules	2006-04-09 13:06:59 UTC (rev 2530)
+++ packages/libtemplate-multilingual-perl/trunk/debian/rules	2006-04-09 13:07:12 UTC (rev 2531)
@@ -0,0 +1,81 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+#
+# It was later modified by Jason Kohles <email at jasonkohles.com>
+# http://www.jasonkohles.com/ to support Module::Build installed modules
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
+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
+
+	# Add commands to compile the package here
+	$(PERL) Build.PL installdirs=vendor
+	OPTIMIZE="-Wall -O2 -g" $(PERL) Build
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	[ ! -f Build ] || $(PERL) Build distclean
+
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add commands to install the package into debian/$PACKAGE_NAME here
+	$(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_installcron
+#	dh_installmenu
+#	dh_installexamples
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_perl
+	dh_link
+	dh_strip
+	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


Property changes on: packages/libtemplate-multilingual-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/libtemplate-multilingual-perl/trunk/debian/watch
===================================================================
--- packages/libtemplate-multilingual-perl/trunk/debian/watch	2006-04-09 13:06:59 UTC (rev 2530)
+++ packages/libtemplate-multilingual-perl/trunk/debian/watch	2006-04-09 13:07:12 UTC (rev 2531)
@@ -0,0 +1,3 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+http://mirrors.kernel.org/cpan/modules/by-module/Template/Template-Multilingual-([\d\.]+)\.tar\.gz




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