debian/0000755000000000000000000000000011554533171007173 5ustar debian/copyright0000644000000000000000000000240611554531342011126 0ustar Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135 Maintainer: Chia-liang Kao Source: http://search.cpan.org/dist/App-CLI/ Name: App-CLI Files: * Copyright: 2005-2006, Chia-liang Kao License: Artistic or GPL-1+ Files: inc/Module/* Copyright: 2002-2010, Adam Kennedy 2002-2010, Audrey Tang 2002-2010, Brian Ingerson License: Artistic or GPL-1+ Files: debian/* Copyright: 2007, Bastian Blank 2011, Salvatore Bonaccorso 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/watch0000644000000000000000000000034211554531342010221 0ustar # 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/App-CLI/ .*/App-CLI-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian/control0000644000000000000000000000135511554532075010604 0ustar Source: libapp-cli-perl Section: perl Priority: optional Build-Depends: debhelper (>= 8) Build-Depends-Indep: perl Maintainer: Debian Perl Group Uploaders: Salvatore Bonaccorso Standards-Version: 3.9.2 Homepage: http://search.cpan.org/dist/App-CLI/ Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libapp-cli-perl/ Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libapp-cli-perl/ Package: libapp-cli-perl Architecture: all Depends: ${perl:Depends}, ${misc:Depends} Description: Dispatcher module for command line interface programs App::CLI dispatches CLI (command line interface) based commands into command classes. It also supports subcommand and per-command options. debian/changelog0000644000000000000000000000364011554532367011056 0ustar libapp-cli-perl (0.313-1) unstable; urgency=low * New upstream release * New maintainer (Closes: #620668) * debian/control: - Added: Vcs-Svn field (source stanza); Vcs-Browser field (source stanza). - Changed: Maintainer set to Debian Perl Group . - Bump versioned Build-Depends on debhelper to (>= 8). - Make versioned Build-Depends-Indep on perl unversioned as given version (5.8.0-7) is alerady satisfied in oldstable. - Drop liblocale-maketext-simple-perl and libpod-simple-perl from Build-Depends-Indep as both modules are in perl core satisfied in oldstable. - Add Homepage field. * Add myself to Uploaders. * debian/watch: update to ignore development releases. * debian/copyright: Refresh copyright file to revision 135 of Format- Specification in DEP5 proposal for machine-readable copyright file information. * debian/rules: - use tiny rules makefile. - Remove App::CLI::Helper manpage via override targets. * Bump Debhelper compat level to 8. * Convert to '3.0 (quilt)' source package format. * Add fix-bad-whatis-entry.patch to fix bad whatis entry for App::CLI::Command::Help. * Add fix-typo-in-manpage.patch to fix a typo in App::CLI's manpage * Bump Standards-Version to 3.9.2. -- Salvatore Bonaccorso Sat, 23 Apr 2011 13:16:04 +0200 libapp-cli-perl (0.08-0+nmu1) unstable; urgency=low * Non-maintainer upload. * New upstream release (Closes: #527078) * fix debian/watch watch dist instead of author -- AGOSTINI Yves Mon, 25 May 2009 09:47:18 +0200 libapp-cli-perl (0.07-2) unstable; urgency=low * Fix build depends. -- Bastian Blank Sat, 19 May 2007 20:00:07 +0000 libapp-cli-perl (0.07-1) unstable; urgency=low * Initial Release. -- Bastian Blank Tue, 27 Mar 2007 20:47:49 +0000 debian/rules0000755000000000000000000000030711554532517010256 0ustar #!/usr/bin/make -f PACKAGE = $(shell dh_listpackages) TMP = $(CURDIR)/debian/$(PACKAGE) %: dh $@ override_dh_auto_install: dh_auto_install rm $(TMP)/usr/share/man/man3/App::CLI::Helper.3pm debian/source/0000755000000000000000000000000011554533171010473 5ustar debian/source/format0000644000000000000000000000001411554531342011677 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000211554531342010367 0ustar 8 debian/patches/0000755000000000000000000000000011554533171010622 5ustar debian/patches/series0000644000000000000000000000006511554531342012036 0ustar fix-bad-whatis-entry.patch fix-typo-in-manpage.patch debian/patches/fix-typo-in-manpage.patch0000644000000000000000000000100111554531342015422 0ustar Description: Fix typo in manpage Origin: vendor Bug: https://rt.cpan.org/Public/Bug/Display.html?id=63798 Forwarded: no Author: Salvatore Bonaccorso Last-Update: 2011-04-23 --- a/lib/App/CLI.pm +++ b/lib/App/CLI.pm @@ -22,7 +22,7 @@ package MyApp::List; use base qw(App::CLI::Command); # any (SUB)COMMAND of your App - use constant options => qw( + use constant options => ( "h|help" => "help", "verbose" => "verbose", 'n|name=s' => 'name', debian/patches/fix-bad-whatis-entry.patch0000644000000000000000000000062211554531342015607 0ustar Description: Fix bad whatis entry Origin: vendor Bug: https://rt.cpan.org/Ticket/Display.html?id=67712 Forwarded: not-needed Author: Salvatore Bonaccorso Last-Update: 2011-04-23 --- a/lib/App/CLI/Command/Help.pm +++ b/lib/App/CLI/Command/Help.pm @@ -8,7 +8,7 @@ =head1 NAME -App::CLI::Command::Help +App::CLI::Command::Help - output PODs of each command =head1 SYNOPSIS