From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8390258973 for ; Mon, 25 Jan 2016 07:35:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6F9C0E08CE; Mon, 25 Jan 2016 07:35:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0A8AAE08CE for ; Mon, 25 Jan 2016 07:35:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E979B3404A5 for ; Mon, 25 Jan 2016 07:35:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 28040FFB for ; Mon, 25 Jan 2016 07:35:28 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1453707318.0c26a88336e2353fe28b742bcc41e0827a1a85a6.jlec@gentoo> Subject: [gentoo-commits] proj/betagarden:master commit in: dev-vcs/git-cola/ X-VCS-Repository: proj/betagarden X-VCS-Files: dev-vcs/git-cola/git-cola-9999.ebuild X-VCS-Directories: dev-vcs/git-cola/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 0c26a88336e2353fe28b742bcc41e0827a1a85a6 X-VCS-Branch: master Date: Mon, 25 Jan 2016 07:35:28 +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: ae5dc89f-0bdf-41c0-a777-b9eeb50b60b7 X-Archives-Hash: bc76cafb5eb52b5bcf762d961e715d15 commit: 0c26a88336e2353fe28b742bcc41e0827a1a85a6 Author: Justin Lecher gentoo org> AuthorDate: Mon Jan 25 07:35:18 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Jan 25 07:35:18 2016 +0000 URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=0c26a883 dev-vcs/git-cola: Fix tests to latest HEAD * add python3.5 support Package-Manager: portage-2.2.27 Signed-off-by: Justin Lecher gentoo.org> dev-vcs/git-cola/git-cola-9999.ebuild | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/dev-vcs/git-cola/git-cola-9999.ebuild b/dev-vcs/git-cola/git-cola-9999.ebuild index 7f3b6e3..4492662 100644 --- a/dev-vcs/git-cola/git-cola-9999.ebuild +++ b/dev-vcs/git-cola/git-cola-9999.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -PYTHON_COMPAT=( python2_7 python3_{3,4} ) +PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) DISTUTILS_SINGLE_IMPL=true inherit distutils-r1 git-r3 readme.gentoo virtualx @@ -33,10 +33,6 @@ DEPEND="${RDEPEND} test? ( dev-python/nose[${PYTHON_USEDEP}] ) " -PATCHES=( - "${FILESDIR}"/${P}-disable-live-tests.patch -) - python_prepare_all() { rm share/git-cola/bin/*askpass* || die @@ -70,10 +66,12 @@ python_compile_all() { } python_test() { - PYTHONPATH="${S}:${S}/build/lib:${PYTHONPATH}" LC_ALL="C" \ - VIRTUALX_COMMAND="nosetests --verbose --with-id --with-doctest \ - --exclude=sphinxtogithub" \ - virtualmake + PYTHONPATH="${S}:${S}/build/lib:${PYTHONPATH}" \ + LC_ALL="C" \ + GIT_COLA_NO_HISTORY=True \ + virtx nosetests \ + --verbose --with-id --with-doctest \ + --exclude=sphinxtogithub } src_install() {