]> Sergey Matveev's repositories - public-inbox.git/blobdiff - Makefile.PL
update copyrights for 2018
[public-inbox.git] / Makefile.PL
index 61cb77b6ce7c5a8e9c7758d9f6f90db20c8b8795..4f80c837d6d19a1c4723911863163f7580e0035f 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl -w
-# Copyright (C) 2013-2015 all contributors <meta@public-inbox.org>
-# License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
+# Copyright (C) 2013-2018 all contributors <meta@public-inbox.org>
+# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 use strict;
 use ExtUtils::MakeMaker;
 my @EXE_FILES = split("\n", `git ls-files 'script/*' 2>/dev/null`);
@@ -18,14 +18,10 @@ WriteMakefile(
                # We also depend on git.
                # Keep this sorted and synced to the INSTALL document
                'Date::Parse' => 0,
-               'Email::Filter' => 0,
                'Email::MIME' => 0,
                'Email::MIME::ContentType' => 0,
                'Email::Simple' => 0,
                'Encode::MIME::Header' => 0,
-               'File::Path::Expand' => 0,
-               'IPC::Run' => 0,
-               'Mail::Thread' => '2.5', # 2.5+ needed for Email::Simple compat
                'Plack' => 0,
                'URI::Escape' => 0,
                # We have more test dependencies, but do not force
@@ -50,7 +46,10 @@ my_syntax := \$(addsuffix .syntax, $PM_FILES \$(EXE_FILES) \$(SCRIPTS))
 
 syntax:: \$(my_syntax)
 
-check:: pure_all
+check-manifest :: MANIFEST
+       if git ls-files >\$<.gen 2>&1; then diff -u \$< \$<.gen; fi
+
+check:: pure_all check-manifest
        \$(EATMYDATA) prove -lv -j\$(N)
 
 EOF