From a9396c31d51a4752a2bdc54fa73019825d2bdcc6 Mon Sep 17 00:00:00 2001 From: Georgy Yakovlev Date: Sun, 29 Dec 2019 21:06:09 -0800 Subject: eclass/cargo.eclass: switch (b)depend to virtual/rust Bug: https://bugs.gentoo.org/695698 Signed-off-by: Georgy Yakovlev --- eclass/cargo.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass index 86715b83b88c..f2a726d51672 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 -- cgit v1.2.3-65-gdbad