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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EEADD138334 for ; Sun, 21 Jul 2019 07:34:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8E24E082B; Sun, 21 Jul 2019 07:34:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BEF55E0827 for ; Sun, 21 Jul 2019 07:34:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 83101348396 for ; Sun, 21 Jul 2019 07:34:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 75E0472F for ; Sun, 21 Jul 2019 07:34:13 +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: <1563694433.dbf35e66bd6dd82f993f4199fc0a0785c00f79c7.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-9.0.9999.ebuild X-VCS-Directories: sys-devel/clang-runtime/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: dbf35e66bd6dd82f993f4199fc0a0785c00f79c7 X-VCS-Branch: master Date: Sun, 21 Jul 2019 07:34:13 +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: a8216675-f619-4047-a0bf-9bf076a61680 X-Archives-Hash: c0ff1a15d8d45c2f20393eab0291c397 commit: dbf35e66bd6dd82f993f4199fc0a0785c00f79c7 Author: Michał Górny gentoo org> AuthorDate: Sun Jul 21 07:13:36 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jul 21 07:33:53 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbf35e66 sys-devel/clang-runtime: Add 9.0 branch live ebuild Signed-off-by: Michał Górny gentoo.org> .../clang-runtime/clang-runtime-9.0.9999.ebuild | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/sys-devel/clang-runtime/clang-runtime-9.0.9999.ebuild b/sys-devel/clang-runtime/clang-runtime-9.0.9999.ebuild new file mode 100644 index 00000000000..2b4d595159b --- /dev/null +++ b/sys-devel/clang-runtime/clang-runtime-9.0.9999.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2019 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" +# Note: keep it matching clang-9999 version +SLOT="9.0.0" +KEYWORDS="" +IUSE="+compiler-rt crt libcxx openmp +sanitize" + +RDEPEND=" + compiler-rt? ( + ~sys-libs/compiler-rt-${PV}:${SLOT} + sanitize? ( ~sys-libs/compiler-rt-sanitizers-${PV}:${SLOT} ) + ) + crt? ( + || ( + sys-libs/netbsd-csu[${MULTILIB_USEDEP}] + sys-freebsd/freebsd-lib[${MULTILIB_USEDEP}] + ) + ) + libcxx? ( >=sys-libs/libcxx-${PV}[${MULTILIB_USEDEP}] ) + openmp? ( >=sys-libs/libomp-${PV}[${MULTILIB_USEDEP}] )" + +REQUIRED_USE="sanitize? ( compiler-rt )"