libgetopt-tabular-perl 0.3-2 source package in Ubuntu

Changelog

libgetopt-tabular-perl (0.3-2) unstable; urgency=low


  [ Nathan Handler ]
  * debian/watch: Update to ignore development releases.

  [ Ansgar Burchardt ]
  * debian/control: Convert Vcs-* fields to Git.

  [ gregor herrmann ]
  * debian/control: update {versioned,alternative} (build) dependencies.

  [ 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 ]
  * Strip trailing slash from metacpan URLs.

  [ Daniel Lintott ]
  * Convert package to short-format dephelper 8
  * Convert package to source format 3.0(quilt)
  * Refresh packaging using dh-make-perl refresh
  * Declare complaince with standards-version 3.9.5
  * Add DEP-3 patch header to 01-fix_perl_path.patch

 -- Daniel Lintott <email address hidden>  Thu, 10 Apr 2014 19:31:58 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe perl
Bionic release universe perl
Xenial release universe perl

Builds

Utopic: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libgetopt-tabular-perl_0.3-2.dsc 2.2 KiB 17d5072d7de0f8ba1cfe4c428d66bf6e250ecca6ef8351a7a43ab9b1c0639b03
libgetopt-tabular-perl_0.3.orig.tar.gz 25.8 KiB 9bdf067633b5913127820f4e8035edc53d08372faace56ba6bfa00c968a25377
libgetopt-tabular-perl_0.3-2.debian.tar.xz 2.4 KiB d9925d8270c4e48c6870183747bec2ea59b67fa10521ab64db61e5d85e7c66c1

Available diffs

No changes file available.

Binary packages built by this source

libgetopt-tabular-perl: table-driven argument parsing for Perl 5

 Getopt::Tabular is a Perl 5 module for table-driven argument parsing,
 vaguely inspired by John Ousterhout's Tk_ParseArgv.
 .
 Some nice features of Getopt::Tabular are:
  * Command-line arguments are carefully type-checked, both by pattern and
    number -- e.g. if an option requires two integers, GetOptions makes sure
    that exactly two integers follow it!
  * The valid command-line arguments are specified in a data structure
    separate from the call to GetOptions; this makes it easier to have very
    long lists of options, and to parse options from multiple sources
    (e.g. the command line, an environment variable, and a configuration file).
  * Getopt::Tabular can intelligently generate help text based on your option
    descriptions.
  * The type system is extensible, and if you can define your desired argument
    type using a single Perl regular expression then it's particularly easy to
    extend.
  * Options can be abbreviated and come in any order.
  * A "spoof" mode in which arguments are parsed without side-effects.