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 6D53515808E for ; Sat, 30 Apr 2022 13:28:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6FFAFE09B6; Sat, 30 Apr 2022 13:28:13 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4FB5AE09B6 for ; Sat, 30 Apr 2022 13:28:13 +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 9FA6B34150E for ; Sat, 30 Apr 2022 13:28:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BC17E3F0 for ; Sat, 30 Apr 2022 13:28:09 +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: <1651325216.e1857def3989aa506b7bb7f08dca6ddaee1cd92e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/clang-common/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/clang-common/clang-common-14.0.3.ebuild sys-devel/clang-common/clang-common-15.0.0.9999.ebuild X-VCS-Directories: sys-devel/clang-common/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e1857def3989aa506b7bb7f08dca6ddaee1cd92e X-VCS-Branch: master Date: Sat, 30 Apr 2022 13:28:09 +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: d01ddc57-f448-467e-a530-2705119ba3c9 X-Archives-Hash: d95422c16d0df9833b8afdfcecd1b10e commit: e1857def3989aa506b7bb7f08dca6ddaee1cd92e Author: Michał Górny gentoo org> AuthorDate: Sat Apr 30 13:26:29 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Apr 30 13:26:56 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1857def sys-devel/clang-common: Fix S substitution Variable reordering has caused the S substitution to be overwritten by the eclass logic. Rather than relying on a specific ordering, just update LLVM_COMPONENTS so that the default value works just fine. Closes: https://bugs.gentoo.org/841827 Signed-off-by: Michał Górny gentoo.org> sys-devel/clang-common/clang-common-14.0.3.ebuild | 3 +-- sys-devel/clang-common/clang-common-15.0.0.9999.ebuild | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/sys-devel/clang-common/clang-common-14.0.3.ebuild b/sys-devel/clang-common/clang-common-14.0.3.ebuild index 5f09f0a442dc..798f9e9fb858 100644 --- a/sys-devel/clang-common/clang-common-14.0.3.ebuild +++ b/sys-devel/clang-common/clang-common-14.0.3.ebuild @@ -7,7 +7,6 @@ inherit bash-completion-r1 llvm.org DESCRIPTION="Common files shared between multiple slots of clang" HOMEPAGE="https://llvm.org/" -S=${WORKDIR}/clang/utils LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" SLOT="0" @@ -17,7 +16,7 @@ PDEPEND=" sys-devel/clang:* " -LLVM_COMPONENTS=( clang/utils/bash-autocomplete.sh ) +LLVM_COMPONENTS=( clang/utils ) llvm.org_set_globals src_install() { diff --git a/sys-devel/clang-common/clang-common-15.0.0.9999.ebuild b/sys-devel/clang-common/clang-common-15.0.0.9999.ebuild index 46b53588191e..1285500128bb 100644 --- a/sys-devel/clang-common/clang-common-15.0.0.9999.ebuild +++ b/sys-devel/clang-common/clang-common-15.0.0.9999.ebuild @@ -7,7 +7,6 @@ inherit bash-completion-r1 llvm.org DESCRIPTION="Common files shared between multiple slots of clang" HOMEPAGE="https://llvm.org/" -S=${WORKDIR}/clang/utils LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" SLOT="0" @@ -17,7 +16,7 @@ PDEPEND=" sys-devel/clang:* " -LLVM_COMPONENTS=( clang/utils/bash-autocomplete.sh ) +LLVM_COMPONENTS=( clang/utils ) llvm.org_set_globals src_install() {