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 18D09139082 for ; Tue, 28 Nov 2017 09:15:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70941E0D4C; 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 4D726E0D1C 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 6B76633BF05 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 127A7AA4E for ; Tue, 28 Nov 2017 09:15:07 +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: <1511860458.761e0e4f1f0f8fbe4fbe8be852c78b60e46ec603.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/clang-python/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/clang-python/clang-python-5.0.9999.ebuild dev-python/clang-python/clang-python-9999.ebuild X-VCS-Directories: dev-python/clang-python/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 761e0e4f1f0f8fbe4fbe8be852c78b60e46ec603 X-VCS-Branch: master Date: Tue, 28 Nov 2017 09:15:07 +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: 370b8f79-50af-446f-8faa-27f2ba448405 X-Archives-Hash: 4cedf80feb1f4ccadb1dc251c9e23671 commit: 761e0e4f1f0f8fbe4fbe8be852c78b60e46ec603 Author: Michał Górny gentoo org> AuthorDate: Sat Nov 18 07:56:47 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Nov 28 09:14:18 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=761e0e4f dev-python/clang-python: Utilize partial checkout dev-python/clang-python/clang-python-5.0.9999.ebuild | 5 +++++ dev-python/clang-python/clang-python-9999.ebuild | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/dev-python/clang-python/clang-python-5.0.9999.ebuild b/dev-python/clang-python/clang-python-5.0.9999.ebuild index 3310c5b2e31..6741f963680 100644 --- a/dev-python/clang-python/clang-python-5.0.9999.ebuild +++ b/dev-python/clang-python/clang-python-5.0.9999.ebuild @@ -31,6 +31,11 @@ DEPEND="${RDEPEND} S=${WORKDIR}/${P}/bindings/python +src_unpack() { + git-r3_fetch + git-r3_checkout '' '' '' bindings/python +} + src_test() { python_foreach_impl nosetests -v || die } diff --git a/dev-python/clang-python/clang-python-9999.ebuild b/dev-python/clang-python/clang-python-9999.ebuild index 854d44c3f77..d59b5b98bb8 100644 --- a/dev-python/clang-python/clang-python-9999.ebuild +++ b/dev-python/clang-python/clang-python-9999.ebuild @@ -29,6 +29,11 @@ DEPEND="${RDEPEND}" S=${WORKDIR}/${P}/bindings/python +src_unpack() { + git-r3_fetch + git-r3_checkout '' '' '' bindings/python +} + src_test() { python_foreach_impl python -m unittest discover -v || die }