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 30B2F158015 for ; Fri, 22 Dec 2023 16:43:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 714FB2BC082; Fri, 22 Dec 2023 16:43:31 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 5D56D2BC082 for ; Fri, 22 Dec 2023 16:43:31 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 97C10342FF6 for ; Fri, 22 Dec 2023 16:43:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 036629C4 for ; Fri, 22 Dec 2023 16:43:29 +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: <1703263382.e0560045f6c88a9707df1fc0578e0e43319efaff.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/lld-toolchain-symlinks/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-14-r2.ebuild X-VCS-Directories: sys-devel/lld-toolchain-symlinks/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e0560045f6c88a9707df1fc0578e0e43319efaff X-VCS-Branch: master Date: Fri, 22 Dec 2023 16:43:29 +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: 70c107c8-87ab-4bd4-a8d3-b65bda8b749e X-Archives-Hash: 3616261c0ac0255451e56afe13dd0772 commit: e0560045f6c88a9707df1fc0578e0e43319efaff Author: Michał Górny gentoo org> AuthorDate: Fri Dec 22 15:58:18 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Dec 22 16:43:02 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0560045 sys-devel/lld-toolchain-symlinks: Remove LLVM 14 Signed-off-by: Michał Górny gentoo.org> .../lld-toolchain-symlinks-14-r2.ebuild | 38 ---------------------- 1 file changed, 38 deletions(-) diff --git a/sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-14-r2.ebuild b/sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-14-r2.ebuild deleted file mode 100644 index 833ce1b77e81..000000000000 --- a/sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-14-r2.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 2022-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit multilib - -DESCRIPTION="Symlinks to use LLD on binutils-free system" -HOMEPAGE="https://wiki.gentoo.org/wiki/Project:LLVM" -S=${WORKDIR} - -LICENSE="public-domain" -SLOT="${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" -IUSE="multilib-symlinks +native-symlinks" - -RDEPEND=" - sys-devel/lld:${SLOT} -" - -src_install() { - use native-symlinks || return - - local chosts=( "${CHOST}" ) - if use multilib-symlinks; then - local abi - for abi in $(get_all_abis); do - chosts+=( "$(get_abi_CHOST "${abi}")" ) - done - fi - - local dest=/usr/lib/llvm/${SLOT}/bin - dodir "${dest}" - dosym ld.lld "${dest}/ld" - for chost in "${chosts[@]}"; do - dosym ld.lld "${dest}/${chost}-ld" - done -}