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 62BEC158094 for ; Wed, 22 Jun 2022 04:09:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE217E0875; Wed, 22 Jun 2022 04:09:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id A1393E0875 for ; Wed, 22 Jun 2022 04:09:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 smtp.gentoo.org (Postfix) with ESMTPS id 6BA803415F7 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 C180F50E 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.66adcafad3c1139d28959fa9174ca935adff5f56.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/llvm/llvm-12.0.1.ebuild sys-devel/llvm/llvm-13.0.1.ebuild sys-devel/llvm/llvm-14.0.1.ebuild sys-devel/llvm/llvm-14.0.3.ebuild sys-devel/llvm/llvm-14.0.4.ebuild sys-devel/llvm/llvm-14.0.5.ebuild sys-devel/llvm/llvm-15.0.0.9999.ebuild X-VCS-Directories: sys-devel/llvm/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 66adcafad3c1139d28959fa9174ca935adff5f56 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: 5cee089f-16fd-44e6-927f-3bf4cc87e4d9 X-Archives-Hash: c31bbd03f072fbdedb25c56396c9bbf5 commit: 66adcafad3c1139d28959fa9174ca935adff5f56 Author: orbea riseup net> AuthorDate: Sat Apr 30 13:41:15 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=66adcafa sys-devel/llvm: Don't hardcode ninja Signed-off-by: orbea riseup.net> Signed-off-by: Sam James gentoo.org> sys-devel/llvm/llvm-12.0.1.ebuild | 2 +- sys-devel/llvm/llvm-13.0.1.ebuild | 2 +- sys-devel/llvm/llvm-14.0.1.ebuild | 2 +- sys-devel/llvm/llvm-14.0.3.ebuild | 2 +- sys-devel/llvm/llvm-14.0.4.ebuild | 2 +- sys-devel/llvm/llvm-14.0.5.ebuild | 2 +- sys-devel/llvm/llvm-15.0.0.9999.ebuild | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/sys-devel/llvm/llvm-12.0.1.ebuild b/sys-devel/llvm/llvm-12.0.1.ebuild index e0d7386e7346..3b38dc9ca6f1 100644 --- a/sys-devel/llvm/llvm-12.0.1.ebuild +++ b/sys-devel/llvm/llvm-12.0.1.ebuild @@ -141,7 +141,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/llvm/llvm-13.0.1.ebuild b/sys-devel/llvm/llvm-13.0.1.ebuild index d4212f0559bf..9ae168db4cfb 100644 --- a/sys-devel/llvm/llvm-13.0.1.ebuild +++ b/sys-devel/llvm/llvm-13.0.1.ebuild @@ -134,7 +134,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/llvm/llvm-14.0.1.ebuild b/sys-devel/llvm/llvm-14.0.1.ebuild index f928830b5fa9..c65be4743574 100644 --- a/sys-devel/llvm/llvm-14.0.1.ebuild +++ b/sys-devel/llvm/llvm-14.0.1.ebuild @@ -131,7 +131,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/llvm/llvm-14.0.3.ebuild b/sys-devel/llvm/llvm-14.0.3.ebuild index a8868a3569e1..66789e47a596 100644 --- a/sys-devel/llvm/llvm-14.0.3.ebuild +++ b/sys-devel/llvm/llvm-14.0.3.ebuild @@ -142,7 +142,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/llvm/llvm-14.0.4.ebuild b/sys-devel/llvm/llvm-14.0.4.ebuild index 2c44ddd79302..70a8953289ae 100644 --- a/sys-devel/llvm/llvm-14.0.4.ebuild +++ b/sys-devel/llvm/llvm-14.0.4.ebuild @@ -142,7 +142,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/llvm/llvm-14.0.5.ebuild b/sys-devel/llvm/llvm-14.0.5.ebuild index 955b7f70d83e..ad91093de640 100644 --- a/sys-devel/llvm/llvm-14.0.5.ebuild +++ b/sys-devel/llvm/llvm-14.0.5.ebuild @@ -142,7 +142,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/llvm/llvm-15.0.0.9999.ebuild b/sys-devel/llvm/llvm-15.0.0.9999.ebuild index fd1b0e34a17a..e200d3e34191 100644 --- a/sys-devel/llvm/llvm-15.0.0.9999.ebuild +++ b/sys-devel/llvm/llvm-15.0.0.9999.ebuild @@ -139,7 +139,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}" )