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 9D0371396D9 for ; Mon, 16 Oct 2017 03:35:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B65C2BC037; Mon, 16 Oct 2017 03:35:01 +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 F417F2BC02C for ; Mon, 16 Oct 2017 03:35:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 0CC8033BF0B for ; Mon, 16 Oct 2017 03:35:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D5699096 for ; Mon, 16 Oct 2017 03:34:56 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1508123774.dc1a919a5fbdfdcd44bbd968d951d52792292a72.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/clang/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/clang/clang-4.0.1.ebuild sys-devel/clang/clang-5.0.0.ebuild sys-devel/clang/clang-5.0.9999.ebuild X-VCS-Directories: sys-devel/clang/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: dc1a919a5fbdfdcd44bbd968d951d52792292a72 X-VCS-Branch: master Date: Mon, 16 Oct 2017 03:34:56 +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: 81f7e636-2671-4f5f-88d1-ba35b573293e X-Archives-Hash: 7782eb5a689189dfef5fb8b74a05b3ae commit: dc1a919a5fbdfdcd44bbd968d951d52792292a72 Author: David Seifert gentoo org> AuthorDate: Mon Oct 16 03:16:14 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Oct 16 03:16:14 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc1a919a sys-devel/clang: [QA] Add cmake-utils_src_prepare Package-Manager: Portage-2.3.11, Repoman-2.3.3 sys-devel/clang/clang-4.0.1.ebuild | 2 +- sys-devel/clang/clang-5.0.0.ebuild | 2 +- sys-devel/clang/clang-5.0.9999.ebuild | 13 +++++-------- 3 files changed, 7 insertions(+), 10 deletions(-) diff --git a/sys-devel/clang/clang-4.0.1.ebuild b/sys-devel/clang/clang-4.0.1.ebuild index 00c6e7371ae..1c7814d237e 100644 --- a/sys-devel/clang/clang-4.0.1.ebuild +++ b/sys-devel/clang/clang-4.0.1.ebuild @@ -106,7 +106,7 @@ src_prepare() { cd - >/dev/null || die # User patches - eapply_user + cmake-utils_src_prepare } multilib_src_configure() { diff --git a/sys-devel/clang/clang-5.0.0.ebuild b/sys-devel/clang/clang-5.0.0.ebuild index 9761120460e..966aaf7df53 100644 --- a/sys-devel/clang/clang-5.0.0.ebuild +++ b/sys-devel/clang/clang-5.0.0.ebuild @@ -101,7 +101,7 @@ src_prepare() { cd - >/dev/null || die # User patches - eapply_user + cmake-utils_src_prepare } multilib_src_configure() { diff --git a/sys-devel/clang/clang-5.0.9999.ebuild b/sys-devel/clang/clang-5.0.9999.ebuild index 82f086b4918..b8bfe4b8916 100644 --- a/sys-devel/clang/clang-5.0.9999.ebuild +++ b/sys-devel/clang/clang-5.0.9999.ebuild @@ -62,6 +62,11 @@ S=${WORKDIR}/x/y/${P} # least intrusive of all CMAKE_BUILD_TYPE=RelWithDebInfo +PATCHES=( + # fix finding compiler-rt libs + "${FILESDIR}"/5.0.0/0001-Driver-Use-arch-type-to-find-compiler-rt-libraries-o.patch +) + # Multilib notes: # 1. ABI_* flags control ABIs libclang* is built for only. # 2. clang is always capable of compiling code for all ABIs for enabled @@ -101,14 +106,6 @@ src_unpack() { git-r3_checkout "${EGIT_REPO_URI}" "${S}" } -src_prepare() { - # fix finding compiler-rt libs - eapply "${FILESDIR}"/5.0.0/0001-Driver-Use-arch-type-to-find-compiler-rt-libraries-o.patch - - # User patches - eapply_user -} - multilib_src_configure() { local llvm_version=$(llvm-config --version) || die local clang_version=$(ver_cut 1-3 "${llvm_version}")