2 # Copyright (C) 2013-2020 all contributors <meta@public-inbox.org>
3 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
5 use ExtUtils::MakeMaker;
6 open my $m, '<', 'MANIFEST' or die "open(MANIFEST): $!\n";
7 chomp(my @manifest = (<$m>));
8 my @EXE_FILES = grep(m!^script/!, @manifest);
13 my @RELEASES = qw(v1.5.0 v1.4.0 v1.3.0 v1.2.0 v1.1.0-pre1 v1.0.0);
15 $v->{news_deps} = [ map { "Documentation/RelNotes/$_.eml" } @RELEASES ];
16 $v->{txt} = [ qw(INSTALL README COPYING TODO HACKING) ];
17 my @dtxt = grep(m!\ADocumentation/[^/]+\.txt\z!, @manifest);
18 push @dtxt, 'Documentation/standards.txt';
19 push @dtxt, 'Documentation/flow.txt';
20 push @dtxt, @{$v->{txt}};
23 $html =~ s/\.txt\z/.html/ or $html .= '.html';
24 $t->{"$html : $txt"} = [ "\$(txt2pre) <$txt" ];
26 $v->{t_slash_star_dot_t} = [ grep(m!\At/.*\.t\z!, @manifest) ];
27 my @scripts = qw(scripts/ssoma-replay); # legacy
28 my @syn = (@EXE_FILES, grep(m!^lib/.*\.pm$!, @manifest), @scripts);
29 @syn = grep(!/DSKQXS\.pm/, @syn) if !eval { require IO::KQueue };
30 @syn = grep(!/Unsubscribe\.pm/, @syn) if !eval { require Crypt::CBC };
31 @syn = grep(!/SaPlugin/, @syn) if !eval { require Mail::SpamAssasin };
32 $v->{syn_files} = \@syn;
33 $v->{my_syntax} = [map { "$_.syntax" } @syn];
34 $v->{-m1} = [ map { (split('/'))[-1] } @EXE_FILES ];
35 $v->{-m5} = [ qw(public-inbox-config public-inbox-v1-format
36 public-inbox-v2-format) ];
37 $v->{-m7} = [ qw(public-inbox-overview) ];
38 $v->{-m8} = [ qw(public-inbox-daemon) ];
39 my @sections = (1, 5, 7, 8);
43 for my $i (@sections) {
44 my $ary = $v->{"-m$i"};
47 my $pod = "Documentation/$m.pod";
48 my $txt = "Documentation/$m.txt";
49 $t->{"$m.$i : $pod"} = [ "\$(podman) -s$i $pod \$@" ];
50 $t->{"$txt : $pod"} = [ "\$(podtext) $pod \$\@+",
51 "touch -r $pod \$\@+",
53 $t->{"Documentation/$m.html : $txt"} = [ "\$(txt2pre) <$txt" ];
54 $t->{".$m.cols : $m.$i"} = [
55 "\@echo CHECK80 $m.$i;".
56 "COLUMNS=80 \$(MAN) ./$m.$i | \$(check_man)" ];
58 push @{$v->{check_80}}, map { ".$_.cols" } @$ary;
59 my $manuals = $v->{"man$i"} = [ map { "$_.$i" } @$ary ];
60 push @{$v->{manuals}}, @$manuals;
61 push @{$v->{mantxt}}, map { "Documentation/$_.txt" } @$ary;
63 push @dtxt, @{$v->{mantxt}};
64 $v->{docs} = [ @dtxt, 'NEWS' ];
65 $v->{docs_html} = [ map {;
70 $v->{gz_docs} = [ map { "$_.gz" } (@{$v->{docs}},@{$v->{docs_html}}) ];
71 $v->{rsync_docs} = [ @{$v->{gz_docs}}, @{$v->{docs}},
72 @{$v->{docs_html}}, qw(NEWS.atom NEWS.atom.gz)];
74 # external manpages which we host ourselves, since some packages
75 # (currently just Xapian) doesn't host manpages themselves.
76 my @xman = qw(copydatabase.1 xapian-compact.1);
77 $v->{xdocs} = [ map { "Documentation/.$_.txt" } @xman ];
78 $v->{xdocs_html} = [ map { "Documentation/.$_.html" } @xman ];
79 for (@{$v->{xdocs}}) {
81 '$(PERL) -w Documentation/extman.perl $@ >$@+',
85 $html =~ s/\.txt\z/.html/;
86 $t->{"$html : $_"} = [ "\$(txt2pre) <$_" ];
88 $v->{gz_xdocs} = [ map { "$_.gz" } (@{$v->{xdocs_html}}, @{$v->{xdocs}}) ];
89 $v->{rsync_xdocs} = [ @{$v->{gz_xdocs}}, @{$v->{xdocs_html}}, @{$v->{xdocs}} ];
91 my $TGTS = join("\n", map {;
94 "$tgt_prereq\n".join('', map { "\t$_\n" } @$cmds);
97 my $VARS = join("\n", map {;
99 join('', map { "$varname += $_\n" } sort @{$v->{$varname}});
100 } grep(!/^-/, sort keys %$v));
101 $VARS .= "\nRELEASES = ".join(' ', @RELEASES)."\n";
103 # Don't waste user's disk space by installing some pods from
104 # imported code or internal use only
105 my %man3 = map {; # semi-colon tells Perl this is a BLOCK (and not EXPR)
110 "lib/PublicInbox/$_" => "blib/man3/PublicInbox::$mod.3"
111 } qw(Git.pm Import.pm WWW.pod SaPlugin/ListMirror.pod);
114 NAME => 'PublicInbox',
116 AUTHOR => 'Eric Wong <e@yhbt.net>',
117 ABSTRACT => 'public-inbox server infrastructure',
118 EXE_FILES => \@EXE_FILES,
120 # note: we use spamc(1), NOT the Perl modules
121 # We also depend on git.
122 # Keep this sorted and synced to the INSTALL document
124 # libperl$PERL_VERSION,
126 # perl-Digest-SHA on RH-based
129 # libperl$PERL_VERSION or libencode-perl on Debian,
131 'Encode' => 2.35, # 2.35 shipped with 5.10.1
133 # libperl$PERL_VERSION + perl-modules-$PERL_VERSION
134 'Compress::Raw::Zlib' => 0,
135 'Compress::Zlib' => 0,
136 'IO::Compress::Gzip' => 0,
138 # Plack is needed for public-inbox-httpd and PublicInbox::WWW
141 # TODO: this should really be made optional...
144 # We have more test dependencies, but do not force
145 # users to install them. See INSTALL
147 # All Perl installs I know about have these, but RH-based
148 # distros make them separate even though 'perl' pulls them in
150 'File::Temp' => '0.19', # for ->tmpdir support
153 # ExtUtils::MakeMaker # this file won't run w/o it...
161 # support using eatmydata to speed up tests (apt-get install eatmydata):
162 # https://www.flamingspork.com/projects/libeatmydata/
164 N = \$\$(( \$\$(nproc 2>/dev/null || gnproc 2>/dev/null || echo 2) + 1 ))
167 -include Documentation/include.mk
170 # syntax checks are currently GNU make only:
172 @\$(PERL) -w -I lib -c \$<
174 syntax:: \$(my_syntax)
176 changed = \$(shell git ls-files -m)
177 dsyn :: \$(addsuffix .syntax, \$(filter \$(changed), \$(syn_files)))
179 check_manifest := if test -e .git && git ls-files >MANIFEST.gen 2>&1; then \\
180 diff -u MANIFEST MANIFEST.gen; fi
182 check-manifest : MANIFEST
185 # the traditional way running per-*.t processes:
186 check-each :: pure_all
187 \$(EATMYDATA) \$(PROVE) --state=save -bvw -j\$(N)
190 # lightly-tested way to run tests, relies "--state=save" in check-each
191 # for best performance
192 check-run :: pure_all
193 \$(EATMYDATA) \$(PROVE) -bvw t/run.perl :: -j\$(N)
198 lib/PublicInbox/UserContent.pm :: contrib/css/216dark.css
199 \$(PERL) -I lib \$@ \$?
201 # Ensure new .pm files will always be installed by updating
202 # the timestamp of Makefile.PL which forces Makefile to be remade
203 Makefile.PL : MANIFEST
204 touch -r MANIFEST \$@