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 477401382C5 for ; Thu, 29 Mar 2018 10:19:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3D67E0891; Thu, 29 Mar 2018 10:19:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 75561E0891 for ; Thu, 29 Mar 2018 10:19:36 +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 44E59335D1B for ; Thu, 29 Mar 2018 10:19:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BDAE4274 for ; Thu, 29 Mar 2018 10:19:31 +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: <1522318759.7723c753445eac3af8ad7ef85e567a3ced904f83.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/llvm/llvm-3.7.1-r3.ebuild X-VCS-Directories: sys-devel/llvm/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7723c753445eac3af8ad7ef85e567a3ced904f83 X-VCS-Branch: master Date: Thu, 29 Mar 2018 10:19:31 +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: 3676d0b2-4080-48ca-ab6d-295181811d55 X-Archives-Hash: 75fd29c84b8c166d8ac35f13d8bbaa5e commit: 7723c753445eac3af8ad7ef85e567a3ced904f83 Author: Michał Górny gentoo org> AuthorDate: Thu Mar 29 08:08:29 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Mar 29 10:19:19 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7723c753 sys-devel/llvm: Remove non-arm & non-Darwin keywords from 3.7.1 Closes: https://github.com/gentoo/gentoo/pull/7690 sys-devel/llvm/llvm-3.7.1-r3.ebuild | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/sys-devel/llvm/llvm-3.7.1-r3.ebuild b/sys-devel/llvm/llvm-3.7.1-r3.ebuild index 89214c8b537..c176d25b8fd 100644 --- a/sys-devel/llvm/llvm-3.7.1-r3.ebuild +++ b/sys-devel/llvm/llvm-3.7.1-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -30,13 +30,12 @@ SRC_URI="https://llvm.org/releases/${PV}/${P}.src.tar.xz LICENSE="UoI-NCSA rc BSD public-domain arm? ( LLVM-Grant ) - arm64? ( LLVM-Grant ) multitarget? ( LLVM-Grant )" SLOT="0/${PV}" -KEYWORDS="amd64 arm ~arm64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="arm ~ppc-macos ~x64-macos ~x86-macos" IUSE="clang debug doc gold libedit +libffi lldb multitarget ncurses ocaml python +static-analyzer test xml video_cards_radeon - kernel_Darwin kernel_FreeBSD" + kernel_Darwin" COMMON_DEPEND=" sys-libs/zlib:0= @@ -453,11 +452,6 @@ src_install() { fi multilib-minimal_src_install - - # Remove unnecessary headers on FreeBSD, bug #417171 - if use kernel_FreeBSD && use clang; then - rm "${ED}"usr/lib/clang/${PV}/include/{std,float,iso,limits,tgmath,varargs}*.h || die - fi } multilib_src_install() { @@ -565,9 +559,3 @@ multilib_src_install_all() { fi fi } - -pkg_postinst() { - if use clang && ! has_version sys-libs/libomp; then - elog "To enable OpenMP support in clang, install sys-libs/libomp." - fi -}