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 17286138334 for ; Tue, 28 Aug 2018 16:00:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79E1EE088C; Tue, 28 Aug 2018 16:00:48 +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 50C3BE088C for ; Tue, 28 Aug 2018 16:00:48 +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 458C8335D9C for ; Tue, 28 Aug 2018 16:00:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3D1E13CB for ; Tue, 28 Aug 2018 16:00:43 +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: <1535472038.82ad74063afea6c189725cf551fbdec506d86fa2.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-7.0.0_rc2.ebuild X-VCS-Directories: sys-devel/clang-runtime/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 82ad74063afea6c189725cf551fbdec506d86fa2 X-VCS-Branch: master Date: Tue, 28 Aug 2018 16:00:43 +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-Archives-Salt: 2d71514e-fdf0-42bd-bd07-b7ca5e981df9 X-Archives-Hash: fd35266b66b02863c8ff3e8c21ed89cd commit: 82ad74063afea6c189725cf551fbdec506d86fa2 Author: Michał Górny gentoo org> AuthorDate: Tue Aug 28 15:41:04 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Aug 28 16:00:38 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82ad7406 sys-devel/clang-runtime: Bump to 7.0.0rc2 .../clang-runtime/clang-runtime-7.0.0_rc2.ebuild | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/sys-devel/clang-runtime/clang-runtime-7.0.0_rc2.ebuild b/sys-devel/clang-runtime/clang-runtime-7.0.0_rc2.ebuild new file mode 100644 index 00000000000..0a2d24887e0 --- /dev/null +++ b/sys-devel/clang-runtime/clang-runtime-7.0.0_rc2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit multilib-build + +DESCRIPTION="Meta-ebuild for clang runtime libraries" +HOMEPAGE="https://clang.llvm.org/" +SRC_URI="" + +LICENSE="metapackage" +SLOT="${PV%_*}" +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 )"