r31490 - in /trunk/libarray-unique-perl/debian: ./ changelog compat control copyright libarray-unique-perl.docs rules watch
xaviero-guest at users.alioth.debian.org
xaviero-guest at users.alioth.debian.org
Fri Mar 6 01:36:36 UTC 2009
Author: xaviero-guest
Date: Fri Mar 6 01:36:32 2009
New Revision: 31490
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=31490
Log:
[svn-inject] Applying Debian modifications to trunk
Added:
trunk/libarray-unique-perl/debian/
trunk/libarray-unique-perl/debian/changelog
trunk/libarray-unique-perl/debian/compat
trunk/libarray-unique-perl/debian/control
trunk/libarray-unique-perl/debian/copyright
trunk/libarray-unique-perl/debian/libarray-unique-perl.docs
trunk/libarray-unique-perl/debian/rules (with props)
trunk/libarray-unique-perl/debian/watch
Added: trunk/libarray-unique-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libarray-unique-perl/debian/changelog?rev=31490&op=file
==============================================================================
--- trunk/libarray-unique-perl/debian/changelog (added)
+++ trunk/libarray-unique-perl/debian/changelog Fri Mar 6 01:36:32 2009
@@ -1,0 +1,5 @@
+libarray-unique-perl (0.08-1) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Xavier Oswald <x.oswald at free.fr> Fri, 6 Mar 2009 02:12:33 +0100
Added: trunk/libarray-unique-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libarray-unique-perl/debian/compat?rev=31490&op=file
==============================================================================
--- trunk/libarray-unique-perl/debian/compat (added)
+++ trunk/libarray-unique-perl/debian/compat Fri Mar 6 01:36:32 2009
@@ -1,0 +1,1 @@
+7
Added: trunk/libarray-unique-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libarray-unique-perl/debian/control?rev=31490&op=file
==============================================================================
--- trunk/libarray-unique-perl/debian/control (added)
+++ trunk/libarray-unique-perl/debian/control Fri Mar 6 01:36:32 2009
@@ -1,0 +1,25 @@
+Source: libarray-unique-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7), libmodule-build-perl
+Build-Depends-Indep: perl (>= 5.6.0-12)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Xavier Oswald <x.oswald at free.fr>
+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: Array::Unique - Tie-able array that allows only unique values
+ This package 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.
+ .
+ You use the module via tie and once you tied your array to this module it
+ will behave correctly. 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. .
Added: trunk/libarray-unique-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libarray-unique-perl/debian/copyright?rev=31490&op=file
==============================================================================
--- trunk/libarray-unique-perl/debian/copyright (added)
+++ trunk/libarray-unique-perl/debian/copyright Fri Mar 6 01:36:32 2009
@@ -1,0 +1,28 @@
+Format-Specification:
+ http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Gabor Szabo <gabor at pti.co.il>
+Upstream-Source: http://search.cpan.org/dist/Array-Unique/
+Upstream-Name: Array-Unique
+
+Files: *
+Copyright: Gabor Szabo <gabor at pti.co.il>
+License-Alias: Perl
+License: Artistic | GPL-1+
+
+Files: debian/*
+Copyright: 2009, Xavier Oswald <x.oswald at free.fr>
+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'
Added: trunk/libarray-unique-perl/debian/libarray-unique-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libarray-unique-perl/debian/libarray-unique-perl.docs?rev=31490&op=file
==============================================================================
--- trunk/libarray-unique-perl/debian/libarray-unique-perl.docs (added)
+++ trunk/libarray-unique-perl/debian/libarray-unique-perl.docs Fri Mar 6 01:36:32 2009
@@ -1,0 +1,1 @@
+README
Added: trunk/libarray-unique-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libarray-unique-perl/debian/rules?rev=31490&op=file
==============================================================================
--- trunk/libarray-unique-perl/debian/rules (added)
+++ trunk/libarray-unique-perl/debian/rules Fri Mar 6 01:36:32 2009
@@ -1,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
Propchange: trunk/libarray-unique-perl/debian/rules
------------------------------------------------------------------------------
svn:executable = *
Added: trunk/libarray-unique-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libarray-unique-perl/debian/watch?rev=31490&op=file
==============================================================================
--- trunk/libarray-unique-perl/debian/watch (added)
+++ trunk/libarray-unique-perl/debian/watch Fri Mar 6 01:36:32 2009
@@ -1,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)$
More information about the Pkg-perl-cvs-commits
mailing list