--- libtie-hash-regex-perl-1.02.orig/debian/control +++ libtie-hash-regex-perl-1.02/debian/control @@ -0,0 +1,23 @@ +Source: libtie-hash-regex-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: libtest-pod-perl, libtest-pod-coverage-perl +Maintainer: Debian Perl Group +Uploaders: Andres Mejia +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: module to 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. --- libtie-hash-regex-perl-1.02.orig/debian/copyright +++ libtie-hash-regex-perl-1.02/debian/copyright @@ -0,0 +1,29 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=420 +Upstream-Maintainer: Dave Cross +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 +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' --- libtie-hash-regex-perl-1.02.orig/debian/watch +++ libtie-hash-regex-perl-1.02/debian/watch @@ -0,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) --- libtie-hash-regex-perl-1.02.orig/debian/compat +++ libtie-hash-regex-perl-1.02/debian/compat @@ -0,0 +1 @@ +7 --- libtie-hash-regex-perl-1.02.orig/debian/changelog +++ libtie-hash-regex-perl-1.02/debian/changelog @@ -0,0 +1,5 @@ +libtie-hash-regex-perl (1.02-1) unstable; urgency=low + + * Initial release. (Closes: #510144) + + -- Andres Mejia Mon, 29 Dec 2008 14:07:04 -0500 --- libtie-hash-regex-perl-1.02.orig/debian/rules +++ libtie-hash-regex-perl-1.02/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