Received: by mail.netbsd.org (Postfix, from userid 605) id 96C9484D4B; Fri, 19 Jan 2018 09:44:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2229B84D27 for ; Fri, 19 Jan 2018 09:44:37 +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 3T2n9LAik4BR for ; Fri, 19 Jan 2018 09:44:36 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8069C84C82 for ; Fri, 19 Jan 2018 09:44:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7B03BFBDE; Fri, 19 Jan 2018 09:44:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_151635507613920" MIME-Version: 1.0 Date: Fri, 19 Jan 2018 09:44:36 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/security/p5-Net-SSLeay To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20180119094436.7B03BFBDE@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. --_----------=_151635507613920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Jan 19 09:44:36 UTC 2018 Modified Files: pkgsrc/security/p5-Net-SSLeay: Makefile Log Message: p5-Net-SSLeay: switch TEST_DEPENDS back to BUILD_DEPENDS In pbulk with PKGSRC_RUN_TESTS, test dependencies are not installed but expected. To generate a diff of this commit: cvs rdiff -u -r1.87 -r1.88 pkgsrc/security/p5-Net-SSLeay/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_151635507613920 Content-Disposition: inline Content-Length: 1060 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/p5-Net-SSLeay/Makefile diff -u pkgsrc/security/p5-Net-SSLeay/Makefile:1.87 pkgsrc/security/p5-Net-SSLeay/Makefile:1.88 --- pkgsrc/security/p5-Net-SSLeay/Makefile:1.87 Wed Jan 17 08:52:51 2018 +++ pkgsrc/security/p5-Net-SSLeay/Makefile Fri Jan 19 09:44:36 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.87 2018/01/17 08:52:51 wiz Exp $ +# $NetBSD: Makefile,v 1.88 2018/01/19 09:44:36 wiz Exp $ DISTNAME= Net-SSLeay-1.84 PKGNAME= p5-${DISTNAME} @@ -10,9 +10,10 @@ HOMEPAGE= http://search.cpan.org/dist/Ne COMMENT= Perl5 module for using OpenSSL LICENSE= openssl -TEST_DEPENDS+= p5-Test-Exception-[0-9]*:../../devel/p5-Test-Exception -TEST_DEPENDS+= p5-Test-Warn-[0-9]*:../../devel/p5-Test-Warn -TEST_DEPENDS+= p5-Test-NoWarnings-[0-9]*:../../devel/p5-Test-NoWarnings +# TEST_DEPENDS +BUILD_DEPENDS+= p5-Test-Exception-[0-9]*:../../devel/p5-Test-Exception +BUILD_DEPENDS+= p5-Test-Warn-[0-9]*:../../devel/p5-Test-Warn +BUILD_DEPENDS+= p5-Test-NoWarnings-[0-9]*:../../devel/p5-Test-NoWarnings USE_LANGUAGES= c --_----------=_151635507613920--