--- libarray-unique-perl-0.08.orig/debian/control +++ libarray-unique-perl-0.08/debian/control @@ -0,0 +1,24 @@ +Source: libarray-unique-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.6.0-12) +Maintainer: Debian Perl Group +Uploaders: Xavier Oswald +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Array-Unique/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libarray-unique-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libarray-unique-perl/ +DM-Upload-Allowed: yes + +Package: libarray-unique-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends} +Description: Tie-able array that allows only unique values + Array::Unique lets you create an array which will allow only one occurrence of + any value. In other words, no matter how many times you put in 42, it will keep + only the first occurrence and the rest will be dropped. + . + Uniqueness is checked with the 'eq' operator so among other things it is case + sensitive. As a side effect, the module does not allow undef as a value in the + array. --- libarray-unique-perl-0.08.orig/debian/rules +++ libarray-unique-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 --- libarray-unique-perl-0.08.orig/debian/watch +++ libarray-unique-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/Array-Unique/ .*/Array-Unique-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libarray-unique-perl-0.08.orig/debian/changelog +++ libarray-unique-perl-0.08/debian/changelog @@ -0,0 +1,5 @@ +libarray-unique-perl (0.08-1) unstable; urgency=low + + * Initial Release (Closes:#518430) + + -- Xavier Oswald Fri, 6 Mar 2009 02:12:33 +0100 --- libarray-unique-perl-0.08.orig/debian/compat +++ libarray-unique-perl-0.08/debian/compat @@ -0,0 +1 @@ +7 --- libarray-unique-perl-0.08.orig/debian/copyright +++ libarray-unique-perl-0.08/debian/copyright @@ -0,0 +1,28 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Gabor Szabo +Upstream-Source: http://search.cpan.org/dist/Array-Unique/ +Upstream-Name: Array-Unique + +Files: * +Copyright: Gabor Szabo +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: 2009, Xavier Oswald +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'