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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2757F15813A for ; Sat, 18 Jan 2025 15:10:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8D3BBE08FF; Sat, 18 Jan 2025 15:10:03 +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 6BBC5E08FF for ; Sat, 18 Jan 2025 15:10:03 +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 6B29B342FA6 for ; Sat, 18 Jan 2025 15:10:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A98012606 for ; Sat, 18 Jan 2025 15:09: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: <1737212590.d6585a1afaa86264a6c5c70ad16c2292e38f48fa.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-20.0.0_pre20250118.ebuild X-VCS-Directories: llvm-core/clang-runtime/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d6585a1afaa86264a6c5c70ad16c2292e38f48fa X-VCS-Branch: master Date: Sat, 18 Jan 2025 15:09: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: 6fc05149-a86d-4c12-b447-3ea1ab5f08dc X-Archives-Hash: 077c3288c218465e8090be416c4ca2cd commit: d6585a1afaa86264a6c5c70ad16c2292e38f48fa Author: Michał Górny gentoo org> AuthorDate: Sat Jan 18 15:00:51 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jan 18 15:03:10 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6585a1a llvm-core/clang-runtime: Add 20.0.0_pre20250118 snapshot Signed-off-by: Michał Górny gentoo.org> .../clang-runtime-20.0.0_pre20250118.ebuild | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/llvm-core/clang-runtime/clang-runtime-20.0.0_pre20250118.ebuild b/llvm-core/clang-runtime/clang-runtime-20.0.0_pre20250118.ebuild new file mode 100644 index 000000000000..542c7b28a6f4 --- /dev/null +++ b/llvm-core/clang-runtime/clang-runtime-20.0.0_pre20250118.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} + ) + ) +"