1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
do{ my $x = [
{
'ARGV' => []
},
{
'cc' => 'gcc',
'ld' => 'gcc'
},
{
'mymetafile2' => 'MYMETA.json',
'use_rcfile' => 1,
'install_base_relpaths' => {},
'dist_abstract' => undef,
'orig_dir' => '/home/pepper/new',
'release_status' => 'stable',
'perl' => '/usr/bin/perl',
'allow_mb_mismatch' => 0,
'pureperl_only' => 0,
'metafile' => 'META.yml',
'magic_number' => undef,
'quiet' => undef,
'test_requires' => {},
'pm_files' => undef,
'use_tap_harness' => 0,
'recursive_test_files' => undef,
'configure_requires' => {},
'install_sets' => {},
'metafile2' => 'META.json',
'script_files' => undef,
'mymetafile' => 'MYMETA.yml',
'install_path' => {},
'test_file_exts' => [
'.t'
],
'dist_version' => '1.0.0',
'license' => 'unknown',
'bundle_inc_preload' => [],
'recurse_into' => [],
'get_options' => {},
'prefix' => undef,
'recommends' => {},
'dist_version_from' => undef,
'build_script' => 'Build',
'meta_merge' => {},
'needs_compiler' => '',
'auto_configure_requires' => 1,
'pod_files' => undef,
'include_dirs' => [],
'prefix_relpaths' => {},
'create_license' => undef,
'blib' => 'blib',
'base_dir' => '/home/pepper/new',
'install_base' => undef,
'share_dir' => undef,
'extra_compiler_flags' => [],
'prereq_action_types' => [
'requires',
'build_requires',
'test_requires',
'conflicts',
'recommends'
],
'scripts' => undef,
'dist_author' => undef,
'xs_files' => undef,
'program_name' => undef,
'meta_add' => {},
'installation_path' => {
'/home/pepper/new/' => undef
},
'test_files' => undef,
'c_source' => undef,
'debug' => undef,
'create_makefile_pl' => undef,
'PL_files' => undef,
'html_css' => '',
'config' => undef,
'libdoc_dirs' => [
'blib/lib',
'blib/arch'
],
'pollute' => undef,
'cpan_client' => 'cpan',
'dynamic_config' => 1,
'build_bat' => 0,
'build_requires' => {},
'extra_linker_flags' => [],
'create_packlist' => 1,
'sign' => undef,
'_added_to_INC' => [],
'build_elements' => [
'PL',
'support',
'pm',
'xs',
'share_dir',
'pod',
'script'
],
'dist_suffix' => undef,
'allow_pureperl' => 0,
'has_config_data' => undef,
'original_prefix' => {},
'build_class' => 'Module::Build',
'mb_version' => '0.4211',
'autosplit' => undef,
'destdir' => undef,
'verbose' => undef,
'bundle_inc' => [],
'create_readme' => undef,
'bindoc_dirs' => [
'blib/script'
],
'module_name' => undef,
'config_dir' => '_build',
'installdirs' => 'site',
'extra_manify_args' => undef,
'requires' => {
'Games::Cards' => 0,
'IO::Socket' => 0,
'Data::Dumper' => 0
},
'conflicts' => {},
'dist_name' => 'mytest',
'debugger' => undef,
'tap_harness_args' => {}
}
];
$x; }
|