summaryrefslogtreecommitdiff
path: root/cpan/Getopt-Long
Commit message (Collapse)AuthorAgeFilesLines
* Getopt::Long: synch with CPAN version 2.54Johan Vromans2022-11-181-5/+9
| | | | | | From Changes: * Fix compatibility with Perl 5.8.
* Getopt::Long: sync with CPAN version 2.53Johan Vromans2022-11-172-32/+78
| | | | | | | | | | | | | | | | | From Changes: * Improve parsing of float numbers. https://rt.cpan.org/Ticket/Display.html?id=133216 * Fix Version/HelpMessage -message argument. https://rt.cpan.org/Ticket/Display.html?id=133963 * Added 'starter' method to the callback object. This method returns the starter (e.g. '--' or '-') of the option as used by the user. * Fix problem with Pod::Usage argument in examples/skel2.pl. * Enhanced option:default spec to octal, hex and binary.
* Update Getopt-Long from version 2.51 to 2.52Steve Hay2020-10-122-19/+59
|
* Getopt::Long: sync with CPAN version 2.51Johan Vromans2019-08-141-14/+19
|
* Update Getopt-Long to CPAN version 2.50Chris 'BinGOs' Williams2017-06-151-14/+32
| | | | | | | | | | | | | | | | | | [DELTA] 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.
* Update Getopt-Long to CPAN version 2.49Chris 'BinGOs' Williams2016-06-141-6/+6
| | | | | | | | | | | | | | | [DELTA] Changes in version 2.49 ----------------------- * Fix bug https://rt.cpan.org/Ticket/Display.html?id=114999 Thanks Roy Ivy III for finding and fixing this. * Fix bug https://rt.cpan.org/Ticket/Display.html?id=113748 Thanks Tom Wyant for finding and fixing this.
* Update Getopt-Long to CPAN version 2.48Chris 'BinGOs' Williams2015-11-021-7/+13
| | | | | | | | | | | [DELTA] Changes in version 2.48 ----------------------- * Fix bug https://rt.cpan.org/Ticket/Display.html?id=39052. Thanks to Roy Ivy III for digging this out and providing patches.
* Update Getopt-Long to CPAN version 2.47Chris 'BinGOs' Williams2015-06-221-10/+10
| | | | | | | | | | | | | | | | | | | | | | [DELTA] Changes in version 2.47 ----------------------- * Fix bug https://rt.cpan.org/Ticket/Display.html?id=89513. Should have done that earlier :) This changes the format for accepted float numbers: <optional sign> <optional mantissa> <optional dec.point and fraction> <optional "e" and exponent> Mantissa and decimal fraction may not both be omitted. Underscores are permissible virtually anywhere in numbers for clarity.
* Upgrade Getopt-Long from version 2.45 to 2.46Steve Hay2015-06-051-6/+6
|
* Update Getopt-Long to CPAN version 2.45Chris 'BinGOs' Williams2015-02-232-21/+44
| | | | | | | | | | | | | | | | [DELTA] Changes in version 2.45 ----------------------- * Revert behaviour of the combination of <> and pass_through to what is was in 2.42. Thanks to Wilson Snyder to provide enhancements to the documentation to clarify why <> and pass_through generally is a bad idea. It is, however, very unfortunate to hear from users that their programs *depend* on the undocumented pre-2.43 behaviour.
* Update Getopt-Long to CPAN version 2.44Chris 'BinGOs' Williams2015-02-211-5/+7
| | | | | | | | | | [DELTA] Changes in version 2.44 ----------------------- * Be gentle to the user community and turn fix 92462 into a warning. This may be changed back to error in some future release.
* Update Getopt-Long to CPAN version 2.43Chris 'BinGOs' Williams2015-01-141-21/+74
| | | | | | | | | | | | | | | [DELTA] Changes in version 2.43 ----------------------- * Fix bug https://rt.cpan.org/Ticket/Display.html?id=92462 * Implement enhancement https://rt.cpan.org/Public/Bug/Display.html?id=101537 * Fix the Getopt::Long part of bug https://rt.cpan.org/Ticket/Display.html?id=100335
* Remove all IGNORABLE files under cpan/Steve Hay2013-10-182-798/+0
| | | | | | | | | | | | | | | | This was discussed on p5p: http://www.nntp.perl.org/group/perl.perl5.porters/2013/10/msg208635.html One LICENSE file (Locale-Codes) has been removed (contrary to one suggestion in that thread) since it was the only one, and only says "This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself." anyway. Two files that I had previously suggested retaining for the sake of tests have also been removed. In one case, a test script has been modified (in Digest-MD5; I will send a ticket upstream); in the other case (in Test-Harness) I have removed the test which depended on the MANIFEST files, as suggested in the above thread.
* Update Getopt-Long to CPAN version 2.42Chris 'BinGOs' Williams2013-10-012-6/+10
| | | | | | | | | [DELTA] Changes in version 2.42 ----------------------- * Fix bug https://rt.cpan.org/Ticket/Display.html?id=88707
* Update Getopt-Long to CPAN version 2.41Chris 'BinGOs' Williams2013-07-092-4/+12
| | | | | | | | | | | | [DELTA] Changes in version 2.41 ----------------------- * Change INSTALLDIRS to site for perl >= 5.011. See https://rt.perl.org/rt3//Ticket/Display.html?id=116479 for details.
* Update Getopt-Long to CPAN version 2.40Chris 'BinGOs' Williams2013-06-163-10/+17
| | | | | | | | | | | [DELTA] Changes in version 2.40 ----------------------- * Fix bug #86095 Possible problem with aliases * Fix bug #85362 typo fix
* Update Getopt-Long to CPAN version 2.39Chris 'BinGOs' Williams2013-03-163-60/+143
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] Changes in version 2.39 ----------------------- * Fix unneccessary warnings when @ARGV contains undefs (yes, it happens). * Passing an object as first argument to the callback handler for <> turned out to be a problem in cases where the argument was passed to other modules, e.g., Archive::Tar. Revert the change since the added functionality of the object is not really relevant for the <> callback function. * Silence the deprecation warnings from newgetopt.pl for the purpose of testing. These tests will be removed along with newgetopt.pl in the next major release of perl. http://perl5.git.perl.org/perl.git/commit/b814bbfa9a2087bc * Eliminiate spurious warning. * Retain taintedness of command line option values. * Document that you need to check GetOptions return value :). * Several other minor documentation fixes and enhancements. * Fix bug #67577 Parsing of type 'o' not correct for multiple values
* Remove deprecated Perl 4 core librariesFlorian Ragwitz2011-07-031-39/+0
|
* Suppress deprecation warnings from test output for perl4 era libs.Nicholas Clark2010-06-291-1/+1
| | | | A tweak to the pattern used by 96471c6b3e9cad6e, to match the current warning.
* Move Getopt::Long from ext/ to cpan/Nicholas Clark2009-09-269-0/+3678