From owner-svn-ports-all@freebsd.org Fri Sep 22 13:57:17 2017 Return-Path: Delivered-To: svn-ports-all@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 A2B54E29E66; Fri, 22 Sep 2017 13:57:17 +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 6F4226D1BB; Fri, 22 Sep 2017 13:57:17 +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 v8MDvGPd072777; Fri, 22 Sep 2017 13:57:16 GMT (envelope-from dumbbell@FreeBSD.org) Received: (from dumbbell@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8MDvG86072776; Fri, 22 Sep 2017 13:57:16 GMT (envelope-from dumbbell@FreeBSD.org) Message-Id: <201709221357.v8MDvG86072776@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: Fri, 22 Sep 2017 13:57:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r450375 - head/Mk/Uses X-SVN-Group: ports-head X-SVN-Commit-Author: dumbbell X-SVN-Commit-Paths: head/Mk/Uses X-SVN-Commit-Revision: 450375 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Sep 2017 13:57:17 -0000 Author: dumbbell Date: Fri Sep 22 13:57:16 2017 New Revision: 450375 URL: https://svnweb.freebsd.org/changeset/ports/450375 Log: Mk/Uses/cargo.mk: Fix version of Rust which started to ship Cargo Cargo started to ship with Rust in 1.19.0_2. I forgot to indicate the port revision in the 1.19.0_2 commit. Reported by: jbeich@ Differential Revision: https://reviews.freebsd.org/D12460 Modified: head/Mk/Uses/cargo.mk Modified: head/Mk/Uses/cargo.mk ============================================================================== --- head/Mk/Uses/cargo.mk Fri Sep 22 13:53:00 2017 (r450374) +++ head/Mk/Uses/cargo.mk Fri Sep 22 13:57:16 2017 (r450375) @@ -46,7 +46,7 @@ DISTFILES+= ${CARGO_DIST_SUBDIR}/${_crate}.tar.gz:carg CARGO_BUILDDEP?= yes .if ${CARGO_BUILDDEP:tl} == "yes" -BUILD_DEPENDS+= rust>=1.19.0:lang/rust +BUILD_DEPENDS+= rust>=1.19.0_2:lang/rust .endif # Location of cargo binary (default to lang/rust's Cargo binary)