./devel/p5-Getopt-Long, Extended processing of command line options

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 2.57, Package name: p5-Getopt-Long-2.57, Maintainer: pkgsrc-users

Module Getopt::Long implements an extended getopt function called
GetOptions(). This function implements the POSIX standard for command
line options, with GNU extensions, while still capable of handling the
traditional one-letter options. In general, this means that command line
options can have long names instead of single letters, and are
introduced with a double dash `--`.

Optionally, Getopt::Long can support the traditional bundling of
single-letter command line options.


Required to run:
[lang/perl5] [devel/p5-Perl4-CoreLibs]

Required to build:
[pkgtools/cwrappers]

Master sites: (Expand)

Filesize: 44.198 KB

Version history: (Expand)


CVS history: (Expand)


   2024-02-04 06:44:24 by Amitai Schleier | Files touched by this commit (4)
Log message:
Revive p5-Getopt-Long, as some packages need newer than what's bundled
with Perl 5.38.0.
   2020-08-31 20:13:29 by Thomas Klausner | Files touched by this commit (3631)
Log message:
*: bump PKGREVISION for perl-5.32.
   2019-10-19 14:52:40 by Makoto Fujiwara | Files touched by this commit (2)
Log message:
(devel/p5-Getopt-Long) Updated 2.50 to 2.51

Changes in version 2.51
-----------------------
* Fix bug https://rt.cpan.org/Ticket/Display.html?id=122068.
* Fix bug https://rt.perl.org/Ticket/Display.html?id=134352.
* Fix warnings when getting options after calling Getopt::Long->VERSION.
  Thanks to Dan Book.
* Fix issue https://rt.cpan.org/Ticket/Display.html?id=124789.
   2019-08-11 15:25:21 by Thomas Klausner | Files touched by this commit (3557)
Log message:
Bump PKGREVISIONs for perl 5.30.0
   2019-06-30 22:17:50 by Nia Alarie | Files touched by this commit (1816)
Log message:
Update packages using a search.cpan.org HOMEPAGE to metacpan.org.

The former now redirects to the latter.

This covers the most simple cases where http://search.cpan.org/dist/name
can be changed to https://metacpan.org/release/name.

Reviewed by hand to hopefully make sure no unwanted changes sneak in.
   2018-08-22 11:48:07 by Thomas Klausner | Files touched by this commit (3558)
Log message:
Recursive bump for perl5-5.28.0
   2017-06-05 16:25:36 by Ryo ONODERA | Files touched by this commit (2298)
Log message:
Recursive revbump from lang/perl5 5.26.0
   2017-05-28 01:37:41 by Wen Heping | Files touched by this commit (2)
Log message:
Update to 2.50

Upstream changes:
Changes in version 2.50
-----------------------

* Fix bug https://rt.cpan.org/Ticket/Display.html?id=120231.

* Fix bug https://rt.cpan.org/Ticket/Display.html?id=120300.
  Unfortunately, this withdraws a small part of fix 114999.
  GNU getopt_long() does not accept the (optional)
  argument to be passed to the option without = sign.
  We do, since not doing so breaks existing scripts.

* Provide a default value for options (gnu_compat mode).
  Thanks to Andrew Gregory.