-
Notifications
You must be signed in to change notification settings - Fork 13
/
Build.PL
74 lines (72 loc) · 2.52 KB
/
Build.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
use strict;
use warnings;
use Module::Build;
my $class = Module::Build->subclass(
class => 'My::Builder',
code => q{
sub ACTION_code {
use File::Spec::Functions;
my $self = shift;
$self->SUPER::ACTION_code(@_);
# Copy the test scripts and then set the shebang line and make
# sure that they're executable.
my $to_dir = $self->localize_file_path("t/scripts");
my $from = $self->localize_file_path("t/bin/psql");
my $to = $self->localize_file_path("$to_dir/psql");
$self->copy_if_modified(
from => $from,
to_dir => $to_dir,
flatten => 1,
);
$self->fix_shebang_line($to);
$self->make_executable($to);
$self->add_to_cleanup($to_dir);
}
sub ACTION_tarball_name { print shift->dist_dir . ".tar.gz\n" }
sub ACTION_latest_changes {
my $self = shift;
(my $dv = $self->dist_version) =~ s/^v//;
open my $in, '<:raw', 'Changes' or die "Cannot open Changes: $!\n";
open my $out, '>:raw', 'latest_changes.md' or die "Cannot open latest_changes.md: $!\n";
while (<$in>) { last if /^\Q$dv\E\b/ }
print {$out} "Changes for v$dv\n";
while (<$in>) {
last if /^\s*$/;
chomp;
if (s/^\s+-/- /) {
print {$out} "\n";
} else {
s/^\s+/ /;
}
print {$out} $_;
}
$self->add_to_cleanup('latest_changes.md');
}
},
);
$class->new(
module_name => 'TAP::Parser::SourceHandler::pgTAP',
license => 'perl',
configure_requires => {
'Module::Build' => '0.30',
},
build_requires => {
'Module::Build' => '0.30',
'Test::More' => '0.88',
},
requires => {
'TAP::Parser::SourceHandler' => 0,
'perl' => 5.006000,
},
recommends => {
'Test::Pod' => '1.41',
'Test::Pod::Coverage' => '1.06',
},
meta_merge => {
resources => {
homepage => 'https://search.cpan.org/dist/Tap-Parser-Sourcehandler-pgTAP/',
bugtracker => 'https://github.com/theory/tap-parser-sourcehandler-pgtap/issues/',
repository => 'https://github.com/theory/tap-parser-sourcehandler-pgtap',
}
},
)->create_build_script;