From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-2.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, URIBL_BLOCKED shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: meta@public-inbox.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 437D71F71A for ; Sun, 6 Sep 2015 09:26:05 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 1/2] Makefile.PL: conform to naming conventions Date: Sun, 6 Sep 2015 09:26:04 +0000 Message-Id: <20150906092605.29025-1-e@80x24.org> List-Id: Not that we actually have a bare PublicInbox module, yet. Maybe MID can be it. --- Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index ccf4bbb..9b62699 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -8,7 +8,7 @@ my $PM_FILES = `git ls-files lib '*.pm' 2>/dev/null`; $PM_FILES =~ tr/\n/ /; WriteMakefile( - NAME => 'public-inbox', + NAME => 'PublicInbox', VERSION => '0.0.0', AUTHOR => 'Eric Wong ', ABSTRACT => 'public-inbox server infrastructure', -- EW