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 E3F4C138334 for ; Mon, 30 Dec 2019 06:42:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8EAEE0ACD; Mon, 30 Dec 2019 06:42:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 BE13BE0ACD for ; Mon, 30 Dec 2019 06:42:37 +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 75A9A34DD13 for ; Mon, 30 Dec 2019 06:42:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC091B2 for ; Mon, 30 Dec 2019 06:42:33 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1577687692.a9396c31d51a4752a2bdc54fa73019825d2bdcc6.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/cargo.eclass X-VCS-Directories: eclass/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: a9396c31d51a4752a2bdc54fa73019825d2bdcc6 X-VCS-Branch: master Date: Mon, 30 Dec 2019 06:42:33 +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: 76f2b5d4-5165-4162-aca4-25c337a0a428 X-Archives-Hash: 47544cfacaa2f593235b7ce916f0d7b0 commit: a9396c31d51a4752a2bdc54fa73019825d2bdcc6 Author: Georgy Yakovlev gentoo org> AuthorDate: Mon Dec 30 05:06:09 2019 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Mon Dec 30 06:34:52 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9396c31 eclass/cargo.eclass: switch (b)depend to virtual/rust Bug: https://bugs.gentoo.org/695698 Signed-off-by: Georgy Yakovlev gentoo.org> eclass/cargo.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass index 86715b83b88..f2a726d5167 100644 --- a/eclass/cargo.eclass +++ b/eclass/cargo.eclass @@ -13,11 +13,11 @@ if [[ -z ${_CARGO_ECLASS} ]]; then _CARGO_ECLASS=1 # we need this for 'cargo vendor' subcommand and net.offline config knob -CARGO_DEPEND=">=virtual/cargo-1.37.0" +RUST_DEPEND=">=virtual/rust-1.37.0" case ${EAPI} in - 6) DEPEND="${CARGO_DEPEND}";; - 7) BDEPEND="${CARGO_DEPEND}";; + 6) DEPEND="${RUST_DEPEND}";; + 7) BDEPEND="${RUST_DEPEND}";; *) die "EAPI=${EAPI:-0} is not supported" ;; esac