From 4b9ab5255a2ce9e0f75a80afc731a96b760e9816 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Mon, 20 Jun 2016 00:57:11 +0000 Subject: [PATCH] MANIFEST: update with recent changes And add a check-manifest target to the Makefile to ensure we're up-to-date with git (but do not depend on git). --- .gitignore | 1 + MANIFEST | 2 ++ Makefile.PL | 5 ++++- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 18d00210..3b333a52 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /config.mak +/MANIFEST.gen /Makefile.old /pm_to_blib /MYMETA.* diff --git a/MANIFEST b/MANIFEST index 9c8cc1cc..17a2a311 100644 --- a/MANIFEST +++ b/MANIFEST @@ -76,6 +76,7 @@ lib/PublicInbox/View.pm lib/PublicInbox/WWW.pm lib/PublicInbox/WatchMaildir.pm lib/PublicInbox/WwwAttach.pm +lib/PublicInbox/WwwStream.pm sa_config/Makefile sa_config/README sa_config/root/etc/spamassassin/public-inbox.pre @@ -134,3 +135,4 @@ t/search.t t/spawn.t t/utf8.mbox t/view.t +t/watch_maildir.t diff --git a/Makefile.PL b/Makefile.PL index 171712a7..4a911037 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -47,7 +47,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 -- 2.44.0