-
Notifications
You must be signed in to change notification settings - Fork 140
/
squash
executable file
·93 lines (75 loc) · 2.44 KB
/
squash
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
#!perl
=pod
Squashes together the parts of ack into the single ack-standalone
file.
The arguments to squash are either filenames from the ack distro
like Ack.pm, or module names like File::Next. For modules, squash
loads them and then pushes them into ack-standalone.
=cut
use warnings;
use strict;
use File::Next;
# Make clear that ack is not supposed to be edited.
my $NO_EDIT_COMMENT = <<'EOCOMMENT';
#
# This file, ack, is generated code.
# Please DO NOT EDIT or send patches for it.
#
# Please take a look at the source from
# https://github.com/beyondgrep/ack2
# and submit patches against the individual files
# that build ack.
#
EOCOMMENT
my $debug_mode = grep { $_ eq '--debug' } @ARGV;
@ARGV = grep { $_ ne '--debug' } @ARGV;
my $code = "#!/usr/bin/env perl\n$NO_EDIT_COMMENT\n";
for my $arg ( @ARGV ) {
my $filename = $arg;
if ( $arg =~ /::/ ) {
my $key = "$arg.pm";
$key =~ s{::}{/}g;
$filename = $INC{$key} or die "Can't find the file for $arg";
}
warn "Reading $filename\n";
open( my $fh, '<', $filename ) or die "Can't open $filename: $!";
my $was_in_pod = 0;
my $in_pod = 0;
$code .= "#line 1 '$filename'\n" if $debug_mode && $filename ne 'ack';
while ( <$fh> ) {
next if /^use (?:File::Next|App::Ack)/;
s/^use base (.+)/BEGIN {\n our \@ISA = $1\n}/;
if ( $was_in_pod && !$in_pod ) {
$was_in_pod = 0;
if ($debug_mode) {
$code .= "#line $. '$filename'\n";
}
}
# See if we're in module POD blocks
if ( $filename ne 'ack' ) {
$was_in_pod = $in_pod;
if ( /^=(\w+)/ ) {
$in_pod = ($1 ne 'cut');
next;
}
elsif ( $in_pod ) {
next;
}
}
# Replace the shebang line and append 'no edit' comment
if ( s{^#!.+}{package main;} ) {
# Skip the shebang line and replace it with package statement.
}
# Remove Perl::Critic comments.
# I'd like to remove all comments, but this is a start
s{\s*##.+critic.*}{};
$code .= $_;
}
close $fh;
}
# We only use two of the four constructors in File::Next, so delete the other two.
for my $unused_func ( qw( dirs everything ) ) {
$code =~ s/^sub $unused_func\b.*?^}//sm or die qq{Unable to find the sub "$unused_func" to remove from ack-standalone};
}
print $code;
exit 0;