r48603 - in /trunk/libdata-hasharray-perl/debian: ./ changelog compat control copyright libdata-hasharray-perl.docs rules watch

azatoth-guest at users.alioth.debian.org azatoth-guest at users.alioth.debian.org
Fri Dec 11 21:48:47 UTC 2009


Author: azatoth-guest
Date: Fri Dec 11 21:48:40 2009
New Revision: 48603

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=48603
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libdata-hasharray-perl/debian/
    trunk/libdata-hasharray-perl/debian/changelog
    trunk/libdata-hasharray-perl/debian/compat
    trunk/libdata-hasharray-perl/debian/control
    trunk/libdata-hasharray-perl/debian/copyright
    trunk/libdata-hasharray-perl/debian/libdata-hasharray-perl.docs
    trunk/libdata-hasharray-perl/debian/rules   (with props)
    trunk/libdata-hasharray-perl/debian/watch

Added: trunk/libdata-hasharray-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-hasharray-perl/debian/changelog?rev=48603&op=file
==============================================================================
--- trunk/libdata-hasharray-perl/debian/changelog (added)
+++ trunk/libdata-hasharray-perl/debian/changelog Fri Dec 11 21:48:40 2009
@@ -1,0 +1,5 @@
+libdata-hasharray-perl (1.0-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Carl Fürstenberg <carl at excito.com>  Fri, 11 Dec 2009 22:44:28 +0100

Added: trunk/libdata-hasharray-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-hasharray-perl/debian/compat?rev=48603&op=file
==============================================================================
--- trunk/libdata-hasharray-perl/debian/compat (added)
+++ trunk/libdata-hasharray-perl/debian/compat Fri Dec 11 21:48:40 2009
@@ -1,0 +1,1 @@
+7

Added: trunk/libdata-hasharray-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-hasharray-perl/debian/control?rev=48603&op=file
==============================================================================
--- trunk/libdata-hasharray-perl/debian/control (added)
+++ trunk/libdata-hasharray-perl/debian/control Fri Dec 11 21:48:40 2009
@@ -1,0 +1,32 @@
+Source: libdata-hasharray-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl
+Maintainer: Carl Fürstenberg <carl at excito.com>
+Standards-Version: 3.8.3
+Homepage: http://search.cpan.org/dist/Data-HashArray/
+
+Package: libdata-hasharray-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: An array class of hashes that has magical properties via overloading and AUTOLOAD.
+ Normally, Data::HashArray is an array of hashes or hash-based objects. This
+ class has some magical properties that make it easier to deal with
+ multiplicity.
+ .
+ First, there exist two overloads. One for hash access and the other for
+ stringification. Both will act on the first element of the array. In other
+ words, performing a hash access on an object of this class will be equivalent
+ to performing a hash access on the first element of the array.
+ .
+ Second, the AUTOLOAD method will delegate any method unkown to this class to
+ the first item in the array as well. For this to work, at least the first
+ item of the array better be an object on which one could call such a method.
+ .
+ Both of these magical properties make it easier to deal with unpredictable
+ multiplicity. You can both treat the object as an array or as hash (the first
+ one in the array). This way, if your code deosn't know that an element can
+ occur multiple times (in other words, if the code treats the element as
+ singular), the same code should still largely work when the singualr element
+ is replaced by a Data::HashArray object.

Added: trunk/libdata-hasharray-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-hasharray-perl/debian/copyright?rev=48603&op=file
==============================================================================
--- trunk/libdata-hasharray-perl/debian/copyright (added)
+++ trunk/libdata-hasharray-perl/debian/copyright Fri Dec 11 21:48:40 2009
@@ -1,0 +1,28 @@
+Format-Specification:
+    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Ayhan Ulusoy <dev at ulusoy.name>
+Upstream-Source: http://search.cpan.org/dist/Data-HashArray/
+Upstream-Name: Data-HashArray
+
+Files: *
+Copyright: Ayhan Ulusoy <dev at ulusoy.name>
+License-Alias: Perl
+License: Artistic | GPL-1+
+
+Files: debian/*
+Copyright: 2009, Carl Fürstenberg <carl at excito.com>
+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/libdata-hasharray-perl/debian/libdata-hasharray-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-hasharray-perl/debian/libdata-hasharray-perl.docs?rev=48603&op=file
==============================================================================
--- trunk/libdata-hasharray-perl/debian/libdata-hasharray-perl.docs (added)
+++ trunk/libdata-hasharray-perl/debian/libdata-hasharray-perl.docs Fri Dec 11 21:48:40 2009
@@ -1,0 +1,1 @@
+README

Added: trunk/libdata-hasharray-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-hasharray-perl/debian/rules?rev=48603&op=file
==============================================================================
--- trunk/libdata-hasharray-perl/debian/rules (added)
+++ trunk/libdata-hasharray-perl/debian/rules Fri Dec 11 21:48:40 2009
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

Propchange: trunk/libdata-hasharray-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libdata-hasharray-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-hasharray-perl/debian/watch?rev=48603&op=file
==============================================================================
--- trunk/libdata-hasharray-perl/debian/watch (added)
+++ trunk/libdata-hasharray-perl/debian/watch Fri Dec 11 21:48:40 2009
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Data-HashArray/   .*/Data-HashArray-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




More information about the Pkg-perl-cvs-commits mailing list