--- libnet-sieve-script-perl-0.08.orig/debian/control +++ libnet-sieve-script-perl-0.08/debian/control @@ -0,0 +1,22 @@ +Source: libnet-sieve-script-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.6.0), libclass-accessor-perl (>= 0.3), + libtest-pod-coverage-perl, libtest-pod-perl +Maintainer: Debian Perl Group +Uploaders: AGOSTINI Yves +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Net-Sieve-Script/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-sieve-script-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-sieve-script-perl/ + +Package: libnet-sieve-script-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libclass-accessor-perl (>= 0.3) +Description: Parse and write sieve scripts + Net::Sieve::Script provides a way to read, parse and write sieve file script, + with access to Rule, Action and Condition objects. + . + Support for RFC 5228 - sieve base, RFC 5231 - relational, RFC 5230 - + vacation, Draft regex. --- libnet-sieve-script-perl-0.08.orig/debian/copyright +++ libnet-sieve-script-perl-0.08/debian/copyright @@ -0,0 +1,34 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Yves Agostini - +Upstream-Source: http://search.cpan.org/dist/Net-Sieve-Script/ +Upstream-Name: Net-Sieve-Script + +Files: * +Copyright: Copyright 2008 Yves Agostini - +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: inc/* +Copyright: Copyright 2002 - 2008 by Brian Ingerson, Audrey Tang and Adam Kennedy. +License-Alias: Perl +License: GPL-1+ | Artistic + +Files: debian/* +Copyright: Copyright 2008 Debian Perl Group +License: GPL-1+ | Artistic + The Debian packaging is put under the same terms as the module itself. + +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' --- libnet-sieve-script-perl-0.08.orig/debian/watch +++ libnet-sieve-script-perl-0.08/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/Net-Sieve-Script/ .*/Net-Sieve-Script-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libnet-sieve-script-perl-0.08.orig/debian/compat +++ libnet-sieve-script-perl-0.08/debian/compat @@ -0,0 +1 @@ +7 --- libnet-sieve-script-perl-0.08.orig/debian/changelog +++ libnet-sieve-script-perl-0.08/debian/changelog @@ -0,0 +1,19 @@ +libnet-sieve-script-perl (0.08-1) unstable; urgency=low + + [ AGOSTINI Yves ] + * New upstream release + * Standards-Version: 3.8.0 (no changes) + * copyright: add copyright for Module::Install inc/ files + + [ gregor herrmann ] + * Set debhelper compatibility level to 7; adapt + debian/{control,compat,rules}. + * debian/copyright: refresh formatting. + + -- AGOSTINI Yves Tue, 16 Sep 2008 15:45:05 +0200 + +libnet-sieve-script-perl (0.07-1) unstable; urgency=low + + * Initial Release. (Closes: #479568) + + -- AGOSTINI Yves Sat, 06 May 2008 21:16:03 +0200 --- libnet-sieve-script-perl-0.08.orig/debian/rules +++ libnet-sieve-script-perl-0.08/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