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 2CFF2138332 for ; Tue, 4 Oct 2016 06:42:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87D40E0B7E; Tue, 4 Oct 2016 06:41:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 680AEE0B80 for ; Tue, 4 Oct 2016 06:41:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DFB4D340F95 for ; Tue, 4 Oct 2016 06:41:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3171624A7 for ; Tue, 4 Oct 2016 06:41:54 +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: <1475563308.38ecce6a3e34cfcb6b056550e34974e863226dc7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/clang/files/9999/, sys-devel/clang/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/clang/clang-9999.ebuild sys-devel/clang/files/9999/0001-cmake-Add-ordering-dep-between-HTML-Sphinx-docs-and-.patch X-VCS-Directories: sys-devel/clang/ sys-devel/clang/files/9999/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 38ecce6a3e34cfcb6b056550e34974e863226dc7 X-VCS-Branch: master Date: Tue, 4 Oct 2016 06:41:54 +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: 00cd5129-5049-4511-ade2-fc403a7eed4e X-Archives-Hash: 8378af72df5d87610435d77ac70a4505 commit: 38ecce6a3e34cfcb6b056550e34974e863226dc7 Author: Michał Górny gentoo org> AuthorDate: Tue Oct 4 06:40:23 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Oct 4 06:41:48 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38ecce6a sys-devel/clang: Sphinx race conditions fixed upstream sys-devel/clang/clang-9999.ebuild | 2 -- ...rdering-dep-between-HTML-Sphinx-docs-and-.patch | 27 ---------------------- 2 files changed, 29 deletions(-) diff --git a/sys-devel/clang/clang-9999.ebuild b/sys-devel/clang/clang-9999.ebuild index 59d178c..3015cf4 100644 --- a/sys-devel/clang/clang-9999.ebuild +++ b/sys-devel/clang/clang-9999.ebuild @@ -115,8 +115,6 @@ src_unpack() { src_prepare() { python_setup - # fix race condition between sphinx targets - eapply "${FILESDIR}"/9999/0001-cmake-Add-ordering-dep-between-HTML-Sphinx-docs-and-.patch # automatically select active system GCC's libraries, bugs #406163 and #417913 # TODO: cross-linux tests broken by this one eapply "${FILESDIR}"/9999/0002-driver-Support-obtaining-active-toolchain-from-gcc-c.patch diff --git a/sys-devel/clang/files/9999/0001-cmake-Add-ordering-dep-between-HTML-Sphinx-docs-and-.patch b/sys-devel/clang/files/9999/0001-cmake-Add-ordering-dep-between-HTML-Sphinx-docs-and-.patch deleted file mode 100644 index 35fc19d..00000000 --- a/sys-devel/clang/files/9999/0001-cmake-Add-ordering-dep-between-HTML-Sphinx-docs-and-.patch +++ /dev/null @@ -1,27 +0,0 @@ -From ec16b3f76a26a3a10b0272d012b306963fa93013 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= -Date: Sun, 21 Aug 2016 23:24:19 +0200 -Subject: [PATCH 1/7] cmake: Add ordering dep between HTML Sphinx docs and - manpages - ---- - docs/CMakeLists.txt | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/docs/CMakeLists.txt b/docs/CMakeLists.txt -index 13b79fdf..bd75b63 100644 ---- a/docs/CMakeLists.txt -+++ b/docs/CMakeLists.txt -@@ -102,6 +102,9 @@ if (LLVM_ENABLE_SPHINX) - endif() - if (${SPHINX_OUTPUT_MAN}) - add_sphinx_target(man clang) -+ if (${SPHINX_OUTPUT_HTML}) -+ add_dependencies(docs-clang-html docs-clang-man) -+ endif() - endif() - endif() - endif() --- -2.9.3 -