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 CA4DB138346 for ; Mon, 6 Jan 2020 21:00:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DDBEAE09D0; Mon, 6 Jan 2020 21:00:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 AECD9E09D0 for ; Mon, 6 Jan 2020 21:00:54 +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 EBCA834DDFC for ; Mon, 6 Jan 2020 21:00:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED1DC26 for ; Mon, 6 Jan 2020 21:00:50 +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: <1578344446.9dbaee7488a852b823c4afa7b109b4a924787b4f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/compiler-rt/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/compiler-rt/compiler-rt-10.0.0.9999.ebuild sys-libs/compiler-rt/compiler-rt-7.1.0.ebuild sys-libs/compiler-rt/compiler-rt-8.0.1.ebuild sys-libs/compiler-rt/compiler-rt-9.0.1.ebuild X-VCS-Directories: sys-libs/compiler-rt/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9dbaee7488a852b823c4afa7b109b4a924787b4f X-VCS-Branch: master Date: Mon, 6 Jan 2020 21:00:50 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a377fddb-77ab-48a5-aa14-d6a31643218b X-Archives-Hash: 11859032f3e2cba253619cd3359d2c0a commit: 9dbaee7488a852b823c4afa7b109b4a924787b4f Author: Michał Górny gentoo org> AuthorDate: Mon Jan 6 20:58:04 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jan 6 21:00:46 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dbaee74 sys-libs/compiler-rt: Fix Python branches more Suggested by Arfrever. Signed-off-by: Michał Górny gentoo.org> sys-libs/compiler-rt/compiler-rt-10.0.0.9999.ebuild | 3 ++- sys-libs/compiler-rt/compiler-rt-7.1.0.ebuild | 3 ++- sys-libs/compiler-rt/compiler-rt-8.0.1.ebuild | 3 ++- sys-libs/compiler-rt/compiler-rt-9.0.1.ebuild | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/sys-libs/compiler-rt/compiler-rt-10.0.0.9999.ebuild b/sys-libs/compiler-rt/compiler-rt-10.0.0.9999.ebuild index abb81deafce..7a7778ae76b 100644 --- a/sys-libs/compiler-rt/compiler-rt-10.0.0.9999.ebuild +++ b/sys-libs/compiler-rt/compiler-rt-10.0.0.9999.ebuild @@ -33,6 +33,7 @@ BDEPEND=" CMAKE_BUILD_TYPE=RelWithDebInfo python_check_deps() { + use test || return 0 has_version "dev-python/lit[${PYTHON_USEDEP}]" } @@ -45,7 +46,7 @@ pkg_pretend() { pkg_setup() { llvm_pkg_setup - use test && python-any-r1_pkg_setup + python-any-r1_pkg_setup } test_compiler() { diff --git a/sys-libs/compiler-rt/compiler-rt-7.1.0.ebuild b/sys-libs/compiler-rt/compiler-rt-7.1.0.ebuild index dc06a171993..8339d3420ba 100644 --- a/sys-libs/compiler-rt/compiler-rt-7.1.0.ebuild +++ b/sys-libs/compiler-rt/compiler-rt-7.1.0.ebuild @@ -37,6 +37,7 @@ S=${WORKDIR}/${P/_/}.src CMAKE_BUILD_TYPE=RelWithDebInfo python_check_deps() { + use test || return 0 has_version "dev-python/lit[${PYTHON_USEDEP}]" } @@ -49,7 +50,7 @@ pkg_pretend() { pkg_setup() { llvm_pkg_setup - use test && python-any-r1_pkg_setup + python-any-r1_pkg_setup } test_compiler() { diff --git a/sys-libs/compiler-rt/compiler-rt-8.0.1.ebuild b/sys-libs/compiler-rt/compiler-rt-8.0.1.ebuild index bad82273c12..5049bf3761b 100644 --- a/sys-libs/compiler-rt/compiler-rt-8.0.1.ebuild +++ b/sys-libs/compiler-rt/compiler-rt-8.0.1.ebuild @@ -38,6 +38,7 @@ S=${WORKDIR}/${MY_P} CMAKE_BUILD_TYPE=RelWithDebInfo python_check_deps() { + use test || return 0 has_version "dev-python/lit[${PYTHON_USEDEP}]" } @@ -50,7 +51,7 @@ pkg_pretend() { pkg_setup() { llvm_pkg_setup - use test && python-any-r1_pkg_setup + python-any-r1_pkg_setup } test_compiler() { diff --git a/sys-libs/compiler-rt/compiler-rt-9.0.1.ebuild b/sys-libs/compiler-rt/compiler-rt-9.0.1.ebuild index fb6ce9998fa..55650e04a52 100644 --- a/sys-libs/compiler-rt/compiler-rt-9.0.1.ebuild +++ b/sys-libs/compiler-rt/compiler-rt-9.0.1.ebuild @@ -33,6 +33,7 @@ BDEPEND=" CMAKE_BUILD_TYPE=RelWithDebInfo python_check_deps() { + use test || return 0 has_version "dev-python/lit[${PYTHON_USEDEP}]" } @@ -45,7 +46,7 @@ pkg_pretend() { pkg_setup() { llvm_pkg_setup - use test && python-any-r1_pkg_setup + python-any-r1_pkg_setup } test_compiler() {