commit: 46316e3b6fbe3c00d7bd8dda70c195d80da2eb6e Author: Doug Goldstein <cardoe <AT> gentoo <DOT> org> AuthorDate: Sat Mar 26 14:48:49 2016 +0000 Commit: Doug Goldstein <cardoe <AT> gentoo <DOT> org> CommitDate: Sat Mar 26 14:48:49 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46316e3b
dev-lang/rust: fix llvm dependency Technically prior to LLVM 3.7, Gentoo still supports static linking which is what the Rust build does by default so LLVM is not a run-time depend. Package-Manager: portage-2.2.26 Signed-off-by: Doug Goldstein <cardoe <AT> gentoo.org> dev-lang/rust/rust-1.7.0.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/dev-lang/rust/rust-1.7.0.ebuild b/dev-lang/rust/rust-1.7.0.ebuild index f2c2cb2..c17bed8 100644 --- a/dev-lang/rust/rust-1.7.0.ebuild +++ b/dev-lang/rust/rust-1.7.0.ebuild @@ -35,15 +35,14 @@ KEYWORDS="~amd64 ~x86" IUSE="clang debug doc libcxx +system-llvm" REQUIRED_USE="libcxx? ( clang )" -RDEPEND="libcxx? ( sys-libs/libcxx ) - system-llvm? ( >=sys-devel/llvm-3.6.0:=[multitarget] - <sys-devel/llvm-3.7.0:=[multitarget] ) -" +RDEPEND="libcxx? ( sys-libs/libcxx )" DEPEND="${RDEPEND} ${PYTHON_DEPS} >=dev-lang/perl-5.0 clang? ( sys-devel/clang ) + system-llvm? ( >=sys-devel/llvm-3.6.0[multitarget] + <sys-devel/llvm-3.7.0[multitarget] ) " PDEPEND=">=app-eselect/eselect-rust-0.3_pre20150425"