From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1360087-garchives=archives.gentoo.org@lists.gentoo.org> 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 95613158087 for <garchives@archives.gentoo.org>; Fri, 21 Jan 2022 15:38:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C71E2BC03C; Fri, 21 Jan 2022 15:37:52 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 0E1A02BC038 for <gentoo-commits@lists.gentoo.org>; Fri, 21 Jan 2022 15:37:52 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DEF32343494 for <gentoo-commits@lists.gentoo.org>; Fri, 21 Jan 2022 15:37:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 79B972A3 for <gentoo-commits@lists.gentoo.org>; Fri, 21 Jan 2022 15:37:49 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> 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" <mgorny@gentoo.org> Message-ID: <1642779448.6d4a9ba4c1c8edf4903eee6ac3f67e40b15cf8ac.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/clang-runtime/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/clang-runtime/clang-runtime-13.0.1_rc3.ebuild X-VCS-Directories: sys-devel/clang-runtime/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6d4a9ba4c1c8edf4903eee6ac3f67e40b15cf8ac X-VCS-Branch: master Date: Fri, 21 Jan 2022 15:37:49 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 68dfde4a-9fd3-4a38-ad9e-bafa2cfecf1b X-Archives-Hash: 06e45d3a1cc2ac116e359fd63738810f commit: 6d4a9ba4c1c8edf4903eee6ac3f67e40b15cf8ac Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Fri Jan 21 12:01:53 2022 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Fri Jan 21 15:37:28 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d4a9ba4 sys-devel/clang-runtime: Bump to 13.0.1_rc3 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> .../clang-runtime/clang-runtime-13.0.1_rc3.ebuild | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/sys-devel/clang-runtime/clang-runtime-13.0.1_rc3.ebuild b/sys-devel/clang-runtime/clang-runtime-13.0.1_rc3.ebuild new file mode 100644 index 000000000000..23ad83f3671d --- /dev/null +++ b/sys-devel/clang-runtime/clang-runtime-13.0.1_rc3.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit multilib-build + +DESCRIPTION="Meta-ebuild for clang runtime libraries" +HOMEPAGE="https://clang.llvm.org/" +SRC_URI="" + +LICENSE="metapackage" +SLOT="$(ver_cut 1-3)" +KEYWORDS="" +IUSE="+compiler-rt libcxx openmp +sanitize" +REQUIRED_USE="sanitize? ( compiler-rt )" +PROPERTIES="live" + +RDEPEND=" + compiler-rt? ( + ~sys-libs/compiler-rt-${PV}:${SLOT} + sanitize? ( ~sys-libs/compiler-rt-sanitizers-${PV}:${SLOT} ) + ) + libcxx? ( >=sys-libs/libcxx-${PV}[${MULTILIB_USEDEP}] ) + openmp? ( >=sys-libs/libomp-${PV}[${MULTILIB_USEDEP}] )"