Re: [PATCH] t9001: use older Getopt::Long boolean prefix '--no' rather than '--no-'

2015-02-12 Thread Junio C Hamano
Kyle J. McKay mack...@gmail.com writes: Since it's really not very difficult or invasive to add support for the no- variants, here's a patch to do so: I am inclined to replace the tc/t9001-noxmailer topic that has been sitting on my Undecided pile with this patch and move it forward. *

Re: [PATCH] t9001: use older Getopt::Long boolean prefix '--no' rather than '--no-'

2015-02-02 Thread Junio C Hamano
Kyle J. McKay mack...@gmail.com writes: On Feb 1, 2015, at 17:33, Junio C Hamano wrote: Kyle J. McKay mack...@gmail.com writes: use 5.008; So either that needs to change or the code should properly deal with the version of Getopt::Long that comes with 5.8.0. Since it's really not very

Re: [PATCH] t9001: use older Getopt::Long boolean prefix '--no' rather than '--no-'

2015-02-02 Thread Kyle J. McKay
On Feb 1, 2015, at 17:33, Junio C Hamano wrote: Kyle J. McKay mack...@gmail.com writes: use 5.008; So either that needs to change or the code should properly deal with the version of Getopt::Long that comes with 5.8.0. Since it's really not very difficult or invasive to add support for the

Re: [PATCH] t9001: use older Getopt::Long boolean prefix '--no' rather than '--no-'

2015-02-01 Thread Junio C Hamano
Kyle J. McKay mack...@gmail.com writes: use 5.008; So either that needs to change or the code should properly deal with the version of Getopt::Long that comes with 5.8.0. Since it's really not very difficult or invasive to add support for the no- variants, here's a patch to do so:

Re: [PATCH] t9001: use older Getopt::Long boolean prefix '--no' rather than '--no-'

2015-01-30 Thread brian m. carlson
On Fri, Jan 30, 2015 at 07:24:45AM +0100, Tom G. Christensen wrote: The '--no-xmailer' option is a Getopt::Long boolean option. The '--no-' prefix (as in --no-xmailer) for boolean options is not supported in Getopt::Long version 2.32 which was released with Perl 5.8.0. This version only supports

Re: [PATCH] t9001: use older Getopt::Long boolean prefix '--no' rather than '--no-'

2015-01-30 Thread Kyle J. McKay
On Jan 30, 2015, at 15:05, brian m. carlson wrote: On Fri, Jan 30, 2015 at 07:24:45AM +0100, Tom G. Christensen wrote: The '--no-xmailer' option is a Getopt::Long boolean option. The '--no-' prefix (as in --no-xmailer) for boolean options is not supported in Getopt::Long version 2.32 which was

[PATCH] t9001: use older Getopt::Long boolean prefix '--no' rather than '--no-'

2015-01-29 Thread Tom G. Christensen
The '--no-xmailer' option is a Getopt::Long boolean option. The '--no-' prefix (as in --no-xmailer) for boolean options is not supported in Getopt::Long version 2.32 which was released with Perl 5.8.0. This version only supports '--no' as in '--noxmailer'. More recent versions of Getopt::Long,