Received: by mail.netbsd.org (Postfix, from userid 605) id 6643F84DE2; Wed, 17 Jun 2020 13:40:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E2CAA84DA8 for ; Wed, 17 Jun 2020 13:40:26 +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 AaC6_dW__DMt for ; Wed, 17 Jun 2020 13:40:26 +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 400C784D2D for ; Wed, 17 Jun 2020 13:40:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 377D1FB28; Wed, 17 Jun 2020 13:40:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1592401226153170" MIME-Version: 1.0 Date: Wed, 17 Jun 2020 13:40:26 +0000 From: "Benny Siegert" Subject: CVS commit: [pkgsrc-2020Q1] pkgsrc/graphics/librsvg To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20200617134026.377D1FB28@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. --_----------=_1592401226153170 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Wed Jun 17 13:40:26 UTC 2020 Modified Files: pkgsrc/graphics/librsvg [pkgsrc-2020Q1]: available.mk Log Message: Pullup ticket #6243 - requested by nia graphics/librsvg: NetBSD/arm build fix Revisions pulled up: - graphics/librsvg/available.mk 1.2 --- Module Name: pkgsrc Committed By: nia Date: Wed Jun 17 10:13:25 UTC 2020 Modified Files: pkgsrc/graphics/librsvg: available.mk Log Message: librsvg: Disable rust version on NetBSD/arm (32-bit) It doesn't have the address space to build a rust compiler so this is currently broken. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.1.6.1 pkgsrc/graphics/librsvg/available.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1592401226153170 Content-Disposition: inline Content-Length: 919 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/librsvg/available.mk diff -u pkgsrc/graphics/librsvg/available.mk:1.1 pkgsrc/graphics/librsvg/available.mk:1.1.6.1 --- pkgsrc/graphics/librsvg/available.mk:1.1 Sat Jun 8 19:51:38 2019 +++ pkgsrc/graphics/librsvg/available.mk Wed Jun 17 13:40:26 2020 @@ -1,4 +1,4 @@ -# $NetBSD: available.mk,v 1.1 2019/06/08 19:51:38 leot Exp $ +# $NetBSD: available.mk,v 1.1.6.1 2020/06/17 13:40:26 bsiegert Exp $ # # This mk fragment define LIBRSVG_TYPE variable used in other librsvg mk # fragments. @@ -18,7 +18,9 @@ LIBRSVG_AVAILABLE_MK= defined .include "../../mk/bsd.prefs.mk" .include "../../lang/rust/platform.mk" -.if !empty(PLATFORM_SUPPORTS_RUST:M[Yy][Ee][Ss]) +# https://mail-index.netbsd.org/tech-pkg/2020/06/16/msg023380.html +.if !empty(PLATFORM_SUPPORTS_RUST:M[Yy][Ee][Ss]) && \ + empty(MACHINE_PLATFORM:MNetBSD-*-earm*) LIBRSVG_TYPE?= rust .else LIBRSVG_TYPE?= c --_----------=_1592401226153170--