Received: by mail.netbsd.org (Postfix, from userid 605) id C5DE284DBE; Fri, 27 Oct 2017 23:50:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 523AB84DAA for ; Fri, 27 Oct 2017 23:50:39 +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 WI7H4io7FqeC for ; Fri, 27 Oct 2017 23:50:38 +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 CEC6784D99 for ; Fri, 27 Oct 2017 23:50:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C55B9FBDE; Fri, 27 Oct 2017 23:50:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150914823877710" MIME-Version: 1.0 Date: Fri, 27 Oct 2017 23:50:38 +0000 From: "Pierre Pronchery" Subject: CVS commit: pkgsrc/sysutils To: pkgsrc-changes@NetBSD.org Reply-To: khorben@netbsd.org X-Mailer: log_accum Message-Id: <20171027235038.C55B9FBDE@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. --_----------=_150914823877710 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: khorben Date: Fri Oct 27 23:50:38 UTC 2017 Modified Files: pkgsrc/sysutils/xentools45: Makefile pkgsrc/sysutils/xentools46: Makefile pkgsrc/sysutils/xentools48: Makefile Log Message: Skip the RELRO test for libexec/xen/boot/hvmloader To generate a diff of this commit: cvs rdiff -u -r1.51 -r1.52 pkgsrc/sysutils/xentools45/Makefile cvs rdiff -u -r1.23 -r1.24 pkgsrc/sysutils/xentools46/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/sysutils/xentools48/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150914823877710 Content-Disposition: inline Content-Length: 2251 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/xentools45/Makefile diff -u pkgsrc/sysutils/xentools45/Makefile:1.51 pkgsrc/sysutils/xentools45/Makefile:1.52 --- pkgsrc/sysutils/xentools45/Makefile:1.51 Fri Sep 8 09:51:25 2017 +++ pkgsrc/sysutils/xentools45/Makefile Fri Oct 27 23:50:38 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.51 2017/09/08 09:51:25 jaapb Exp $ +# $NetBSD: Makefile,v 1.52 2017/10/27 23:50:38 khorben Exp $ VERSION= 4.5.5 PKGREVISION= 7 @@ -38,6 +38,7 @@ CONFLICTS+= xenstoretools-[0-9]* XENTOP= ${WRKDIR}/xen-${VERSION} WRKSRC= ${XENTOP}/tools CHECK_PORTABILITY_SKIP= examples/* +CHECK_RELRO_SKIP= libexec/xen/boot/hvmloader EGDIR= ${PREFIX}/share/examples/xen MESSAGE_SUBST+= EGDIR=${EGDIR} Index: pkgsrc/sysutils/xentools46/Makefile diff -u pkgsrc/sysutils/xentools46/Makefile:1.23 pkgsrc/sysutils/xentools46/Makefile:1.24 --- pkgsrc/sysutils/xentools46/Makefile:1.23 Tue Oct 17 11:10:36 2017 +++ pkgsrc/sysutils/xentools46/Makefile Fri Oct 27 23:50:38 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2017/10/17 11:10:36 bouyer Exp $ +# $NetBSD: Makefile,v 1.24 2017/10/27 23:50:38 khorben Exp $ # # VERSION is set in version.mk as it is shared with other packages .include "version.mk" @@ -38,6 +38,7 @@ CONFLICTS+= xenstoretools-[0-9]* XENTOP= ${WRKDIR}/xen-${VERSION} WRKSRC= ${XENTOP}/tools CHECK_PORTABILITY_SKIP= examples/* +CHECK_RELRO_SKIP= libexec/xen/boot/hvmloader EGDIR= ${PREFIX}/share/examples/xen MESSAGE_SUBST+= EGDIR=${EGDIR} Index: pkgsrc/sysutils/xentools48/Makefile diff -u pkgsrc/sysutils/xentools48/Makefile:1.10 pkgsrc/sysutils/xentools48/Makefile:1.11 --- pkgsrc/sysutils/xentools48/Makefile:1.10 Tue Oct 17 11:10:36 2017 +++ pkgsrc/sysutils/xentools48/Makefile Fri Oct 27 23:50:38 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2017/10/17 11:10:36 bouyer Exp $ +# $NetBSD: Makefile,v 1.11 2017/10/27 23:50:38 khorben Exp $ # VERSION= 4.8.2 VERSION_IPXE= 827dd1bfee67daa683935ce65316f7e0f057fe1c @@ -77,6 +77,7 @@ CONFLICTS+= xenstoretools-[0-9]* CHECK_PORTABILITY_SKIP= tools/examples/* \ tools/qemu-xen/scripts/qemu-binfmt-conf.sh +CHECK_RELRO_SKIP= libexec/xen/boot/hvmloader EGDIR= ${PREFIX}/share/examples/xen MESSAGE_SUBST+= EGDIR=${EGDIR} --_----------=_150914823877710--