From: Georgy Yakovlev Date: Mon, 30 Dec 2019 05:06:09 +0000 (-0800) Subject: eclass/cargo.eclass: switch (b)depend to virtual/rust X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=a9396c31d51a4752a2bdc54fa73019825d2bdcc6;p=gentoo.git eclass/cargo.eclass: switch (b)depend to virtual/rust Bug: https://bugs.gentoo.org/695698 Signed-off-by: Georgy Yakovlev --- 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