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 7CAEB138330 for ; Tue, 9 Jan 2018 14:34:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B2981E0B18; Tue, 9 Jan 2018 14:34:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 91BC1E0B18 for ; Tue, 9 Jan 2018 14:34:49 +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 B3720335C44 for ; Tue, 9 Jan 2018 14:34:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 385981A9 for ; Tue, 9 Jan 2018 14:34:45 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1515508478.58a1b23930ef05cc25f854b38fc3b685282e05d9.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/llvm-ocaml/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/llvm-ocaml/llvm-ocaml-6.0.9999.ebuild X-VCS-Directories: dev-ml/llvm-ocaml/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 58a1b23930ef05cc25f854b38fc3b685282e05d9 X-VCS-Branch: master Date: Tue, 9 Jan 2018 14:34:45 +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-Archives-Salt: 1675e04c-5d54-4faf-bbb3-392f43417377 X-Archives-Hash: ee23d5f49fcd4f4be1294c73d2a3e1b5 commit: 58a1b23930ef05cc25f854b38fc3b685282e05d9 Author: Michał Górny gentoo org> AuthorDate: Tue Jan 9 14:31:18 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jan 9 14:34:38 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58a1b239 dev-ml/llvm-ocaml: Disable experimental targets on the release branch dev-ml/llvm-ocaml/llvm-ocaml-6.0.9999.ebuild | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/dev-ml/llvm-ocaml/llvm-ocaml-6.0.9999.ebuild b/dev-ml/llvm-ocaml/llvm-ocaml-6.0.9999.ebuild index b8960469aed..456fff53311 100644 --- a/dev-ml/llvm-ocaml/llvm-ocaml-6.0.9999.ebuild +++ b/dev-ml/llvm-ocaml/llvm-ocaml-6.0.9999.ebuild @@ -18,10 +18,8 @@ EGIT_REPO_URI="https://git.llvm.org/git/llvm.git EGIT_BRANCH="release_60" # Keep in sync with sys-devel/llvm -ALL_LLVM_EXPERIMENTAL_TARGETS=( AVR Nios2 RISCV WebAssembly ) ALL_LLVM_TARGETS=( AArch64 AMDGPU ARM BPF Hexagon Lanai Mips MSP430 - NVPTX PowerPC Sparc SystemZ X86 XCore - "${ALL_LLVM_EXPERIMENTAL_TARGETS[@]}" ) + NVPTX PowerPC Sparc SystemZ X86 XCore ) ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" ) LLVM_TARGET_USEDEPS=${ALL_LLVM_TARGETS[@]/%/?} @@ -69,10 +67,7 @@ src_configure() { -DBUILD_SHARED_LIBS=ON -DLLVM_OCAML_OUT_OF_TREE=ON - # cheap hack: LLVM combines both anyway, and the only difference - # is that the former list is explicitly verified at cmake time - -DLLVM_TARGETS_TO_BUILD="" - -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="${LLVM_TARGETS// /;}" + -DLLVM_TARGETS_TO_BUILD="${LLVM_TARGETS// /;}" -DLLVM_BUILD_TESTS=$(usex test) # disable various irrelevant deps and settings