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/pypy3/
Date: Thu, 25 May 2017 18:41:02
Message-Id: 1495737650.6c9d094f59282be1e894c7311cdc1af3f5a302ef.mgorny@gentoo
1 commit: 6c9d094f59282be1e894c7311cdc1af3f5a302ef
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 25 18:38:47 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu May 25 18:40:50 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c9d094f
7
8 dev-python/pypy3: Fix missing ssl CFFI module in 5.7.1, #619648
9
10 dev-python/pypy3/{pypy3-5.7.1-r1.ebuild => pypy3-5.7.1-r2.ebuild} | 3 ++-
11 1 file changed, 2 insertions(+), 1 deletion(-)
12
13 diff --git a/dev-python/pypy3/pypy3-5.7.1-r1.ebuild b/dev-python/pypy3/pypy3-5.7.1-r2.ebuild
14 similarity index 98%
15 rename from dev-python/pypy3/pypy3-5.7.1-r1.ebuild
16 rename to dev-python/pypy3/pypy3-5.7.1-r2.ebuild
17 index 7633d4b3dcc..0bc94aff40c 100644
18 --- a/dev-python/pypy3/pypy3-5.7.1-r1.ebuild
19 +++ b/dev-python/pypy3/pypy3-5.7.1-r2.ebuild
20 @@ -234,7 +234,8 @@ src_install() {
21 # "resource": "_resource_build.py" if sys.platform != "win32" else None,
22 # "lzma": "_lzma_build.py",
23 # "_decimal": "_decimal_build.py",
24 - cffi_targets=( audioop syslog pwdgrp resource lzma decimal )
25 +# "ssl": "_ssl_build.py",
26 + cffi_targets=( audioop syslog pwdgrp resource lzma decimal ssl )
27 use gdbm && cffi_targets+=( gdbm )
28 use ncurses && cffi_targets+=( curses )
29 use sqlite && cffi_targets+=( sqlite3 )