From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.1 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 643472018B for ; Mon, 28 Nov 2022 05:32:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1669613560; bh=MrDjlxggjQPytFAG3OQgDX8Jb1xyFae2F9ioTCqhIF4=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Zrtte27TE01Nn0X43lSSG4SVRw4kLuS8Hthd5jjk85AkJTQEQKDd+k35cDLgj/v+p nrsfFzKvJkCoWQuIKQDyaxKkfFKvFM50ELSwAAjRI4eTI76bHPkkEV+Vs09iEz7eM7 rOh4xw7F5zXj40uyoBJzJPpFQ1yVLiZL7Hu3S8fA= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 37/95] lei_mirror: require Perl v5.12+ Date: Mon, 28 Nov 2022 05:31:34 +0000 Message-Id: <20221128053232.291618-38-e@80x24.org> In-Reply-To: <20221128053232.291618-1-e@80x24.org> References: <20221128053232.291618-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Another tiny step towards improve startup performance by relying on Perl 5.12 strictness and avoiding strict.pm --- lib/PublicInbox/LeiMirror.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/PublicInbox/LeiMirror.pm b/lib/PublicInbox/LeiMirror.pm index c3512d43..279ce30e 100644 --- a/lib/PublicInbox/LeiMirror.pm +++ b/lib/PublicInbox/LeiMirror.pm @@ -3,8 +3,7 @@ # "lei add-external --mirror" support (also "public-inbox-clone"); package PublicInbox::LeiMirror; -use strict; -use v5.10.1; +use v5.12; use parent qw(PublicInbox::IPC); use IO::Uncompress::Gunzip qw(gunzip $GunzipError); use IO::Compress::Gzip qw(gzip $GzipError);