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 08D2D1382C5 for ; Sun, 29 Nov 2020 10:36:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B157E0845; Sun, 29 Nov 2020 10:36:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 30129E0845 for ; Sun, 29 Nov 2020 10:36:02 +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 2DBDE340B9B for ; Sun, 29 Nov 2020 10:36:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D375F468 for ; Sun, 29 Nov 2020 10:35:59 +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: <1606646134.3bfb2a9794ba9c1c7e7c476927c3826c63902e5c.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-10.0.1.ebuild sys-devel/clang/clang-11.0.0.ebuild sys-devel/clang/clang-9.0.1.ebuild X-VCS-Directories: sys-devel/clang/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3bfb2a9794ba9c1c7e7c476927c3826c63902e5c X-VCS-Branch: master Date: Sun, 29 Nov 2020 10:35:59 +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: 0655225b-2e48-455d-994e-a75394186c7c X-Archives-Hash: 24fff89ea4e129475cad0061adff04a1 commit: 3bfb2a9794ba9c1c7e7c476927c3826c63902e5c Author: Michał Górny gentoo org> AuthorDate: Sun Nov 29 10:35:34 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Nov 29 10:35:34 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bfb2a97 sys-devel/clang: Fix old versions too Signed-off-by: Michał Górny gentoo.org> sys-devel/clang/clang-10.0.1.ebuild | 2 +- sys-devel/clang/clang-11.0.0.ebuild | 2 +- sys-devel/clang/clang-9.0.1.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-devel/clang/clang-10.0.1.ebuild b/sys-devel/clang/clang-10.0.1.ebuild index 866e0622bfe..15a4ebb140a 100644 --- a/sys-devel/clang/clang-10.0.1.ebuild +++ b/sys-devel/clang/clang-10.0.1.ebuild @@ -44,7 +44,7 @@ RDEPEND=" ${PYTHON_DEPS}" for x in "${ALL_LLVM_TARGETS[@]}"; do RDEPEND+=" - ~sys-devel/llvm-${PV}:${SLOT}[${x}]" + ${x}? ( ~sys-devel/llvm-${PV}:${SLOT}[${x}] )" done unset x diff --git a/sys-devel/clang/clang-11.0.0.ebuild b/sys-devel/clang/clang-11.0.0.ebuild index 3205d44ae7e..fcf0e82a7a9 100644 --- a/sys-devel/clang/clang-11.0.0.ebuild +++ b/sys-devel/clang/clang-11.0.0.ebuild @@ -44,7 +44,7 @@ RDEPEND=" ${PYTHON_DEPS}" for x in "${ALL_LLVM_TARGETS[@]}"; do RDEPEND+=" - ~sys-devel/llvm-${PV}:${SLOT}[${x}]" + ${x}? ( ~sys-devel/llvm-${PV}:${SLOT}[${x}] )" done unset x diff --git a/sys-devel/clang/clang-9.0.1.ebuild b/sys-devel/clang/clang-9.0.1.ebuild index da0c00cb9a8..0e501e73381 100644 --- a/sys-devel/clang/clang-9.0.1.ebuild +++ b/sys-devel/clang/clang-9.0.1.ebuild @@ -45,7 +45,7 @@ RDEPEND=" ${PYTHON_DEPS}" for x in "${ALL_LLVM_TARGETS[@]}"; do RDEPEND+=" - ~sys-devel/llvm-${PV}:${SLOT}[${x}]" + ${x}? ( ~sys-devel/llvm-${PV}:${SLOT}[${x}] )" done unset x