-
Notifications
You must be signed in to change notification settings - Fork 17
/
Makefile.PL
165 lines (151 loc) · 5.22 KB
/
Makefile.PL
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
use strict;
require 5.008001;
use ExtUtils::MakeMaker;
use File::Copy;
if ($ENV{PERLBREW_HOME} and $ENV{PERLBREW_HOME} eq "/home/njh/.perlbrew") {
warn "Your smokers have been blocked because of consistent failures that\n";
warn " are all caused by the smoking setup and not by module errors. If\n";
warn " you have fixed that all, please inform the authors, so this block\n";
warn " can be lifted again.\n";
exit 0;
}
sub link_or_copy {
my ($source, $dest) = @_;
link ($source, $dest) or copy ($source, $dest);
} # link_or_copy
my @exe;
unless (exists $ENV{AUTOMATED_TESTING} and $ENV{AUTOMATED_TESTING} == 1) {
-f "scripts/xls2csv" or link_or_copy "scripts/xlsx2csv", "scripts/xls2csv";
-f "scripts/xlsgrep" or link_or_copy "scripts/xlscat", "scripts/xlsgrep";
for ( [ "xlscat", "Convert Spreadsheet to plain text or CSV" ],
[ "xlsgrep", "Grep pattern from Spreadsheet" ],
[ "ss2tk", "Show a Spreadsheet in Perl/Tk" ],
[ "ssdiff", "Show diff between two spreadsheets" ],
[ "xls2csv", "Wrapper around xlscat for easy XLS => CSV" ],
[ "xlsx2csv", "Wrapper around xlscat for easy XLSX => CSV" ],
) {
prompt ("Do you want to install $_->[0]\t$_->[1] ?", "y") =~ m/[Yy]/ and
push @exe, "scripts/$_->[0]";
}
}
my %wm = (
NAME => "Spreadsheet::Read",
DISTNAME => "Spreadsheet-Read",
ABSTRACT => "Read the data from a spreadsheet",
AUTHOR => "H.Merijn Brand <perl5\@tux.freedom.nl>",
VERSION_FROM => "Read.pm",
EXE_FILES => [ @exe ],
PREREQ_FATAL => 0,
PREREQ_PM => {
# Core modules
"Exporter" => 0,
"Encode" => 0,
"Carp" => 0,
"Data::Dumper" => 0,
"File::Temp" => 0.22,
"IO::Scalar" => 0, # Optional
"List::Util" => 0,
# For testing
"Test::More" => 0.88,
"Test::NoWarnings" => 0,
# for ss2tk
# "Tk" => 804.032,
# "Tk::NoteBook" => 4.009,
# "Tk::TableMatrix::Spreadsheet" => 1.2,
},
macro => { TARFLAGS => "--format=ustar -c -v -f", },
);
$ExtUtils::MakeMaker::VERSION > 6.30 and $wm{LICENSE} = "perl";
if ($ENV{EXTENDED_TESTING}) { # for CpanCover and masochists
# Backend parsers, all optional
# Versions also need to be declared inside Read.pm !
$wm{PREREQ_PM}{"Text::CSV_PP"} = "1.97";
$wm{PREREQ_PM}{"Text::CSV_XS"} = "1.36";
$wm{PREREQ_PM}{"Spreadsheet::ReadSXC"} = "0.26";
$wm{PREREQ_PM}{"Spreadsheet::ParseODS"} = "0.26";
$wm{PREREQ_PM}{"Spreadsheet::ParseExcel"} = "0.65";
$wm{PREREQ_PM}{"Spreadsheet::ParseXLSX"} = "0.27";
$wm{PREREQ_PM}{"Spreadsheet::XLSX"} = "0.15";
$wm{PREREQ_PM}{"Spreadsheet::Perl"} = "0";
}
my $rv = WriteMakefile (%wm);
# perlcriticrc uses Config::Tiny, which does not support nesting
if (-f ".perlcriticrc" && -s "$ENV{HOME}/.perlcriticrc") {
open my $fh, ">", ".perlcriticrc";
print $fh do {
local (@ARGV, $/) = ("$ENV{HOME}/.perlcriticrc"); <> };
print $fh join "\n" => "",
"[-Bangs::ProhibitDebuggingModules]",
"[-BuiltinFunctions::ProhibitBooleanGrep]",
"[-BuiltinFunctions::ProhibitStringyEval]", # Guarded
"[-Compatibility::PodMinimumVersion]", # L<File::Temp|https://...] requires 5.12
"[-Documentation::ProhibitDuplicateSeeAlso]",
"[-Documentation::RequireLinkedURLs]", # L<File::Temp|https://...] requires 5.12
"[-Modules::ProhibitMultiplePackages]",
"[-Subroutines::ProhibitExplicitReturnUndef]",
"[-ValuesAndExpressions::ProhibitCommaSeparatedStatements]", # False positive
"[-ValuesAndExpressions::ProhibitVersionStrings]", # use 5.8.1
"";
close $fh;
}
package MY;
sub postamble {
my $valgrind = join " ", qw(
PERL_DESTRUCT_LEVEL=2 PERL_DL_NONLAZY=1
valgrind
--suppressions=sandbox/perl.supp
--leak-check=yes
--leak-resolution=high
--show-reachable=yes
--num-callers=50
--log-fd=3
$(FULLPERLRUN) "-MExtUtils::Command::MM" "-e"
"test_harness($(TEST_VERBOSE), '$(INST_LIB)', '$(INST_ARCHLIB)')"
$(TEST_FILES) 3>valgrind.log
);
my @pc = -f ".perlcriticrc" ? ("\tperlcritic -1 Read.pm") : ();
$] >= 5.010 && -d "xt" && ($ENV{AUTOMATED_TESTING} || 0) != 1 and push @pc,
'',
'test::',
' -@env TEST_FILES="xt/*.t" make -e test_dynamic';
join "\n" =>
'cover test_cover:',
' ccache -C',
' cover -test',
'',
'leakcheck:',
" $valgrind",
' -@tail -5 valgrind.log',
'',
'leaktest:',
q{ sandbox/leaktest $(FULLPERLRUN) "test_harness($(TEST_VERBOSE), '$(INST_LIB)', '$(INST_ARCHLIB)')" $(TEST_FILES)},
'',
'spellcheck:',
' pod-spell-check --aspell --ispell',
'',
'checkmeta: spellcheck',
' perl sandbox/genMETA.pl -c',
'',
'fixmeta: distmeta',
' perl sandbox/genMETA.pl',
' ls -l */META.yml',
'',
'tgzdist: doc checkmeta fixmeta $(DISTVNAME).tar.gz distcheck',
' -@mv -f $(DISTVNAME).tar.gz $(DISTVNAME).tgz',
' -@cpants_lint.pl $(DISTVNAME).tgz',
' -@rm -f Debian_CPANTS.txt',
'',
'doc docs: doc/Spreadsheet-Read.md doc/Spreadsheet-Read.html doc/Spreadsheet-Read.man',
' -@rm -f pod2html.tmp',
'doc/Spreadsheet-Read.md: Read.pm',
' pod2markdown < $? > $@',
'doc/Spreadsheet-Read.html: Read.pm',
' pod2html < $? 2>&1 | grep -v "^Cannot find" > $@',
'doc/Spreadsheet-Read.3: Read.pm',
' pod2man < $? > $@',
'doc/Spreadsheet-Read.man: doc/Spreadsheet-Read.3',
' nroff2man < $? > $@',
@pc,
'';
} # postamble
1;