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 341D4138206 for ; Wed, 3 Jan 2018 22:22:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F25FDE0921; Wed, 3 Jan 2018 22:21:52 +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 CECFCE091E for ; Wed, 3 Jan 2018 22:21:52 +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 B4E5C335C31 for ; Wed, 3 Jan 2018 22:21:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50718126 for ; Wed, 3 Jan 2018 22:21:50 +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: <1515018094.30941b64416340b5188c2aab7eed7a99b48ea1e2.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-6.0.9999.ebuild X-VCS-Directories: sys-devel/llvm-common/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 30941b64416340b5188c2aab7eed7a99b48ea1e2 X-VCS-Branch: master Date: Wed, 3 Jan 2018 22:21:50 +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: f3be7839-e421-46b6-8e19-aae416c9cebd X-Archives-Hash: 8f26101ec0afb0b0dc578a1b195aa107 commit: 30941b64416340b5188c2aab7eed7a99b48ea1e2 Author: Michał Górny gentoo org> AuthorDate: Wed Jan 3 20:16:19 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jan 3 22:21:34 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30941b64 sys-devel/llvm-common: Add a live ebuild for 6.0 branch sys-devel/llvm-common/llvm-common-6.0.9999.ebuild | 37 +++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/sys-devel/llvm-common/llvm-common-6.0.9999.ebuild b/sys-devel/llvm-common/llvm-common-6.0.9999.ebuild new file mode 100644 index 00000000000..e1149b77043 --- /dev/null +++ b/sys-devel/llvm-common/llvm-common-6.0.9999.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit git-r3 + +DESCRIPTION="Common files shared between multiple slots of LLVM" +HOMEPAGE="https://llvm.org/" +SRC_URI="" +EGIT_REPO_URI="https://git.llvm.org/git/llvm.git + https://github.com/llvm-mirror/llvm.git" +EGIT_BRANCH="release_60" + +LICENSE="UoI-NCSA" +SLOT="0" +KEYWORDS="" +IUSE="" + +RDEPEND="!sys-devel/llvm:0" + +src_unpack() { + git-r3_fetch + git-r3_checkout '' '' '' utils/vim +} + +src_configure() { :; } +src_compile() { :; } +src_test() { :; } + +src_install() { + insinto /usr/share/vim/vimfiles + doins -r utils/vim/*/ + # some users may find it useful + newdoc utils/vim/README README.vim + dodoc utils/vim/vimrc +}