Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/betagarden:master commit in: dev-vcs/git-cola/
Date: Mon, 25 Jan 2016 07:35:35
Message-Id: 1453707318.0c26a88336e2353fe28b742bcc41e0827a1a85a6.jlec@gentoo
1 commit: 0c26a88336e2353fe28b742bcc41e0827a1a85a6
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 25 07:35:18 2016 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 25 07:35:18 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=0c26a883
7
8 dev-vcs/git-cola: Fix tests to latest HEAD
9
10 * add python3.5 support
11
12 Package-Manager: portage-2.2.27
13 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
14
15 dev-vcs/git-cola/git-cola-9999.ebuild | 18 ++++++++----------
16 1 file changed, 8 insertions(+), 10 deletions(-)
17
18 diff --git a/dev-vcs/git-cola/git-cola-9999.ebuild b/dev-vcs/git-cola/git-cola-9999.ebuild
19 index 7f3b6e3..4492662 100644
20 --- a/dev-vcs/git-cola/git-cola-9999.ebuild
21 +++ b/dev-vcs/git-cola/git-cola-9999.ebuild
22 @@ -1,10 +1,10 @@
23 -# Copyright 1999-2015 Gentoo Foundation
24 +# Copyright 1999-2016 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 # $Id$
27
28 EAPI=5
29
30 -PYTHON_COMPAT=( python2_7 python3_{3,4} )
31 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
32 DISTUTILS_SINGLE_IMPL=true
33
34 inherit distutils-r1 git-r3 readme.gentoo virtualx
35 @@ -33,10 +33,6 @@ DEPEND="${RDEPEND}
36 test? ( dev-python/nose[${PYTHON_USEDEP}] )
37 "
38
39 -PATCHES=(
40 - "${FILESDIR}"/${P}-disable-live-tests.patch
41 -)
42 -
43 python_prepare_all() {
44 rm share/git-cola/bin/*askpass* || die
45
46 @@ -70,10 +66,12 @@ python_compile_all() {
47 }
48
49 python_test() {
50 - PYTHONPATH="${S}:${S}/build/lib:${PYTHONPATH}" LC_ALL="C" \
51 - VIRTUALX_COMMAND="nosetests --verbose --with-id --with-doctest \
52 - --exclude=sphinxtogithub" \
53 - virtualmake
54 + PYTHONPATH="${S}:${S}/build/lib:${PYTHONPATH}" \
55 + LC_ALL="C" \
56 + GIT_COLA_NO_HISTORY=True \
57 + virtx nosetests \
58 + --verbose --with-id --with-doctest \
59 + --exclude=sphinxtogithub
60 }
61
62 src_install() {