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 A350C1582EF for ; Sat, 15 Feb 2025 11:30:17 +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 8C9853430B6 for ; Sat, 15 Feb 2025 11:30:17 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 31996110472; Sat, 15 Feb 2025 11:30:11 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 2B461110472 for ; Sat, 15 Feb 2025 11:30:11 +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 D85B7342FF3 for ; Sat, 15 Feb 2025 11:30:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DCF1E2713 for ; Sat, 15 Feb 2025 11:30:08 +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: <1739618986.be0350b5ff44c29c394fda82687c486515abbee6.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: llvm-core/clang-runtime/ X-VCS-Repository: repo/gentoo X-VCS-Files: llvm-core/clang-runtime/clang-runtime-21.0.0_pre20250215.ebuild X-VCS-Directories: llvm-core/clang-runtime/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: be0350b5ff44c29c394fda82687c486515abbee6 X-VCS-Branch: master Date: Sat, 15 Feb 2025 11:30:08 +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: 15f93699-be88-40dd-89b3-2eee306995be X-Archives-Hash: be5a47ec27e920c6d2befd42364e4174 commit: be0350b5ff44c29c394fda82687c486515abbee6 Author: Michał Górny gentoo org> AuthorDate: Sat Feb 15 10:08:53 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Feb 15 11:29:46 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be0350b5 llvm-core/clang-runtime: Add 21.0.0_pre20250215 snapshot Signed-off-by: Michał Górny gentoo.org> .../clang-runtime-21.0.0_pre20250215.ebuild | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/llvm-core/clang-runtime/clang-runtime-21.0.0_pre20250215.ebuild b/llvm-core/clang-runtime/clang-runtime-21.0.0_pre20250215.ebuild new file mode 100644 index 000000000000..542c7b28a6f4 --- /dev/null +++ b/llvm-core/clang-runtime/clang-runtime-21.0.0_pre20250215.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit multilib-build + +DESCRIPTION="Meta-ebuild for clang runtime libraries" +HOMEPAGE="https://clang.llvm.org/" + +LICENSE="metapackage" +SLOT="${PV%%.*}" +IUSE="+compiler-rt libcxx offload openmp +sanitize" +REQUIRED_USE="sanitize? ( compiler-rt )" + +RDEPEND=" + compiler-rt? ( + ~llvm-runtimes/compiler-rt-${PV}:${SLOT}[abi_x86_32(+)?,abi_x86_64(+)?] + sanitize? ( + ~llvm-runtimes/compiler-rt-sanitizers-${PV}:${SLOT}[abi_x86_32(+)?,abi_x86_64(+)?] + ) + ) + libcxx? ( >=llvm-runtimes/libcxx-${PV}[${MULTILIB_USEDEP}] ) + openmp? ( + >=llvm-runtimes/openmp-${PV}[${MULTILIB_USEDEP}] + offload? ( + >=llvm-runtimes/offload-${PV} + ) + ) +"