Gentoo Archives: gentoo-commits

From: Ian Delaney <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/torrentinfo/
Date: Sun, 31 Jan 2016 02:55:01
Message-Id: 1454164296.27aa78a3cb3996720d7d6c25f42efab4ebaac2a8.idella4@gentoo
1 commit: 27aa78a3cb3996720d7d6c25f42efab4ebaac2a8
2 Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
3 AuthorDate: Sat Jan 30 14:31:36 2016 +0000
4 Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 30 14:31:36 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27aa78a3
7
8 net-p2p/torrentinfo: add Python 3.5
9
10 Package-Manager: portage-2.2.27
11
12 net-p2p/torrentinfo/torrentinfo-1.8.6.ebuild | 12 +++++-------
13 1 file changed, 5 insertions(+), 7 deletions(-)
14
15 diff --git a/net-p2p/torrentinfo/torrentinfo-1.8.6.ebuild b/net-p2p/torrentinfo/torrentinfo-1.8.6.ebuild
16 index 6329cf3..0a9fdc6 100644
17 --- a/net-p2p/torrentinfo/torrentinfo-1.8.6.ebuild
18 +++ b/net-p2p/torrentinfo/torrentinfo-1.8.6.ebuild
19 @@ -1,9 +1,9 @@
20 -# Copyright 1999-2015 Gentoo Foundation
21 +# Copyright 1999-2016 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23 # $Id$
24
25 EAPI="5"
26 -PYTHON_COMPAT=( python{2_7,3_3,3_4} )
27 +PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
28
29 inherit distutils-r1
30
31 @@ -16,11 +16,9 @@ SLOT="0"
32 KEYWORDS="amd64 x86"
33 IUSE="test"
34
35 -RDEPEND=""
36 -DEPEND="${RDEPEND}
37 - test? ( dev-python/nose[${PYTHON_USEDEP}] )
38 -"
39 +DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )"
40
41 python_test() {
42 - nosetests -v test/tests.py || die "Tests fail with ${EPYTHON}"
43 + # tests sometimes fail, see bug #493682
44 + nosetests test/tests.py || die "tests failed with ${EPYTHON}"
45 }