Received: by mail.netbsd.org (Postfix, from userid 605) id 1CE5D84D73; Tue, 8 Sep 2020 11:39:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9840684D66 for ; Tue, 8 Sep 2020 11:39:01 +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 d4BqjE2Ng7V7 for ; Tue, 8 Sep 2020 11:39:01 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 202DB84D23 for ; Tue, 8 Sep 2020 11:39:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 18EA3FB28; Tue, 8 Sep 2020 11:39:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_159956514130320" MIME-Version: 1.0 Date: Tue, 8 Sep 2020 11:39:01 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/databases/p5-SQL-Abstract-Classic To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20200908113901.18EA3FB28@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. --_----------=_159956514130320 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Sep 8 11:39:01 UTC 2020 Modified Files: pkgsrc/databases/p5-SQL-Abstract-Classic: Makefile Log Message: p5-SQL-Abstract-Classic: make some TEST_DEPENDS DEPENDS. They should be test dependencies, but the build framework checks for them as runtime dependencies. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/databases/p5-SQL-Abstract-Classic/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_159956514130320 Content-Disposition: inline Content-Length: 1473 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/p5-SQL-Abstract-Classic/Makefile diff -u pkgsrc/databases/p5-SQL-Abstract-Classic/Makefile:1.1 pkgsrc/databases/p5-SQL-Abstract-Classic/Makefile:1.2 --- pkgsrc/databases/p5-SQL-Abstract-Classic/Makefile:1.1 Sun Sep 6 21:04:38 2020 +++ pkgsrc/databases/p5-SQL-Abstract-Classic/Makefile Tue Sep 8 11:39:00 2020 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.1 2020/09/06 21:04:38 wiz Exp $ +# $NetBSD: Makefile,v 1.2 2020/09/08 11:39:00 wiz Exp $ DISTNAME= SQL-Abstract-Classic-1.91 PKGNAME= p5-${DISTNAME} +PKGREVISION= 1 CATEGORIES= databases perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=SQL/} @@ -13,12 +14,12 @@ LICENSE= ${PERL5_LICENSE} DEPENDS+= p5-SQL-Abstract-[0-9]*:../../databases/p5-SQL-Abstract DEPENDS+= p5-MRO-Compat-[0-9]*:../../devel/p5-MRO-Compat DEPENDS+= p5-Moo-[0-9]*:../../devel/p5-Moo -TEST_DEPENDS+= p5-Test-Deep-[0-9]*:../../devel/p5-Test-Deep -TEST_DEPENDS+= p5-Test-Exception-[0-9]*:../../devel/p5-Test-Exception -TEST_DEPENDS+= p5-Test-Warn-[0-9]*:../../devel/p5-Test-Warn +# should be test dependencies, but it checks it as runtime dependencies +DEPENDS+= p5-Test-Deep-[0-9]*:../../devel/p5-Test-Deep +DEPENDS+= p5-Test-Exception-[0-9]*:../../devel/p5-Test-Exception +DEPENDS+= p5-Test-Warn-[0-9]*:../../devel/p5-Test-Warn PERL5_PACKLIST= auto/SQL/Abstract/Classic/.packlist -#PERL5_MODULE_TYPE= Module::Install::Bundled .include "../../lang/perl5/module.mk" .include "../../mk/bsd.pkg.mk" --_----------=_159956514130320--