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 5C09E139084 for ; Tue, 28 Nov 2017 09:15:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5F78E0E97; Tue, 28 Nov 2017 09:15:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 A5534E0E97 for ; Tue, 28 Nov 2017 09:15:09 +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 36BEE33E4AD 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 CD033AA50 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: <1511860457.5313553d2d098fe302993f715f23f77998707d20.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/lit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/lit/lit-5.0.9999.ebuild dev-python/lit/lit-9999.ebuild X-VCS-Directories: dev-python/lit/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5313553d2d098fe302993f715f23f77998707d20 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: edd9e1f0-97aa-46f9-868b-bd2821ac8346 X-Archives-Hash: 335d7b5e32de9f35931c227f51d9ec47 commit: 5313553d2d098fe302993f715f23f77998707d20 Author: Michał Górny gentoo org> AuthorDate: Sat Nov 18 07:50:31 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Nov 28 09:14:17 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5313553d dev-python/lit: Utilize partial git checkout dev-python/lit/lit-5.0.9999.ebuild | 5 +++++ dev-python/lit/lit-9999.ebuild | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/dev-python/lit/lit-5.0.9999.ebuild b/dev-python/lit/lit-5.0.9999.ebuild index 61b9ce3ec02..6d9f12eb032 100644 --- a/dev-python/lit/lit-5.0.9999.ebuild +++ b/dev-python/lit/lit-5.0.9999.ebuild @@ -29,6 +29,11 @@ DEPEND=" # TODO: move the manpage generation here (from sys-devel/llvm) +src_unpack() { + git-r3_fetch + git-r3_checkout '' '' '' utils/lit +} + python_test() { ./lit.py -sv tests || die } diff --git a/dev-python/lit/lit-9999.ebuild b/dev-python/lit/lit-9999.ebuild index 063e1421607..d8c140474d8 100644 --- a/dev-python/lit/lit-9999.ebuild +++ b/dev-python/lit/lit-9999.ebuild @@ -28,6 +28,11 @@ DEPEND=" # TODO: move the manpage generation here (from sys-devel/llvm) +src_unpack() { + git-r3_fetch + git-r3_checkout '' '' '' utils/lit +} + python_test() { ./lit.py -vv tests || die }