Codebase list libgetopt-complete-perl / 6dd43a48-dc29-4670-8c70-deb4568ca42b/upstream
Import upstream version 0.26+git20120225.1.4094a60 Debian Janitor 2 years ago
11 changed file(s) with 95 addition(s) and 25 deletion(s). Raw diff Collapse all Expand all
00 Revision history for Getopt-Complete
1
2 0.27 ???
3 ???
14
25 0.26 2011-08-23
36 Minor rewrite to use COMP_WORDS instead of COMP_LINE to resolve bug involving redirection.
2323 t/demoapp.opts
2424 t/myprogram
2525 t/mytreeapp
26 META.json
0 {
1 "abstract" : "programmable shell completion for Perl apps",
2 "author" : [
3 "unknown"
4 ],
5 "dynamic_config" : 1,
6 "generated_by" : "Module::Build version 0.4231",
7 "license" : [
8 "perl_5"
9 ],
10 "meta-spec" : {
11 "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
12 "version" : 2
13 },
14 "name" : "Getopt-Complete",
15 "prereqs" : {
16 "build" : {
17 "requires" : {
18 "App::Prove" : "0",
19 "Test::More" : "0.86"
20 }
21 },
22 "configure" : {
23 "requires" : {
24 "Module::Build" : "0.42"
25 }
26 },
27 "runtime" : {
28 "requires" : {
29 "Carp" : "0",
30 "Getopt::Long" : "0",
31 "IPC::Open2" : "0",
32 "Scalar::Util" : "0",
33 "perl" : "v5.8.7"
34 }
35 }
36 },
37 "provides" : {
38 "Getopt::Complete" : {
39 "file" : "lib/Getopt/Complete.pm",
40 "version" : "0.27"
41 },
42 "Getopt::Complete::Args" : {
43 "file" : "lib/Getopt/Complete/Args.pm"
44 },
45 "Getopt::Complete::Cache" : {
46 "file" : "lib/Getopt/Complete/Cache.pm"
47 },
48 "Getopt::Complete::Compgen" : {
49 "file" : "lib/Getopt/Complete/Compgen.pm"
50 },
51 "Getopt::Complete::LazyOptions" : {
52 "file" : "lib/Getopt/Complete/LazyOptions.pm"
53 },
54 "Getopt::Complete::Options" : {
55 "file" : "lib/Getopt/Complete/Options.pm"
56 }
57 },
58 "release_status" : "stable",
59 "resources" : {
60 "license" : [
61 "http://dev.perl.org/licenses/"
62 ]
63 },
64 "version" : "0.27",
65 "x_serialization_backend" : "JSON::PP version 4.04"
66 }
00 ---
11 abstract: 'programmable shell completion for Perl apps'
2 author: []
2 author:
3 - unknown
34 build_requires:
4 App::Prove: ''
5 Test::More: 0.86
5 App::Prove: '0'
6 Test::More: '0.86'
67 configure_requires:
7 Module::Build: 0.36
8 generated_by: 'Module::Build version 0.3607'
8 Module::Build: '0.42'
9 dynamic_config: 1
10 generated_by: 'Module::Build version 0.4231, CPAN::Meta::Converter version 2.150010'
911 license: perl
1012 meta-spec:
1113 url: http://module-build.sourceforge.net/META-spec-v1.4.html
12 version: 1.4
14 version: '1.4'
1315 name: Getopt-Complete
1416 provides:
1517 Getopt::Complete:
1618 file: lib/Getopt/Complete.pm
17 version: 0.26
19 version: '0.27'
1820 Getopt::Complete::Args:
1921 file: lib/Getopt/Complete/Args.pm
20 version: 0
2122 Getopt::Complete::Cache:
2223 file: lib/Getopt/Complete/Cache.pm
23 version: 0
2424 Getopt::Complete::Compgen:
2525 file: lib/Getopt/Complete/Compgen.pm
26 version: 0
2726 Getopt::Complete::LazyOptions:
2827 file: lib/Getopt/Complete/LazyOptions.pm
29 version: 0
3028 Getopt::Complete::Options:
3129 file: lib/Getopt/Complete/Options.pm
32 version: 0
3330 requires:
34 Carp: ''
35 Getopt::Long: ''
36 IPC::Open2: ''
37 Scalar::Util: ''
31 Carp: '0'
32 Getopt::Long: '0'
33 IPC::Open2: '0'
34 Scalar::Util: '0'
3835 perl: v5.8.7
3936 resources:
4037 license: http://dev.perl.org/licenses/
41 version: 0.26
38 version: '0.27'
39 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
00 NAME
1 Getopt::Complete - programmable shell completion for Perl apps
1 Getopt::Complete - dynamic programmable shell completion
22
33 VERSION
44 This document describes Getopt::Complete v0.9.
498498
499499 =head1 VERSION
500500
501 This document describes Getopt::Complete::Args 0.26.
501 This document describes Getopt::Complete::Args 0.27.
502502
503503 =head1 SYNOPSIS
504504
200200
201201 =head1 VERSION
202202
203 This document describes Getopt::Complete::Cache 0.26.
203 This document describes Getopt::Complete::Cache 0.27.
204204
205205 =head1 SYNOPSIS
206206
6363
6464 =head1 VERSION
6565
66 This document describes Getopt::Complete::Compgen 0.26.
66 This document describes Getopt::Complete::Compgen 0.27.
6767
6868 =head1 SYNOPSIS
6969
6767
6868 =head1 VERSION
6969
70 This document describes Getopt::Complete::LazyOptions 0.26.
70 This document describes Getopt::Complete::LazyOptions 0.27.
7171
7272 =head1 SYNOPSIS
7373
268268
269269 =head1 VERSION
270270
271 This document describes Getopt::Complete 0.26
271 This document describes Getopt::Complete 0.27
272272
273273 =head1 SYNOPSIS
274274
22 use strict;
33 use warnings;
44
5 our $VERSION = '0.26';
5 our $VERSION = '0.27';
66
77 use Getopt::Complete::Options;
88 use Getopt::Complete::Args;
9494
9595 =head1 VERSION
9696
97 This document describes Getopt::Complete 0.26.
97 This document describes Getopt::Complete 0.27.
9898
9999 =head1 SYNOPSIS
100100
917917 Scott Smith (sakoht at cpan .org)
918918 Nathan Nutter
919919 Andrei Benea
920 Thomas B. Mooney
920921
921922 =head1 LICENSE
922923