Received: by mail.netbsd.org (Postfix, from userid 605) id 16CFD84DDF; Thu, 18 Jun 2020 17:05:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 94CC184D6A for ; Thu, 18 Jun 2020 17:05:56 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id GPQkDOuixkE1 for ; Thu, 18 Jun 2020 17:05:56 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id EA67184D24 for ; Thu, 18 Jun 2020 17:05:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E76FFFB28; Thu, 18 Jun 2020 17:05:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1592499955161410" MIME-Version: 1.0 Date: Thu, 18 Jun 2020 17:05:55 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/mk/fetch To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20200618170555.E76FFFB28@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. --_----------=_1592499955161410 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Jun 18 17:05:55 UTC 2020 Modified Files: pkgsrc/mk/fetch: fetch.mk Log Message: mk: do not check vulnerability when just fetching distfiles This is intended to reduce the log output on ftp.NetBSD.org when fetching all distfiles. Also, we call the target in basically every step of package creation (extract, patch, configure, build, install, package) - perhaps we should trim this down some more. To generate a diff of this commit: cvs rdiff -u -r1.73 -r1.74 pkgsrc/mk/fetch/fetch.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1592499955161410 Content-Disposition: inline Content-Length: 822 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/fetch/fetch.mk diff -u pkgsrc/mk/fetch/fetch.mk:1.73 pkgsrc/mk/fetch/fetch.mk:1.74 --- pkgsrc/mk/fetch/fetch.mk:1.73 Sat Apr 25 11:36:20 2020 +++ pkgsrc/mk/fetch/fetch.mk Thu Jun 18 17:05:55 2020 @@ -1,4 +1,4 @@ -# $NetBSD: fetch.mk,v 1.73 2020/04/25 11:36:20 js Exp $ +# $NetBSD: fetch.mk,v 1.74 2020/06/18 17:05:55 wiz Exp $ .if empty(INTERACTIVE_STAGE:Mfetch) && empty(FETCH_MESSAGE:U) _MASTER_SITE_BACKUP= ${MASTER_SITE_BACKUP:=${DIST_SUBDIR}${DIST_SUBDIR:D/}} @@ -73,7 +73,7 @@ SITES.${fetchfile:T:S/=/--/}?= ${PATCH_S ### _FETCH_TARGETS+= ${_PKG_INSTALL_DEPENDS:Dpkg_install-depends} _FETCH_TARGETS+= bootstrap-depends -_FETCH_TARGETS+= check-vulnerable +#_FETCH_TARGETS+= check-vulnerable _FETCH_TARGETS+= pre-fetch _FETCH_TARGETS+= do-fetch _FETCH_TARGETS+= post-fetch --_----------=_1592499955161410--