r28989 - in /trunk/libtie-hash-regex-perl/debian: ./ changelog compat control copyright docs rules watch

ceros-guest at users.alioth.debian.org ceros-guest at users.alioth.debian.org
Wed Dec 31 20:07:13 UTC 2008


Author: ceros-guest
Date: Wed Dec 31 20:07:10 2008
New Revision: 28989

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

Added:
    trunk/libtie-hash-regex-perl/debian/
    trunk/libtie-hash-regex-perl/debian/changelog
    trunk/libtie-hash-regex-perl/debian/compat
    trunk/libtie-hash-regex-perl/debian/control
    trunk/libtie-hash-regex-perl/debian/copyright
    trunk/libtie-hash-regex-perl/debian/docs
    trunk/libtie-hash-regex-perl/debian/rules   (with props)
    trunk/libtie-hash-regex-perl/debian/watch

Added: trunk/libtie-hash-regex-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-hash-regex-perl/debian/changelog?rev=28989&op=file
==============================================================================
--- trunk/libtie-hash-regex-perl/debian/changelog (added)
+++ trunk/libtie-hash-regex-perl/debian/changelog Wed Dec 31 20:07:10 2008
@@ -1,0 +1,6 @@
+libtie-hash-regex-perl (1.02-1) unstable; urgency=low
+
+  [ Andres Mejia ]
+  * Initial release. (Closes: #510144)
+
+ -- Andres Mejia <mcitadel at gmail.com>  Mon, 29 Dec 2008 14:07:04 -0500

Added: trunk/libtie-hash-regex-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-hash-regex-perl/debian/compat?rev=28989&op=file
==============================================================================
--- trunk/libtie-hash-regex-perl/debian/compat (added)
+++ trunk/libtie-hash-regex-perl/debian/compat Wed Dec 31 20:07:10 2008
@@ -1,0 +1,1 @@
+7

Added: trunk/libtie-hash-regex-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-hash-regex-perl/debian/control?rev=28989&op=file
==============================================================================
--- trunk/libtie-hash-regex-perl/debian/control (added)
+++ trunk/libtie-hash-regex-perl/debian/control Wed Dec 31 20:07:10 2008
@@ -1,0 +1,22 @@
+Source: libtie-hash-regex-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Andres Mejia <mcitadel at gmail.com>
+Standards-Version: 3.8.0
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtie-hash-regex-perl/
+Vcs-Browser:
+ http://svn.debian.org/viewsvn/pkg-perl/trunk/libtie-hash-regex-perl/
+Homepage: http://search.cpan.org/dist/Tie-Hash-Regex/
+
+Package: libtie-hash-regex-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: Match hash keys using Regular Expressions
+ The Tie::Hash::Regex module allows hash keys to be matched using regular
+ expressions.
+ .
+ In comparison to Tie::RegexpHash, rather than using regexps as keys that match
+ against fetches, Tie::Hash::Regex allows the use of standard keys that are
+ matched by regexps in fetches.

Added: trunk/libtie-hash-regex-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-hash-regex-perl/debian/copyright?rev=28989&op=file
==============================================================================
--- trunk/libtie-hash-regex-perl/debian/copyright (added)
+++ trunk/libtie-hash-regex-perl/debian/copyright Wed Dec 31 20:07:10 2008
@@ -1,0 +1,29 @@
+Format-Specification:
+ http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=420
+Upstream-Maintainer: Dave Cross <dave at mag-sol.com>
+Upstream-Source: http://search.cpan.org/dist/Tie-Hash-Regex/
+Upstream-Name: Tie-Hash-Regex
+
+Files: *
+Copyright: (C) 2001-8, Magnum Solutions Ltd. All Rights Reserved.
+License-Alias: Perl
+License: Artistic | GPL-1+
+
+Files: debian/*
+Copyright: 2008, Andres Mejia <mcitadel at gmail.com>
+License-Alias: Perl
+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/libtie-hash-regex-perl/debian/docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-hash-regex-perl/debian/docs?rev=28989&op=file
==============================================================================
--- trunk/libtie-hash-regex-perl/debian/docs (added)
+++ trunk/libtie-hash-regex-perl/debian/docs Wed Dec 31 20:07:10 2008
@@ -1,0 +1,1 @@
+README

Added: trunk/libtie-hash-regex-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-hash-regex-perl/debian/rules?rev=28989&op=file
==============================================================================
--- trunk/libtie-hash-regex-perl/debian/rules (added)
+++ trunk/libtie-hash-regex-perl/debian/rules Wed Dec 31 20:07:10 2008
@@ -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/libtie-hash-regex-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libtie-hash-regex-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-hash-regex-perl/debian/watch?rev=28989&op=file
==============================================================================
--- trunk/libtie-hash-regex-perl/debian/watch (added)
+++ trunk/libtie-hash-regex-perl/debian/watch Wed Dec 31 20:07:10 2008
@@ -1,0 +1,3 @@
+version=3
+# URL to the package page followed by a regex to search
+http://search.cpan.org/dist/Tie-Hash-Regex/   .*/Tie-Hash-Regex-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)




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