From owner-svn-ports-head@freebsd.org Sun Feb 7 00:34:39 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 834AFA9EA47; Sun, 7 Feb 2016 00:34:39 +0000 (UTC) (envelope-from dumbbell@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 53EDA1B7E; Sun, 7 Feb 2016 00:34:39 +0000 (UTC) (envelope-from dumbbell@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u170YclW044387; Sun, 7 Feb 2016 00:34:38 GMT (envelope-from dumbbell@FreeBSD.org) Received: (from dumbbell@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u170YccP044386; Sun, 7 Feb 2016 00:34:38 GMT (envelope-from dumbbell@FreeBSD.org) Message-Id: <201602070034.u170YccP044386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dumbbell set sender to dumbbell@FreeBSD.org using -f From: =?UTF-8?Q?Jean-S=c3=a9bastien_P=c3=a9dron?= Date: Sun, 7 Feb 2016 00:34:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408340 - head/devel/cargo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Feb 2016 00:34:39 -0000 Author: dumbbell (src committer) Date: Sun Feb 7 00:34:38 2016 New Revision: 408340 URL: https://svnweb.freebsd.org/changeset/ports/408340 Log: devel/cargo: Build on amd64 only Cargo requires a prebuilt bootstrapped version of itself. The only one available for FreeBSD is for amd64. This prevents build failures on i386. Reviewed by: jbeich Approved by: jbeich MFH: 2016Q1 Differential Revision: https://reviews.freebsd.org/D5219 Modified: head/devel/cargo/Makefile Modified: head/devel/cargo/Makefile ============================================================================== --- head/devel/cargo/Makefile Sun Feb 7 00:30:49 2016 (r408339) +++ head/devel/cargo/Makefile Sun Feb 7 00:34:38 2016 (r408340) @@ -44,6 +44,9 @@ GH_ACCOUNT= rust-lang GH_PROJECT= rust-installer:rust_installer GH_TAGNAME= 4915c75:rust_installer +ONLY_FOR_ARCHS= amd64 +ONLY_FOR_ARCHS_REASON= requires prebuilt bootstrap cargo + CARGO_BOOT_SIG= ${ARCH:S/amd64/x86_64/}-unknown-${OPSYS:tl} CARGO_BOOT= ${PORTNAME}-nightly-${CARGO_BOOT_SIG}${EXTRACT_SUFX} CARGO_REGISTRY= ${PORTNAME}-registry-${DISTVERSIONFULL}.tar.xz