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 F233C138359 for ; Sun, 20 Sep 2020 14:04:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2EC88E08FF; Sun, 20 Sep 2020 14:04:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 14CEEE08FF for ; Sun, 20 Sep 2020 14:04:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 BCBF4340FF3 for ; Sun, 20 Sep 2020 14:04:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 31EE536F for ; Sun, 20 Sep 2020 14:04:20 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1600610645.e3ea67130e44415ed7f556427d3782d661b53b01.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/spidermonkey/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/spidermonkey/spidermonkey-78.2.0.ebuild X-VCS-Directories: dev-lang/spidermonkey/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: e3ea67130e44415ed7f556427d3782d661b53b01 X-VCS-Branch: master Date: Sun, 20 Sep 2020 14:04:20 +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: 1ca03b4b-4dc1-44b8-9def-af5da1121007 X-Archives-Hash: a885b7035728d2aff22907c527c6ff28 commit: e3ea67130e44415ed7f556427d3782d661b53b01 Author: Thomas Deutschmann gentoo org> AuthorDate: Sun Sep 20 14:03:06 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sun Sep 20 14:04:05 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3ea6713 dev-lang/spidermonkey: clang is not needed to build spidermonkey Closes: https://bugs.gentoo.org/740890 Closes: https://bugs.gentoo.org/743241 Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: Thomas Deutschmann gentoo.org> dev-lang/spidermonkey/spidermonkey-78.2.0.ebuild | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/dev-lang/spidermonkey/spidermonkey-78.2.0.ebuild b/dev-lang/spidermonkey/spidermonkey-78.2.0.ebuild index 63a601bf338..00c79aef9f1 100644 --- a/dev-lang/spidermonkey/spidermonkey-78.2.0.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-78.2.0.ebuild @@ -7,9 +7,7 @@ PYTHON_COMPAT=( python3_{6..9} ) WANT_AUTOCONF="2.1" -LLVM_MAX_SLOT=10 - -inherit autotools check-reqs llvm multiprocessing python-any-r1 toolchain-funcs +inherit autotools check-reqs multiprocessing python-any-r1 toolchain-funcs MY_PN="mozjs" MY_PV="${PV/_pre*}" # Handle Gentoo pre-releases @@ -60,7 +58,7 @@ IUSE="cpu_flags_arm_neon debug +jit test" RESTRICT="!test? ( test )" BDEPEND="${PYTHON_DEPS} - sys-devel/clang + sys-devel/llvm >=virtual/rust-1.41.0 virtual/pkgconfig" @@ -78,15 +76,6 @@ RDEPEND="${CDEPEND}" S="${WORKDIR}/firefox-${MY_PV}/js/src" -llvm_check_deps() { - if ! has_version -b "sys-devel/clang:${LLVM_SLOT}" ; then - ewarn "sys-devel/clang:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 - return 1 - fi - - einfo "Will use LLVM slot ${LLVM_SLOT}!" >&2 -} - python_check_deps() { if use test ; then has_version "dev-python/six[${PYTHON_USEDEP}]"