--- libtemplate-plugin-yaml-perl-1.23.orig/debian/control +++ libtemplate-plugin-yaml-perl-1.23/debian/control @@ -0,0 +1,20 @@ +Source: libtemplate-plugin-yaml-perl +Section: perl +Priority: optional +Maintainer: Debian Perl Group +Uploaders: Krzysztof Krzyzaniak (eloy) , + gregor herrmann +Build-Depends-Indep: perl (>= 5.6.0-16), libtemplate-perl, libyaml-perl +Build-Depends: debhelper (>= 7) +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Template-Plugin-YAML/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtemplate-plugin-yaml-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtemplate-plugin-yaml-perl/ + +Package: libtemplate-plugin-yaml-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends}, libtemplate-perl, libyaml-perl +Description: simple Template Toolkit Plugin Interface to the YAML module + Template::Plugin::YAML 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. --- libtemplate-plugin-yaml-perl-1.23.orig/debian/copyright +++ libtemplate-plugin-yaml-perl-1.23/debian/copyright @@ -0,0 +1,30 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Richard Clamp +Upstream-Source: http://search.cpan.org/dist/Template-Plugin-YAML/ +Upstream-Name: Template-Plugin-YAML + +Files: * +Copyright: 2003, 2008 Richard Clamp All Rights Reserved. +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: + 2005-2006, Stephen Quinney + 2006-2009, various members of the Debian Perl Group, cf. debian/changelog +License: Artistic | GPL-1+ + +License: Artistic + This program is free software; you can redistribute it and/or modify + it under the terms of the Artistic License, which comes with Perl. + On Debian GNU/Linux systems, the complete text of the Artistic License + can be found in `/usr/share/common-licenses/Artistic' + +License: GPL-1+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 1, or (at your option) + any later version. + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' --- libtemplate-plugin-yaml-perl-1.23.orig/debian/watch +++ libtemplate-plugin-yaml-perl-1.23/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Template-Plugin-YAML/ .*/Template-Plugin-YAML-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) debian uupdate --- libtemplate-plugin-yaml-perl-1.23.orig/debian/compat +++ libtemplate-plugin-yaml-perl-1.23/debian/compat @@ -0,0 +1 @@ +7 --- libtemplate-plugin-yaml-perl-1.23.orig/debian/changelog +++ libtemplate-plugin-yaml-perl-1.23/debian/changelog @@ -0,0 +1,42 @@ +libtemplate-plugin-yaml-perl (1.23-1) unstable; urgency=low + + * New upstream release. + * Set Standards-Version to 3.8.0 (no changes). + * debian/control: + - added: Vcs-Svn field (source stanza); Vcs-Browser field (source stanza); + Homepage field (source stanza). Removed: XS-Vcs-Svn fields + - added: ${misc:Depends} to Depends: field + - add /me to Uploaders + - mention module name in long description + - add libtemplate-perl, libyaml-perl to Build-Depends-Indep + * debian/watch: use dist-based URL. + * Don't install README anymore, just a text version of the POD. + + -- gregor herrmann Thu, 01 Jan 2009 23:51:17 +0100 + +libtemplate-plugin-yaml-perl (1.22-4) unstable; urgency=low + + * Adopted for Debian Perl Group + * debian/control: Build-Depends: updated to debhelper5 + * debian/compat: updated to 5 + + -- Krzysztof Krzyzaniak (eloy) Thu, 23 Nov 2006 23:10:39 +0100 + +libtemplate-plugin-yaml-perl (1.22-3) unstable; urgency=low + + * debian/watch - Fixed url + + -- Stephen Quinney 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 Mon, 16 Oct 2006 19:24:23 +0100 + +libtemplate-plugin-yaml-perl (1.22-1) unstable; urgency=low + + * Initial release, closes: #305421. + + -- Stephen Quinney Wed, 20 Apr 2005 15:13:35 +0100 --- libtemplate-plugin-yaml-perl-1.23.orig/debian/rules +++ libtemplate-plugin-yaml-perl-1.23/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + dh build + touch $@ + +clean: + dh $@ + +install: install-stamp +install-stamp: build-stamp + dh install + touch $@ + +binary-arch: + +binary-indep: install + dh $@ + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build