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 A13D0139696 for ; Thu, 6 Apr 2017 12:48:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA50DE0C64; Thu, 6 Apr 2017 12:48:09 +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 CC4AEE0C64 for ; Thu, 6 Apr 2017 12:48:09 +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 065FF34164B for ; Thu, 6 Apr 2017 12:48:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8617B7428 for ; Thu, 6 Apr 2017 12:48:07 +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: <1491482876.a895b4764f99fc7f8f17ea4a966bc80bff283391.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-4.0.0-r1.ebuild 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: a895b4764f99fc7f8f17ea4a966bc80bff283391 X-VCS-Branch: master Date: Thu, 6 Apr 2017 12:48:07 +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: fcb8d62d-9a22-4449-87b3-e431c81681bf X-Archives-Hash: e07e37404521e96de9d3895e4fc74837 commit: a895b4764f99fc7f8f17ea4a966bc80bff283391 Author: Michał Górny gentoo org> AuthorDate: Thu Apr 6 07:42:44 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Apr 6 12:47:56 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a895b476 sys-devel/clang: Fix incorrect +x on scan-build.1 manpage sys-devel/clang/clang-4.0.0-r1.ebuild | 2 ++ sys-devel/clang/clang-9999.ebuild | 2 ++ 2 files changed, 4 insertions(+) diff --git a/sys-devel/clang/clang-4.0.0-r1.ebuild b/sys-devel/clang/clang-4.0.0-r1.ebuild index b8ce12c11d4..703190f0bf5 100644 --- a/sys-devel/clang/clang-4.0.0-r1.ebuild +++ b/sys-devel/clang/clang-4.0.0-r1.ebuild @@ -296,4 +296,6 @@ multilib_src_install_all() { docompress "/usr/lib/llvm/${SLOT}/share/man" # match 'html' non-compression use doc && docompress -x "/usr/share/doc/${PF}/tools-extra" + # +x for some reason; TODO: investigate + use static-analyzer && fperms a-x "/usr/lib/llvm/${SLOT}/share/man/man1/scan-build.1" } diff --git a/sys-devel/clang/clang-9999.ebuild b/sys-devel/clang/clang-9999.ebuild index cd95492a02c..c28114fd1a9 100644 --- a/sys-devel/clang/clang-9999.ebuild +++ b/sys-devel/clang/clang-9999.ebuild @@ -293,4 +293,6 @@ multilib_src_install_all() { docompress "/usr/lib/llvm/${SLOT}/share/man" # match 'html' non-compression use doc && docompress -x "/usr/share/doc/${PF}/tools-extra" + # +x for some reason; TODO: investigate + use static-analyzer && fperms a-x "/usr/lib/llvm/${SLOT}/share/man/man1/scan-build.1" }