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 DA2511382C5 for ; Sat, 7 Apr 2018 21:29:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05AD1E0964; Sat, 7 Apr 2018 21:29:57 +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 D7D69E0964 for ; Sat, 7 Apr 2018 21:29:56 +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 7F77A335C04 for ; Sat, 7 Apr 2018 21:29:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C0FE324E for ; Sat, 7 Apr 2018 21:29:53 +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: <1523136588.132e9a33cfbdaf22c518f8c0a231b3599b2c6ad2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/clang/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/clang/clang-9999.ebuild X-VCS-Directories: sys-devel/clang/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 132e9a33cfbdaf22c518f8c0a231b3599b2c6ad2 X-VCS-Branch: master Date: Sat, 7 Apr 2018 21:29:53 +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: 9f1eb724-d50d-4462-89d4-49a3454b6881 X-Archives-Hash: 54b188cef1b3cc1006d2a0a256529c0a commit: 132e9a33cfbdaf22c518f8c0a231b3599b2c6ad2 Author: Michał Górny gentoo org> AuthorDate: Sat Apr 7 09:05:44 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Apr 7 21:29:48 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=132e9a33 sys-devel/clang: Include LLVMTestingSupport lib in -9999 checkout Include the lib/Testing/Support directory in LLVM checkout since the clangd tests (part of clang-tools-extra) require that library now. The code still needs a fix upstream to actually build the library. sys-devel/clang/clang-9999.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys-devel/clang/clang-9999.ebuild b/sys-devel/clang/clang-9999.ebuild index d769bda1d03..8bc9b08cc45 100644 --- a/sys-devel/clang/clang-9999.ebuild +++ b/sys-devel/clang/clang-9999.ebuild @@ -99,7 +99,8 @@ src_unpack() { "${S}"/tools/extra if use test; then git-r3_checkout https://llvm.org/git/llvm.git \ - "${WORKDIR}"/llvm '' utils/{lit,llvm-lit,unittest} + "${WORKDIR}"/llvm '' \ + lib/Testing/Support utils/{lit,llvm-lit,unittest} fi git-r3_checkout "${EGIT_REPO_URI}" "${S}" }