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 2C0DC138359 for ; Wed, 15 Jul 2020 18:41:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1983E08E8; Wed, 15 Jul 2020 18:41:54 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A8E36E08E8 for ; Wed, 15 Jul 2020 18:41:54 +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 9C74334F162 for ; Wed, 15 Jul 2020 18:41:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AC1B92DC for ; Wed, 15 Jul 2020 18:41:49 +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: <1594838490.140a8082e10b217c5993130edd362581e3b2e784.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-12.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: 140a8082e10b217c5993130edd362581e3b2e784 X-VCS-Branch: master Date: Wed, 15 Jul 2020 18:41:49 +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: 112d6fd3-661d-4138-9b82-6860bb57d88b X-Archives-Hash: 99d1fb634a9453d805d7109383c75184 commit: 140a8082e10b217c5993130edd362581e3b2e784 Author: Michał Górny gentoo org> AuthorDate: Wed Jul 15 18:36:14 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jul 15 18:41:30 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=140a8082 sys-devel/llvm-common: Add 12.0.0.9999 for master branch Signed-off-by: Michał Górny gentoo.org> .../llvm-common/llvm-common-12.0.0.9999.ebuild | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/sys-devel/llvm-common/llvm-common-12.0.0.9999.ebuild b/sys-devel/llvm-common/llvm-common-12.0.0.9999.ebuild new file mode 100644 index 00000000000..df9cf92b47a --- /dev/null +++ b/sys-devel/llvm-common/llvm-common-12.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 +}