Received: by mail.netbsd.org (Postfix, from userid 605) id 8406784D31; Fri, 5 May 2023 23:00:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B4ECD84CF3 for ; Fri, 5 May 2023 23:00:28 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id tUzrKKFiE_rX for ; Fri, 5 May 2023 23:00:28 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 1348F84CD9 for ; Fri, 5 May 2023 23:00:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0CD45FA87; Fri, 5 May 2023 23:00:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1683327628190470" MIME-Version: 1.0 Date: Fri, 5 May 2023 23:00:28 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/lang/perl5 To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20230505230028.0CD45FA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1683327628190470 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Fri May 5 23:00:27 UTC 2023 Modified Files: pkgsrc/lang/perl5: packlist.mk Log Message: perl5: Unbreak unbalanced quote marks. This wasn't noticed because this code is effectively useless and should be ripped out. To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/lang/perl5/packlist.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1683327628190470 Content-Disposition: inline Content-Length: 858 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/perl5/packlist.mk diff -u pkgsrc/lang/perl5/packlist.mk:1.22 pkgsrc/lang/perl5/packlist.mk:1.23 --- pkgsrc/lang/perl5/packlist.mk:1.22 Tue Apr 25 07:29:47 2023 +++ pkgsrc/lang/perl5/packlist.mk Fri May 5 23:00:27 2023 @@ -1,4 +1,4 @@ -# $NetBSD: packlist.mk,v 1.22 2023/04/25 07:29:47 adam Exp $ +# $NetBSD: packlist.mk,v 1.23 2023/05/05 23:00:27 jperkin Exp $ # # This Makefile fragment is intended to be included by packages that # create packlist files. This file is automatically included by @@ -28,7 +28,7 @@ _PERL5_PACKLIST_MK= # defined .include "../../mk/bsd.prefs.mk" PERL5_USE_PACKLIST?= yes -.if ${PERL5_USE_PACKLIST:tl} == yes" +.if ${PERL5_USE_PACKLIST:tl} == yes # XXX: still experimental, but many packages already work #PERL5_PACKLIST?= auto/${DISTNAME:C/-[0-9].*$//:C,-,/,g}/.packlist .endif --_----------=_1683327628190470--