From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2C1781382C5 for ; Tue, 1 Jun 2021 02:14:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60C06E0817; Tue, 1 Jun 2021 02:14:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 48827E0817 for ; Tue, 1 Jun 2021 02:14:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CE72C340F03 for ; Tue, 1 Jun 2021 02:14:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 507B379C for ; Tue, 1 Jun 2021 02:14:10 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1622513486.aa611140747af47803bee16ea4aa1eab0db59c78.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/rust/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/rust/rust-1.52.1.ebuild X-VCS-Directories: dev-lang/rust/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: aa611140747af47803bee16ea4aa1eab0db59c78 X-VCS-Branch: master Date: Tue, 1 Jun 2021 02:14:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d1b506ca-403c-4b37-8c93-291790f140df X-Archives-Hash: 08c0a6f3fdb0ccde82b19183f6166ac6 commit: aa611140747af47803bee16ea4aa1eab0db59c78 Author: Mike Frysinger gentoo org> AuthorDate: Tue Jun 1 02:11:26 2021 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Tue Jun 1 02:11:26 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa611140 dev-lang/rust: force newer cmake version Rust fails to build with older cmake: CMake Error at CMakeLists.txt:3 (cmake_minimum_required): CMake 3.13.4 or higher is required. You are running version ... Signed-off-by: Mike Frysinger gentoo.org> dev-lang/rust/rust-1.52.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-lang/rust/rust-1.52.1.ebuild b/dev-lang/rust/rust-1.52.1.ebuild index d8b7334db88..42d6f2b17da 100644 --- a/dev-lang/rust/rust-1.52.1.ebuild +++ b/dev-lang/rust/rust-1.52.1.ebuild @@ -91,7 +91,7 @@ BDEPEND="${PYTHON_DEPS} ) system-bootstrap? ( ${BOOTSTRAP_DEPEND} ) !system-llvm? ( - dev-util/cmake + >=dev-util/cmake-3.13.4 dev-util/ninja ) test? ( sys-devel/gdb )