Received: by mail.netbsd.org (Postfix, from userid 605) id C6A4084F1D; Mon, 19 Mar 2018 20:49:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B97C584F12 for ; Mon, 19 Mar 2018 20:49:02 +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 uaKSeEykBrwX for ; Mon, 19 Mar 2018 20:49:02 +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 F2ACC84E60 for ; Mon, 19 Mar 2018 20:49:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EBD69FB40; Mon, 19 Mar 2018 20:49:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_152149254170390" MIME-Version: 1.0 Date: Mon, 19 Mar 2018 20:49:01 +0000 From: "Benny Siegert" Subject: CVS commit: pkgsrc/sysutils/u-boot To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20180319204901.EBD69FB40@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. --_----------=_152149254170390 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Mon Mar 19 20:49:01 UTC 2018 Modified Files: pkgsrc/sysutils/u-boot: u-boot.mk Log Message: Constrain to Python 2.7. Python 3 is theoretically supported, but newer python versions remove the cmpfunc type from their C APIs, which breaks the build. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/sysutils/u-boot/u-boot.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_152149254170390 Content-Disposition: inline Content-Length: 722 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/u-boot/u-boot.mk diff -u pkgsrc/sysutils/u-boot/u-boot.mk:1.7 pkgsrc/sysutils/u-boot/u-boot.mk:1.8 --- pkgsrc/sysutils/u-boot/u-boot.mk:1.7 Wed Nov 15 22:08:27 2017 +++ pkgsrc/sysutils/u-boot/u-boot.mk Mon Mar 19 20:49:01 2018 @@ -1,4 +1,4 @@ -# $NetBSD: u-boot.mk,v 1.7 2017/11/15 22:08:27 jmcneill Exp $ +# $NetBSD: u-boot.mk,v 1.8 2018/03/19 20:49:01 bsiegert Exp $ UBOOT_VERSION?= 2017.11 PKGNAME= u-boot-${UBOOT_TARGET}-${UBOOT_VERSION} @@ -20,6 +20,7 @@ LICENSE= gnu-gpl-v2 USE_LANGUAGES= c c++ USE_TOOLS+= gmake gsed pkg-config PYTHON_FOR_BUILD_ONLY= yes +PYTHON_VERSIONS_ACCEPTED= 27 REPLACE_INTERPRETER+= python2 REPLACE.python2.old= .*/usr/bin/env.*python2* --_----------=_152149254170390--