--- libtext-simpletable-perl-1.2.orig/debian/control +++ libtext-simpletable-perl-1.2/debian/control @@ -0,0 +1,28 @@ +Source: libtext-simpletable-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.8.0-7), libtest-pod-perl, + libtest-pod-coverage-perl +Maintainer: Debian Perl Group +Uploaders: Krzysztof Krzyżaniak (eloy) , + Nathan Handler +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtext-simpletable-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtext-simpletable-perl/ +Homepage: http://search.cpan.org/dist/Text-SimpleTable +Standards-Version: 3.8.2 + +Package: libtext-simpletable-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends} +Description: Perl module for creating simple eyecandy ASCII Tables + Text::SimpleTable is a replacement for the Text::ASCIITable module. + . + If you need to create text tables like + . + .-------+------------. + | foob- | yadayaday- | + | arbaz | ada | + '-------+------------' + . + this module is for you. --- libtext-simpletable-perl-1.2.orig/debian/copyright +++ libtext-simpletable-perl-1.2/debian/copyright @@ -0,0 +1,29 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Sebastian Riedel +Upstream-Source: http://search.cpan.org/dist/Text-SimpleTable/ +Upstream-Name: Text-SimpleTable + +Files: * +Copyright: 2005-2009, Sebastian Riedel +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: 2009, Nathan Handler + 2005-2008, Krzysztof Krzyzaniak (eloy) +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' --- libtext-simpletable-perl-1.2.orig/debian/watch +++ libtext-simpletable-perl-1.2/debian/watch @@ -0,0 +1,3 @@ +version=3 +http://search.cpan.org/dist/Text-SimpleTable/ .*/Text-SimpleTable-v?(\d[\d.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) + --- libtext-simpletable-perl-1.2.orig/debian/compat +++ libtext-simpletable-perl-1.2/debian/compat @@ -0,0 +1 @@ +7 --- libtext-simpletable-perl-1.2.orig/debian/changelog +++ libtext-simpletable-perl-1.2/debian/changelog @@ -0,0 +1,59 @@ +libtext-simpletable-perl (1.2-1) unstable; urgency=low + + * New upstream release + + -- Nathan Handler Sat, 04 Jul 2009 03:07:22 +0000 + +libtext-simpletable-perl (1.1-1) unstable; urgency=low + + [ gregor herrmann ] + * debian/control: Changed: Switched Vcs-Browser field to ViewSVN + (source stanza). + * debian/control: Added: ${misc:Depends} to Depends: field. + + [ Nathan Handler ] + * New upstream release + * debian/watch: + - Update to ignore development releases. + * debian/control: + - Add myself to list of Uploaders + - Bump Standards-Version to 3.8.2 + * debian/rules: + - Refresh to use new format + * debian/copyright: + - Refresh to use new format + - Add myself as copyright holder for debian/* files + + [ gregor herrmann ] + * Activate additional tests (debian/{rules,control}). + * debian/control: improve short/long description. + + -- Nathan Handler Fri, 03 Jul 2009 12:57:38 +0000 + +libtext-simpletable-perl (0.05-1) unstable; urgency=low + + * New upstream release + * Move package to Debian Perl Group, set proper headers. + * Convert package to debhelper 7, use new debian/rules file + * Update debian/watch file to new schema + + -- Krzysztof Krzyżaniak (eloy) Tue, 14 Oct 2008 15:31:35 +0200 + +libtext-simpletable-perl (0.03-1) unstable; urgency=low + + * New upstream release + + -- Krzysztof Krzyzaniak (eloy) Tue, 17 Jan 2006 23:14:06 +0100 + +libtext-simpletable-perl (0.02-2) unstable; urgency=low + + * debian/control - description changed to keep Debian Policy p. 5.6.13 + + -- Krzysztof Krzyzaniak (eloy) Tue, 15 Nov 2005 21:40:36 +0100 + +libtext-simpletable-perl (0.02-1) unstable; urgency=low + + * Initial Release (closes: #338480) + + -- Krzysztof Krzyzaniak (eloy) Thu, 10 Nov 2005 12:37:01 +0100 + --- libtext-simpletable-perl-1.2.orig/debian/rules +++ libtext-simpletable-perl-1.2/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + TEST_POD=1 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