Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ed25519ll/
Date: Fri, 27 Apr 2018 07:00:28
Message-Id: 1524812405.471e96431ec6a3503a87cae2aa1459b48001d818.mgorny@gentoo
1 commit: 471e96431ec6a3503a87cae2aa1459b48001d818
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 27 06:58:45 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 27 07:00:05 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=471e9643
7
8 dev-python/ed25519ll: Remove Python 3
9
10 The package has *syntax errors* in *source*. This means it will not
11 work in Python 3. So how about we remove Python 3 instead
12 of restricting tests that uncover the failure and pretending things
13 are fine?
14
15 dev-python/ed25519ll/ed25519ll-0.6.ebuild | 5 +----
16 1 file changed, 1 insertion(+), 4 deletions(-)
17
18 diff --git a/dev-python/ed25519ll/ed25519ll-0.6.ebuild b/dev-python/ed25519ll/ed25519ll-0.6.ebuild
19 index fa9f433afbb..b55559e763e 100644
20 --- a/dev-python/ed25519ll/ed25519ll-0.6.ebuild
21 +++ b/dev-python/ed25519ll/ed25519ll-0.6.ebuild
22 @@ -3,7 +3,7 @@
23
24 EAPI=6
25
26 -PYTHON_COMPAT=( python{2_7,3_{4,5}} pypy pypy3 )
27 +PYTHON_COMPAT=( python2_7 pypy )
28
29 inherit distutils-r1
30
31 @@ -23,9 +23,6 @@ DEPEND="${RDEPEND}
32 dev-python/nose[${PYTHON_USEDEP}]
33 )"
34
35 -# https://bitbucket.org/dholth/ed25519ll/issues/1/testfailures-with-python-3
36 -RESTRICT=test
37 -
38 python_test() {
39 esetup.py test
40 }