Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/scrypt/
Date: Wed, 02 Jan 2019 11:39:39
Message-Id: 1546429165.db4cb0819203e3246ead256bd1790b2445738d55.jlec@gentoo
1 commit: db4cb0819203e3246ead256bd1790b2445738d55
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 2 11:39:05 2019 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 2 11:39:25 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db4cb081
7
8 dev-python/scrypt: Add missing dep on openssl
9
10 Package-Manager: Portage-2.3.53, Repoman-2.3.12
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/scrypt/scrypt-0.8.0.ebuild | 6 ++++--
14 dev-python/scrypt/scrypt-0.8.6.ebuild | 9 ++++++---
15 2 files changed, 10 insertions(+), 5 deletions(-)
16
17 diff --git a/dev-python/scrypt/scrypt-0.8.0.ebuild b/dev-python/scrypt/scrypt-0.8.0.ebuild
18 index e8a275ed360..76f189daa36 100644
19 --- a/dev-python/scrypt/scrypt-0.8.0.ebuild
20 +++ b/dev-python/scrypt/scrypt-0.8.0.ebuild
21 @@ -1,7 +1,8 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 +# Copyright 1999-2019 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=6
27 +
28 PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
29
30 inherit distutils-r1
31 @@ -15,6 +16,7 @@ KEYWORDS="amd64 ~arm ~arm64 x86"
32 SLOT="0"
33 IUSE="test doc"
34
35 +RDEPEND="dev-libs/openssl:0="
36 DEPEND="${RDEPEND}
37 dev-python/setuptools[${PYTHON_USEDEP}]"
38
39 @@ -22,5 +24,5 @@ DEPEND="${RDEPEND}
40 RESTRICT=test
41
42 python_test() {
43 - esetup.py test || die "tests failed"
44 + esetup.py test
45 }
46
47 diff --git a/dev-python/scrypt/scrypt-0.8.6.ebuild b/dev-python/scrypt/scrypt-0.8.6.ebuild
48 index aa80ad17031..c886c88b999 100644
49 --- a/dev-python/scrypt/scrypt-0.8.6.ebuild
50 +++ b/dev-python/scrypt/scrypt-0.8.6.ebuild
51 @@ -1,7 +1,8 @@
52 -# Copyright 1999-2018 Gentoo Authors
53 +# Copyright 1999-2019 Gentoo Authors
54 # Distributed under the terms of the GNU General Public License v2
55
56 EAPI=6
57 +
58 PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6,3_7} pypy )
59
60 inherit distutils-r1
61 @@ -15,8 +16,10 @@ KEYWORDS="~amd64 ~arm ~arm64 ~x86"
62 SLOT="0"
63 IUSE="test doc"
64
65 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
66 +RDEPEND="dev-libs/openssl:0="
67 +DEPEND="${RDEPEND}
68 + dev-python/setuptools[${PYTHON_USEDEP}]"
69
70 python_test() {
71 - esetup.py test || die "tests failed"
72 + esetup.py test
73 }