Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/m2crypto/
Date: Fri, 28 Oct 2016 22:31:19
Message-Id: 1477693836.88f92032cd9768fff8af37c8fd68ede1a7241879.soap@gentoo
1 commit: 88f92032cd9768fff8af37c8fd68ede1a7241879
2 Author: Jonathan Scruggs <j.scruggs <AT> gmail <DOT> com>
3 AuthorDate: Fri Oct 28 10:46:47 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 28 22:30:36 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88f92032
7
8 dev-python/m2crypto: Add missing RDEPEND on dev-python/typing
9
10 Gentoo-bug: 597744
11 * EAPI=6
12 * Removing old ebuild as it doesn't have the
13 dependency, so m2crypto will not work right.
14
15 Signed off by: Jonathan Scruggs (j.scruggs <AT> gmail.com)
16 Closes: https://github.com/gentoo/gentoo/pull/2686
17
18 Signed-off-by: David Seifert <soap <AT> gentoo.org>
19
20 .../m2crypto/{m2crypto-0.25.1.ebuild => m2crypto-0.25.1-r1.ebuild} | 7 ++++---
21 1 file changed, 4 insertions(+), 3 deletions(-)
22
23 diff --git a/dev-python/m2crypto/m2crypto-0.25.1.ebuild b/dev-python/m2crypto/m2crypto-0.25.1-r1.ebuild
24 similarity index 76%
25 rename from dev-python/m2crypto/m2crypto-0.25.1.ebuild
26 rename to dev-python/m2crypto/m2crypto-0.25.1-r1.ebuild
27 index c7509ea..b2ad706 100644
28 --- a/dev-python/m2crypto/m2crypto-0.25.1.ebuild
29 +++ b/dev-python/m2crypto/m2crypto-0.25.1-r1.ebuild
30 @@ -2,7 +2,7 @@
31 # Distributed under the terms of the GNU General Public License v2
32 # $Id$
33
34 -EAPI=5
35 +EAPI=6
36
37 PYTHON_COMPAT=( python2_7 )
38 PYTHON_REQ_USE="threads(+)"
39 @@ -17,12 +17,13 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
40
41 LICENSE="BSD"
42 SLOT="0"
43 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
44 +KEYWORDS="~amd64"
45 IUSE="libressl"
46
47 RDEPEND="
48 !libressl? ( >=dev-libs/openssl-0.9.8:0= )
49 - libressl? ( dev-libs/libressl:= )
50 + libressl? ( dev-libs/libressl:0= )
51 + dev-python/typing
52 "
53 DEPEND="${RDEPEND}
54 >=dev-lang/swig-1.3.28:0