X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=blobdiff_plain;f=Makefile.PL;h=1c70c6f3bb133412825c521d73efa7d61047fbc6;hp=4f80c837d6d19a1c4723911863163f7580e0035f;hb=4821798351defce82c102e46d6f5f84f0cdc0e34;hpb=3d41aa23f35501ca92aab8aa42980fa73f7fa74f diff --git a/Makefile.PL b/Makefile.PL index 4f80c837..1c70c6f3 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,15 +1,26 @@ #!/usr/bin/perl -w -# Copyright (C) 2013-2018 all contributors +# Copyright (C) 2013-2019 all contributors # License: AGPL-3.0+ use strict; use ExtUtils::MakeMaker; -my @EXE_FILES = split("\n", `git ls-files 'script/*' 2>/dev/null`); -my $PM_FILES = `git ls-files lib '*.pm' 2>/dev/null`; -$PM_FILES =~ tr/\n/ /; +open my $m, '<', 'MANIFEST' or die "open(MANIFEST): $!\n"; +chomp(my @manifest = (<$m>)); +my @EXE_FILES = grep(m!^script/!, @manifest); +my $PM_FILES = join(' ', grep(m!^lib/.*\.pm$!, @manifest)); + +# Don't waste user's disk space by installing some pods from +# imported code or internal use only +my %man3 = map {; # semi-colon tells Perl this is a BLOCK (and not EXPR) + my $base = $_; + my $mod = $base; + $mod =~ s!/!::!g; + $mod =~ s/\.\w+\z//; + "lib/PublicInbox/$_" => "blib/man3/PublicInbox::$mod.3" +} qw(Git.pm Import.pm WWW.pod SaPlugin/ListMirror.pod); WriteMakefile( NAME => 'PublicInbox', - VERSION => '0.0.0', + VERSION => '1.2.0', AUTHOR => 'Eric Wong ', ABSTRACT => 'public-inbox server infrastructure', EXE_FILES => \@EXE_FILES, @@ -18,15 +29,37 @@ WriteMakefile( # We also depend on git. # Keep this sorted and synced to the INSTALL document 'Date::Parse' => 0, + + # libperl$PERL_VERSION, + # `perl5' on FreeBSD + # perl-Digest-SHA on RH-based + 'Digest::SHA' => 0, 'Email::MIME' => 0, + + # the following should be pulled in by Email::MIME: 'Email::MIME::ContentType' => 0, 'Email::Simple' => 0, - 'Encode::MIME::Header' => 0, + + # libperl$PERL_VERSION or libencode-perl on Debian, + # `perl5' on FreeBSD + 'Encode' => 0, + + # TODO: these should really be made optional... 'Plack' => 0, 'URI::Escape' => 0, + # We have more test dependencies, but do not force - # users to install them + # users to install them. See INSTALL + + # All Perl installs I know about have these, but RH-based + # distros make them separate even though 'perl' pulls them in + 'File::Path' => 0, + 'File::Temp' => 0, + 'Getopt::Long' => 0, + 'Exporter' => 0, + # ExtUtils::MakeMaker # this file won't run w/o it... }, + MAN3PODS => \%man3, ); sub MY::postamble { @@ -34,23 +67,32 @@ sub MY::postamble { # support using eatmydata to speed up tests (apt-get install eatmydata): # https://www.flamingspork.com/projects/libeatmydata/ EATMYDATA = +N = \$\$(( \$\$(nproc 2>/dev/null || gnproc 2>/dev/null || echo 2) + 1 )) -include config.mak -include Documentation/include.mk -N ?= \$(shell echo \$\$(( \$\$(nproc 2>/dev/null || echo 2) + 1))) SCRIPTS := scripts/ssoma-replay -my_syntax := \$(addsuffix .syntax, $PM_FILES \$(EXE_FILES) \$(SCRIPTS)) - +syn_files = $PM_FILES \$(EXE_FILES) \$(SCRIPTS) \$(wildcard t/*.t) +my_syntax = \$(addsuffix .syntax, \$(syn_files)) +changed = \$(shell git ls-files -m) %.syntax :: - @\$(PERL) -I lib -c \$(subst .syntax,,\$@) + @\$(PERL) -w -I lib -c \$(subst .syntax,,\$@) + +syntax:: \$(filter-out lib/PublicInbox/DSKQXS.pm.syntax,\$(my_syntax)) -syntax:: \$(my_syntax) +dsyn :: \$(addsuffix .syntax, \$(filter \$(changed), \$(syn_files))) check-manifest :: MANIFEST - if git ls-files >\$<.gen 2>&1; then diff -u \$< \$<.gen; fi + if git ls-files >\$?.gen 2>&1; then diff -u \$? \$?.gen; fi check:: pure_all check-manifest - \$(EATMYDATA) prove -lv -j\$(N) + \$(EATMYDATA) prove -lvw -j\$(N) + +lib/PublicInbox/UserContent.pm :: contrib/css/216dark.css + \$(PERL) -I lib \$@ \$? + +# Ensure new .pm files will always be installed: +Makefile.PL :: MANIFEST EOF }