From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 2817B1580E0 for ; Sat, 01 Feb 2025 08:06:07 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 0CD45343199 for ; Sat, 01 Feb 2025 08:06:07 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 70522110471; Sat, 01 Feb 2025 08:06:00 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 67596110471 for ; Sat, 01 Feb 2025 08:06:00 +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 21995343075 for ; Sat, 01 Feb 2025 08:06:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8309620D7 for ; Sat, 01 Feb 2025 08:05:58 +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: <1738397138.c3c4a4d49efc9325d0f78e0149b6adb7844718ae.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: llvm-core/llvmgold/ X-VCS-Repository: repo/gentoo X-VCS-Files: llvm-core/llvmgold/llvmgold-21.ebuild X-VCS-Directories: llvm-core/llvmgold/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c3c4a4d49efc9325d0f78e0149b6adb7844718ae X-VCS-Branch: master Date: Sat, 01 Feb 2025 08:05:58 +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: 5e13f545-d909-405d-bc0d-cc0ab0b86d7d X-Archives-Hash: 5877b244abab0ed8de103a4ab9cc3193 commit: c3c4a4d49efc9325d0f78e0149b6adb7844718ae Author: Michał Górny gentoo org> AuthorDate: Sat Feb 1 07:59:07 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Feb 1 08:05:38 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3c4a4d4 llvm-core/llvmgold: main is now 21* Signed-off-by: Michał Górny gentoo.org> llvm-core/llvmgold/llvmgold-21.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/llvm-core/llvmgold/llvmgold-21.ebuild b/llvm-core/llvmgold/llvmgold-21.ebuild new file mode 100644 index 000000000000..b1358113bb70 --- /dev/null +++ b/llvm-core/llvmgold/llvmgold-21.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="LLVMgold plugin symlink for autoloading" +HOMEPAGE="https://llvm.org/" +S=${WORKDIR} + +LICENSE="public-domain" +SLOT="0" + +RDEPEND=" + llvm-core/llvm:${PV}[binutils-plugin] + !llvm-core/llvm:0 +" + +src_install() { + dodir "/usr/${CHOST}/binutils-bin/lib/bfd-plugins" + dosym "../../../../lib/llvm/${PV}/$(get_libdir)/LLVMgold.so" \ + "/usr/${CHOST}/binutils-bin/lib/bfd-plugins/LLVMgold.so" +}