debian/0000755000000000000000000000000012153414377007175 5ustar debian/rules0000755000000000000000000000003612153414377010254 0ustar #!/usr/bin/make -f %: dh $@ debian/control0000644000000000000000000000251712153414377010605 0ustar Source: libpath-dispatcher-perl Maintainer: Debian Perl Group Uploaders: Christine Spang , Jonathan Yu , Nathan Handler , gregor herrmann Section: perl Priority: optional Build-Depends: debhelper (>= 8) Build-Depends-Indep: perl, libany-moose-perl, libtest-fatal-perl, libtry-tiny-perl Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libpath-dispatcher-perl.git Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libpath-dispatcher-perl.git Homepage: https://metacpan.org/release/Path-Dispatcher/ Package: libpath-dispatcher-perl Architecture: all Depends: ${perl:Depends}, ${misc:Depends}, libany-moose-perl, libtry-tiny-perl Recommends: libpath-dispatcher-declarative-perl Description: flexible and extensible dispatcher module Path::Dispatcher is a Perl module that allows a program to determine which code to execute by matching a path against a list of rules. Dispatch takes a path and returns a list of matches; from there, you can "run" the rules that matched. Developers may also inspect which rules were matched without executing their codeblocks. debian/source/0000755000000000000000000000000012153414377010475 5ustar debian/source/format0000644000000000000000000000001412153414377011703 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000572712153414377011062 0ustar libpath-dispatcher-perl (1.05-1) unstable; urgency=low [ gregor herrmann ] * debian/control: update {versioned,alternative} (build) dependencies. [ Nathan Handler ] * Email change: Nathan Handler -> nhandler@debian.org [ Salvatore Bonaccorso ] * Change Vcs-Git to canonical URI (git://anonscm.debian.org) * Change search.cpan.org based URIs to metacpan.org based URIs [ gregor herrmann ] * New upstream release. Fixes "FTBFS with perl 5.18: t/031-structured-match.t" (Closes: #710965) * debian/copyright: switch formatting to Copyright-Format 1.0. * Set Standards-Version to 3.9.4 (no further changes). -- gregor herrmann Tue, 04 Jun 2013 18:42:27 +0200 libpath-dispatcher-perl (1.04-1) unstable; urgency=low * New upstream release. * Drop build dependency on libtest-exception-perl. -- gregor herrmann Fri, 02 Sep 2011 00:53:56 +0200 libpath-dispatcher-perl (1.03-1) unstable; urgency=low [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ Salvatore Bonaccorso ] * debian/copyright: Replace DEP5 Format-Specification URL from svn.debian.org to anonscm.debian.org URL. [ gregor herrmann ] * New upstream release. * Update years of upstream and packaging copyright. * Set Standards-Version to 3.9.2 (no changes). * Bump debhelper compatibility level to 8. * Add libtest-fatal-perl to Build-Depends-Indep. -- gregor herrmann Wed, 31 Aug 2011 20:17:54 +0200 libpath-dispatcher-perl (1.02-1) unstable; urgency=low * New upstream release * Refresh copyright information * Add myself to Uploaders and Copyright * Standards-Version 3.9.1 (no changes) * Update build/runtime dependencies * Rewrite long description -- Jonathan Yu Mon, 27 Dec 2010 21:54:56 -0500 libpath-dispatcher-perl (0.15-2) unstable; urgency=low * Recommend libpath-dispatcher-declarative-perl and point to the new package in debian/NEWS (closes: #576639). * Add /me to Uploaders. -- gregor herrmann Sun, 18 Apr 2010 02:45:33 +0200 libpath-dispatcher-perl (0.15-1) unstable; urgency=low [ Nathan Handler ] * New upstream release * debian/copyright: - Update to use latest version of DEP5 - Add myself to debian/* copyright - Correct upstream copyright * debian/control: - Add myself to list of Uploaders - Bump Standards-Version to 3.8.4 (no changes) * Use dpkg-source format 3.0 [ gregor herrmann ] * Remove build and runtime dependency on libsub-exporter-perl. -- Nathan Handler Sun, 28 Mar 2010 21:28:25 -0500 libpath-dispatcher-perl (0.14-1) unstable; urgency=low * New upstream release * Bump Standards-Version to 3.8.3. -- Christine Spang Thu, 31 Dec 2009 16:30:37 -0500 libpath-dispatcher-perl (0.13-1) unstable; urgency=low * Initial Release. (Closes: #541049) -- Christine Spang Thu, 13 Aug 2009 05:36:58 -0400 debian/NEWS0000644000000000000000000000104012153414377007667 0ustar libpath-dispatcher-perl (1.02-1) unstable; urgency=low INCOMPATIBLE CHANGE: the match object must be passed into rule blocks instead of assigning $1, $2, $3. Use ->pos(1), (2), (3), etc. instead. -- Jonathan Yu Mon, 27 Dec 2010 21:55:00 -0500 libpath-dispatcher-perl (0.15-2) unstable; urgency=low Path::Dispatcher::Declarative is not included anymore. In Debian it's now packaged separately as libpath-dispatcher-declarative-perl. -- gregor herrmann Wed, 07 Apr 2010 17:41:22 +0200 debian/compat0000644000000000000000000000000212153414377010373 0ustar 8 debian/patches/0000755000000000000000000000000012153414377010624 5ustar debian/patches/fix-version-cmp.patch0000644000000000000000000000076412153414377014702 0ustar Description: fix version comparison in test script The minimum version required for the 026-named-captures.t test is 5.10.1, but the comparison was skipping even when that version is running. Author: Jonathan Yu Origin: vendor Forwarded: no --- a/t/026-named-captures.t +++ b/t/026-named-captures.t @@ -2,7 +2,7 @@ use warnings; use Test::More; BEGIN { - if ($] <= 5.010001) { + if ($] < 5.010001) { plan skip_all => 'This test requires Perl 5.10.1'; } } debian/patches/series0000644000000000000000000000002612153414377012037 0ustar fix-version-cmp.patch debian/copyright0000644000000000000000000000255712153414377011141 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Path-Dispatcher Upstream-Contact: Shawn M Moore Source: https://metacpan.org/release/Path-Dispatcher/ Files: * Copyright: 2008-2011, Best Practical Solutions License: Artistic or GPL-1+ Files: inc/Module/* Copyright: 2002-2012, Adam Kennedy 2002-2012, Audrey Tang 2002-2012, Brian Ingerson License: Artistic or GPL-1+ Files: debian/* Copyright: 2009, Christine Spang 2010, Jonathan Yu 2010, Nathan Handler 2010-2013, gregor herrmann License: Artistic or 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 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 systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. debian/watch0000644000000000000000000000017412153414377010230 0ustar version=3 https://metacpan.org/release/Path-Dispatcher/ .*/Path-Dispatcher-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$