--- libstring-bufferstack-perl-1.13.orig/debian/control +++ libstring-bufferstack-perl-1.13/debian/control @@ -0,0 +1,25 @@ +Source: libstring-bufferstack-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.8.0) +Maintainer: Debian Perl Group +Uploaders: Antonio Radici +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/String-BufferStack/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libstring-bufferstack-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libstring-bufferstack-perl/ + +Package: libstring-bufferstack-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, perl (>= 5.8.0) +Description: framework for storing nested buffers + String::BufferStack provides some functions to store data into + nested buffers + . + By default, all of the buffers flow directly to the output method, + but individual levels of the stack can apply filters, or store their + output in a scalar reference + . + The main consumers of this module are templating systems, like + Template::Declare, which needs to manipulate nested buffes. --- libstring-bufferstack-perl-1.13.orig/debian/copyright +++ libstring-bufferstack-perl-1.13/debian/copyright @@ -0,0 +1,31 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Alex Vandiver +Upstream-Source: http://search.cpan.org/dist/String-BufferStack/ +Upstream-Name: String-BufferStack + +Files: * +Copyright: 2008-2009, Best Practical Solutions +License: GPL-1+ | Artistic + +Files: inc/* +Copyright: 2002-2009 by Brian Ingerson, Audrey Tang and Adam Kennedy +License: GPL-1+ | Artistic + +Files: debian/* +Copyright: 2009, Antonio Radici +License: GPL-1+ | Artistic + +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' --- libstring-bufferstack-perl-1.13.orig/debian/watch +++ libstring-bufferstack-perl-1.13/debian/watch @@ -0,0 +1,4 @@ +# format version number, currently 3; this line is compulsory! +version=3 +# URL to the package page followed by a regex to search +http://search.cpan.org/dist/String-BufferStack/ .*/String-BufferStack-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libstring-bufferstack-perl-1.13.orig/debian/compat +++ libstring-bufferstack-perl-1.13/debian/compat @@ -0,0 +1 @@ +7 --- libstring-bufferstack-perl-1.13.orig/debian/changelog +++ libstring-bufferstack-perl-1.13/debian/changelog @@ -0,0 +1,5 @@ +libstring-bufferstack-perl (1.13-1) unstable; urgency=low + + * Initial Release (Closes: #517467) + + -- Antonio Radici Sat, 28 Feb 2009 10:40:25 +0000 --- libstring-bufferstack-perl-1.13.orig/debian/rules +++ libstring-bufferstack-perl-1.13/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