Received: by mail.netbsd.org (Postfix, from userid 605) id 41A2B84D69; Mon, 23 Mar 2020 22:26:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BC0F884D37 for ; Mon, 23 Mar 2020 22:26:22 +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 ne2kB4w8Wg0B for ; Mon, 23 Mar 2020 22:26:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 172C784CCD for ; Mon, 23 Mar 2020 22:26:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0C250FB27; Mon, 23 Mar 2020 22:26:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1585002382292820" MIME-Version: 1.0 Date: Mon, 23 Mar 2020 22:26:22 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/net/p5-IO-Interface To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200323222622.0C250FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1585002382292820 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Mon Mar 23 22:26:21 UTC 2020 Modified Files: pkgsrc/net/p5-IO-Interface: Makefile Log Message: net/p5-IO-Interface: fix warning about USE_TOOLS+=perl This Perl module is one of the few that actually calls the Perl interpreter by its base name and not by the executable given in an environment variable. Therefore it needs the USE_TOOLS+=perl line. The call to perl comes from Build.PL and works around a warning during the build. To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 pkgsrc/net/p5-IO-Interface/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1585002382292820 Content-Disposition: inline Content-Length: 802 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/p5-IO-Interface/Makefile diff -u pkgsrc/net/p5-IO-Interface/Makefile:1.30 pkgsrc/net/p5-IO-Interface/Makefile:1.31 --- pkgsrc/net/p5-IO-Interface/Makefile:1.30 Sun Aug 11 13:22:15 2019 +++ pkgsrc/net/p5-IO-Interface/Makefile Mon Mar 23 22:26:21 2020 @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.30 2019/08/11 13:22:15 wiz Exp $ +# $NetBSD: Makefile,v 1.31 2020/03/23 22:26:21 rillig Exp $ # DISTNAME= IO-Interface-1.09 PKGNAME= p5-${DISTNAME} -PKGREVISION= 3 +PKGREVISION= 4 CATEGORIES= net perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=IO/} @@ -14,6 +14,7 @@ LICENSE= artistic-2.0 PERL5_PACKLIST= auto/IO/Interface/.packlist PERL5_MODULE_TYPE= Module::Build +USE_TOOLS= perl .include "../../lang/perl5/module.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1585002382292820--