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 A0DDB138350 for ; Sat, 18 Jan 2020 17:18:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29FF6E08A2; Sat, 18 Jan 2020 17:18:51 +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 0E1E8E08A2 for ; Sat, 18 Jan 2020 17:18:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 B8F8934E1A7 for ; Sat, 18 Jan 2020 17:18:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 59003D6 for ; Sat, 18 Jan 2020 17:18:48 +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: <1579367907.ab31a93732178bc1de3b3e4b7831433f62e62d5b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm-common/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/llvm-common/llvm-common-11.0.0.9999.ebuild X-VCS-Directories: sys-devel/llvm-common/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ab31a93732178bc1de3b3e4b7831433f62e62d5b X-VCS-Branch: master Date: Sat, 18 Jan 2020 17:18:48 +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: ea37bbab-0e44-42cb-8e2e-95aec9a179e3 X-Archives-Hash: a74e9bd81aac895410454d15f5522080 commit: ab31a93732178bc1de3b3e4b7831433f62e62d5b Author: Michał Górny gentoo org> AuthorDate: Sat Jan 18 16:40:38 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jan 18 17:18:27 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab31a937 sys-devel/llvm-common: Include 11.* ebuilds for master Signed-off-by: Michał Górny gentoo.org> .../llvm-common/llvm-common-11.0.0.9999.ebuild | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/sys-devel/llvm-common/llvm-common-11.0.0.9999.ebuild b/sys-devel/llvm-common/llvm-common-11.0.0.9999.ebuild new file mode 100644 index 00000000000..df9cf92b47a --- /dev/null +++ b/sys-devel/llvm-common/llvm-common-11.0.0.9999.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit llvm.org + +DESCRIPTION="Common files shared between multiple slots of LLVM" +HOMEPAGE="https://llvm.org/" +LLVM_COMPONENTS=( llvm/utils/vim ) +llvm.org_set_globals + +LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" +SLOT="0" +KEYWORDS="" +IUSE="" + +RDEPEND="!sys-devel/llvm:0" + +src_install() { + insinto /usr/share/vim/vimfiles + doins -r */ + # some users may find it useful + newdoc README README.vim + dodoc vimrc +}