Received: by mail.netbsd.org (Postfix, from userid 605) id 12ECE84E39; Thu, 12 Mar 2020 20:50:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 91EC284DBE for ; Thu, 12 Mar 2020 20:50:31 +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 n1H3XR0-tEek for ; Thu, 12 Mar 2020 20:50:31 +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 E3D6484DB9 for ; Thu, 12 Mar 2020 20:50:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D67F4FB27; Thu, 12 Mar 2020 20:50:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1584046230213000" MIME-Version: 1.0 Date: Thu, 12 Mar 2020 20:50:30 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/archivers/bsdtar To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200312205030.D67F4FB27@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. --_----------=_1584046230213000 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Thu Mar 12 20:50:30 UTC 2020 Modified Files: pkgsrc/archivers/bsdtar: Makefile Log Message: archivers/bsdtar: avoid circular dependency with PKG_DEVELOPER checks bsdtar is used as the default extractor for distfiles. It is installed very early in the pkgsrc lifecycle, directly after bootstrapping. At that point, neither of checkperms nor check-portability may be installed yet. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 pkgsrc/archivers/bsdtar/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1584046230213000 Content-Disposition: inline Content-Length: 854 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/archivers/bsdtar/Makefile diff -u pkgsrc/archivers/bsdtar/Makefile:1.26 pkgsrc/archivers/bsdtar/Makefile:1.27 --- pkgsrc/archivers/bsdtar/Makefile:1.26 Sat Nov 2 22:54:25 2019 +++ pkgsrc/archivers/bsdtar/Makefile Thu Mar 12 20:50:30 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2019/11/02 22:54:25 rillig Exp $ +# $NetBSD: Makefile,v 1.27 2020/03/12 20:50:30 rillig Exp $ .include "../../archivers/libarchive/Makefile.common" .include "../../mk/bsd.prefs.mk" @@ -46,6 +46,9 @@ FILESDIR.zlib?= ${.CURDIR}/../../devel/ INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 +CHECK_PERMS= no # avoid circular dependency +CHECK_PORTABILITY= no # avoid circular dependency + .include "../../mk/bsd.prefs.mk" .if ${OS_VARIANT} == "SCOOSR5" # SCO OpenServer 5.0.7/3.2 has windows.h, and configure expects it for MS Windows. --_----------=_1584046230213000--