]> Sergey Matveev's repositories - public-inbox.git/blobdiff - Makefile.PL
doc: post-1.6 updates, start 1.7
[public-inbox.git] / Makefile.PL
index 5a26836284c4896001e95ed0393ed9a191d857b9..f6b7abb65647164193f576a78fb688f9593212e5 100644 (file)
@@ -71,11 +71,6 @@ $v->{gz_docs} = [ map { "$_.gz" } (@{$v->{docs}},@{$v->{docs_html}}) ];
 $v->{rsync_docs} = [ @{$v->{gz_docs}}, @{$v->{docs}},
        @{$v->{docs_html}}, qw(NEWS.atom NEWS.atom.gz)];
 
-# filter out public-inbox-gcf2 from the website, it's an internal command
-for my $var (qw(gz_docs rsync_docs)) {
-       @{$v->{$var}} = grep(!/-gcf2/, @{$v->{$var}});
-}
-
 # external manpages which we host ourselves, since some packages
 # (currently just Xapian) doesn't host manpages themselves.
 my @xman = qw(copydatabase.1 xapian-compact.1);
@@ -116,8 +111,11 @@ my %man3 = map {; # semi-colon tells Perl this is a BLOCK (and not EXPR)
 } qw(Git.pm Import.pm WWW.pod SaPlugin/ListMirror.pod);
 
 WriteMakefile(
-       NAME => 'PublicInbox',
+       NAME => 'PublicInbox', # n.b. camel-case is not our choice
+
+       # XXX drop "PENDING" in .pod before updating this!
        VERSION => '1.6.0',
+
        AUTHOR => 'Eric Wong <e@80x24.org>',
        ABSTRACT => 'public-inbox server infrastructure',
        EXE_FILES => \@EXE_FILES,