From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF, T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id A5BBE1F724 for ; Thu, 9 Nov 2023 10:09:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1699524587; bh=LsUDst+cftQl/cKEBeQS0MTDOq5N216zHbIwEKNpHK8=; h=From:To:Subject:Date:In-Reply-To:References:From; b=y51t8+wL3Z8bV717z4TrodB1IbETvnv/OU2mr0c6eClMk4JWGrqBxv6U7yBl7XHYI 5kuqDn1b3B9ewXjw2qjDlwqT9vzmrLhd88DI2JNre25vlD+qBqGubVz0fgC4THdjnM 83wDZUYLBnsHAlWx8Qit7DcLP68E0K7rQr5i2UgM= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 04/13] lei_up: use v5.12 Date: Thu, 9 Nov 2023 10:09:37 +0000 Message-ID: <20231109100946.1440611-5-e@80x24.org> In-Reply-To: <20231109100946.1440611-1-e@80x24.org> References: <20231109100946.1440611-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: No unicode_strings dependencies here, AFAIK --- lib/PublicInbox/LeiUp.pm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/PublicInbox/LeiUp.pm b/lib/PublicInbox/LeiUp.pm index 0faa180d..9931f017 100644 --- a/lib/PublicInbox/LeiUp.pm +++ b/lib/PublicInbox/LeiUp.pm @@ -3,8 +3,7 @@ # "lei up" - updates the result of "lei q --save" package PublicInbox::LeiUp; -use strict; -use v5.10.1; +use v5.12; # n.b. we use LeiInput to setup IMAP auth use parent qw(PublicInbox::IPC PublicInbox::LeiInput); use PublicInbox::LeiSavedSearch; # OverIdx @@ -174,8 +173,7 @@ no warnings 'once'; *ipc_atfork_child = \&PublicInbox::LeiInput::input_only_atfork_child; package PublicInbox::LeiUp1; # for redispatch_all -use strict; -use v5.10.1; +use v5.12; sub nxt ($$$) { my ($lei, $out, $op_p) = @_;