]> Sergey Matveev's repositories - public-inbox.git/blobdiff - Makefile.PL
Makefile.PL: MANIFEST dependency fix
[public-inbox.git] / Makefile.PL
index 8daeb4fb071177bfec0b3b4ce854c107fd405445..4aa0caa708e6dc1903d49bd5f7f1e21b21bf7175 100644 (file)
@@ -13,13 +13,14 @@ my $PM_FILES = join(' ', grep(m!^lib/.*\.pm$!, @manifest));
 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);
+} qw(Git.pm Import.pm WWW.pod SaPlugin/ListMirror.pod);
 
 WriteMakefile(
        NAME => 'PublicInbox',
-       VERSION => '1.1.0-pre1',
+       VERSION => '1.2.0',
        AUTHOR => 'Eric Wong <e@80x24.org>',
        ABSTRACT => 'public-inbox server infrastructure',
        EXE_FILES => \@EXE_FILES,
@@ -53,7 +54,7 @@ WriteMakefile(
                # 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,
+               'File::Temp' => '0.19',
                'Getopt::Long' => 0,
                'Exporter' => 0,
                # ExtUtils::MakeMaker # this file won't run w/o it...
@@ -85,10 +86,16 @@ check-manifest :: MANIFEST
        if git ls-files >\$?.gen 2>&1; then diff -u \$? \$?.gen; fi
 
 check:: pure_all check-manifest
-       \$(EATMYDATA) prove -lvw -j\$(N)
+       \$(EATMYDATA) prove -bvw -j\$(N)
 
 lib/PublicInbox/UserContent.pm :: contrib/css/216dark.css
        \$(PERL) -I lib \$@ \$?
 
+# Ensure new .pm files will always be installed by updating
+# the timestamp of Makefile.PL which forces Makefile to be remade
+Makefile.PL : MANIFEST
+       touch -r \$< \$@
+       \$(PERLRUN) \$@
+
 EOF
 }