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 ABB8E139082 for ; Tue, 28 Nov 2017 09:15:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 01F8CE0CAE; Tue, 28 Nov 2017 09:15:09 +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 D50CBE0CAE for ; Tue, 28 Nov 2017 09:15:08 +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 2331333D4A6 for ; Tue, 28 Nov 2017 09:15:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B98C5AA4F for ; Tue, 28 Nov 2017 09:15:06 +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: <1511860456.35913dc12dfc8f34db766d410e9ee60866c223b2.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-5.0.9999.ebuild sys-devel/llvm-common/llvm-common-9999.ebuild X-VCS-Directories: sys-devel/llvm-common/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 35913dc12dfc8f34db766d410e9ee60866c223b2 X-VCS-Branch: master Date: Tue, 28 Nov 2017 09:15:06 +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: 1f9a7a07-a5d0-4cfc-be86-60674072069e X-Archives-Hash: 5c4bc39569da1a01063633248c0fb44c commit: 35913dc12dfc8f34db766d410e9ee60866c223b2 Author: Michał Górny gentoo org> AuthorDate: Fri Nov 17 23:25:42 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Nov 28 09:14:16 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35913dc1 sys-devel/llvm-common: Utilize partial git checkouts sys-devel/llvm-common/llvm-common-5.0.9999.ebuild | 5 +++++ sys-devel/llvm-common/llvm-common-9999.ebuild | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/sys-devel/llvm-common/llvm-common-5.0.9999.ebuild b/sys-devel/llvm-common/llvm-common-5.0.9999.ebuild index 239d0e083cd..cc7ed2a7122 100644 --- a/sys-devel/llvm-common/llvm-common-5.0.9999.ebuild +++ b/sys-devel/llvm-common/llvm-common-5.0.9999.ebuild @@ -19,6 +19,11 @@ IUSE="" RDEPEND="!sys-devel/llvm:0" +src_unpack() { + git-r3_fetch + git-r3_checkout '' '' '' utils/vim +} + src_configure() { :; } src_compile() { :; } src_test() { :; } diff --git a/sys-devel/llvm-common/llvm-common-9999.ebuild b/sys-devel/llvm-common/llvm-common-9999.ebuild index 64d8f5e7daf..d0f42029fa9 100644 --- a/sys-devel/llvm-common/llvm-common-9999.ebuild +++ b/sys-devel/llvm-common/llvm-common-9999.ebuild @@ -18,6 +18,11 @@ IUSE="" RDEPEND="!sys-devel/llvm:0" +src_unpack() { + git-r3_fetch + git-r3_checkout '' '' '' utils/vim +} + src_configure() { :; } src_compile() { :; } src_test() { :; }