Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 317E31A9239 for ; Thu, 24 Feb 2022 21:29:15 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 830DB84EAF; Thu, 24 Feb 2022 21:29:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BA09284CE9 for ; Thu, 24 Feb 2022 21:29:13 +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 cDbda2OI9JJy for ; Thu, 24 Feb 2022 21:29:13 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1905B84CBC for ; Thu, 24 Feb 2022 21:29:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 128BEFB24; Thu, 24 Feb 2022 21:29:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_164573815334390" MIME-Version: 1.0 Date: Thu, 24 Feb 2022 21:29:13 +0000 From: "Nikita" Subject: CVS commit: pkgsrc/security/passphrase To: pkgsrc-changes@NetBSD.org Reply-To: nikita@netbsd.org X-Mailer: log_accum Message-Id: <20220224212913.128BEFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_164573815334390 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nikita Date: Thu Feb 24 21:29:13 UTC 2022 Modified Files: pkgsrc/security/passphrase: Makefile Log Message: security/passphrase: don't use RELRO for now. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/security/passphrase/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_164573815334390 Content-Disposition: inline Content-Length: 808 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/passphrase/Makefile diff -u pkgsrc/security/passphrase/Makefile:1.6 pkgsrc/security/passphrase/Makefile:1.7 --- pkgsrc/security/passphrase/Makefile:1.6 Tue Feb 1 20:00:56 2022 +++ pkgsrc/security/passphrase/Makefile Thu Feb 24 21:29:12 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2022/02/01 20:00:56 nikita Exp $ +# $NetBSD: Makefile,v 1.7 2022/02/24 21:29:12 nikita Exp $ DISTNAME= 1.2 PKGNAME= passphrase-1.2 @@ -16,6 +16,8 @@ WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} # \todo: There is currently an issue building this as a PIE, despite the # buildsystem targeting it as a PIE. MKPIE_SUPPORTED= no +# RELRO checks fail for this package at the moment +RELRO_SUPPORTED= no .include "../../lang/python/pyversion.mk" CONFLICTS+= ${PYPKGPREFIX}-pyutil-[0-9]* --_----------=_164573815334390--