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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 87A1B158094 for ; Wed, 22 Jun 2022 04:09:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C717E086E; Wed, 22 Jun 2022 04:09:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 712D6E086E for ; Wed, 22 Jun 2022 04:09:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6E0F0341607 for ; Wed, 22 Jun 2022 04:09:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D5FF9510 for ; Wed, 22 Jun 2022 04:09:39 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1655870968.989eb80c14a7d39aa7a1f6e1ce0d0bd78e3120d1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/clang/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/clang/clang-12.0.1.ebuild sys-devel/clang/clang-13.0.1.ebuild sys-devel/clang/clang-14.0.1-r1.ebuild sys-devel/clang/clang-14.0.3.ebuild sys-devel/clang/clang-14.0.4.ebuild sys-devel/clang/clang-14.0.5.ebuild sys-devel/clang/clang-15.0.0.9999.ebuild X-VCS-Directories: sys-devel/clang/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 989eb80c14a7d39aa7a1f6e1ce0d0bd78e3120d1 X-VCS-Branch: master Date: Wed, 22 Jun 2022 04:09:39 +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: 9b2d3886-c4ec-4200-a644-597cc612bb50 X-Archives-Hash: f5cdee36f4532da457806ce97af6c532 commit: 989eb80c14a7d39aa7a1f6e1ce0d0bd78e3120d1 Author: orbea riseup net> AuthorDate: Sat Apr 30 13:42:21 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 22 04:09:28 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=989eb80c sys-devel/clang: Don't hardcode ninja Signed-off-by: orbea riseup.net> Closes: https://github.com/gentoo/gentoo/pull/25272 Signed-off-by: Sam James gentoo.org> sys-devel/clang/clang-12.0.1.ebuild | 2 +- sys-devel/clang/clang-13.0.1.ebuild | 2 +- sys-devel/clang/clang-14.0.1-r1.ebuild | 2 +- sys-devel/clang/clang-14.0.3.ebuild | 2 +- sys-devel/clang/clang-14.0.4.ebuild | 2 +- sys-devel/clang/clang-14.0.5.ebuild | 2 +- sys-devel/clang/clang-15.0.0.9999.ebuild | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/sys-devel/clang/clang-12.0.1.ebuild b/sys-devel/clang/clang-12.0.1.ebuild index 678ea397dc6b..fde58c87f658 100644 --- a/sys-devel/clang/clang-12.0.1.ebuild +++ b/sys-devel/clang/clang-12.0.1.ebuild @@ -130,7 +130,7 @@ check_distribution_components() { all_targets+=( "${l}" ) fi - done < <(ninja -t targets all) + done < <(${NINJA} -t targets all) while read -r l; do my_targets+=( "${l}" ) diff --git a/sys-devel/clang/clang-13.0.1.ebuild b/sys-devel/clang/clang-13.0.1.ebuild index 07606d6b05a0..ad43beaccb8f 100644 --- a/sys-devel/clang/clang-13.0.1.ebuild +++ b/sys-devel/clang/clang-13.0.1.ebuild @@ -118,7 +118,7 @@ check_distribution_components() { all_targets+=( "${l}" ) fi - done < <(ninja -t targets all) + done < <(${NINJA} -t targets all) while read -r l; do my_targets+=( "${l}" ) diff --git a/sys-devel/clang/clang-14.0.1-r1.ebuild b/sys-devel/clang/clang-14.0.1-r1.ebuild index 088a3ff7eb67..56d63fbd72f7 100644 --- a/sys-devel/clang/clang-14.0.1-r1.ebuild +++ b/sys-devel/clang/clang-14.0.1-r1.ebuild @@ -120,7 +120,7 @@ check_distribution_components() { all_targets+=( "${l}" ) fi - done < <(ninja -t targets all) + done < <(${NINJA} -t targets all) while read -r l; do my_targets+=( "${l}" ) diff --git a/sys-devel/clang/clang-14.0.3.ebuild b/sys-devel/clang/clang-14.0.3.ebuild index 8d2757256bed..ed84f3755fa2 100644 --- a/sys-devel/clang/clang-14.0.3.ebuild +++ b/sys-devel/clang/clang-14.0.3.ebuild @@ -127,7 +127,7 @@ check_distribution_components() { all_targets+=( "${l}" ) fi - done < <(ninja -t targets all) + done < <(${NINJA} -t targets all) while read -r l; do my_targets+=( "${l}" ) diff --git a/sys-devel/clang/clang-14.0.4.ebuild b/sys-devel/clang/clang-14.0.4.ebuild index 2c42218462f8..d48c4267822f 100644 --- a/sys-devel/clang/clang-14.0.4.ebuild +++ b/sys-devel/clang/clang-14.0.4.ebuild @@ -127,7 +127,7 @@ check_distribution_components() { all_targets+=( "${l}" ) fi - done < <(ninja -t targets all) + done < <(${NINJA} -t targets all) while read -r l; do my_targets+=( "${l}" ) diff --git a/sys-devel/clang/clang-14.0.5.ebuild b/sys-devel/clang/clang-14.0.5.ebuild index 8d2757256bed..ed84f3755fa2 100644 --- a/sys-devel/clang/clang-14.0.5.ebuild +++ b/sys-devel/clang/clang-14.0.5.ebuild @@ -127,7 +127,7 @@ check_distribution_components() { all_targets+=( "${l}" ) fi - done < <(ninja -t targets all) + done < <(${NINJA} -t targets all) while read -r l; do my_targets+=( "${l}" ) diff --git a/sys-devel/clang/clang-15.0.0.9999.ebuild b/sys-devel/clang/clang-15.0.0.9999.ebuild index 4c8e1d4b50ce..e1960cb92f18 100644 --- a/sys-devel/clang/clang-15.0.0.9999.ebuild +++ b/sys-devel/clang/clang-15.0.0.9999.ebuild @@ -127,7 +127,7 @@ check_distribution_components() { all_targets+=( "${l}" ) fi - done < <(ninja -t targets all) + done < <(${NINJA} -t targets all) while read -r l; do my_targets+=( "${l}" )