Gentoo Archives: gentoo-commits

From: Julian Ospald <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycurl/
Date: Sat, 03 Oct 2015 14:40:35
Message-Id: 1443883162.9b567e044a617a15fbe4af76e79d6235f1e4a8e5.hasufell@gentoo
1 commit: 9b567e044a617a15fbe4af76e79d6235f1e4a8e5
2 Author: Julian Ospald <hasufell <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 3 14:39:22 2015 +0000
4 Commit: Julian Ospald <hasufell <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 3 14:39:22 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b567e04
7
8 dev-python/pycurl: add libressl support
9
10 dev-python/pycurl/pycurl-7.19.5.1-r1.ebuild | 64 +++++++++++++++++++++++++++++
11 1 file changed, 64 insertions(+)
12
13 diff --git a/dev-python/pycurl/pycurl-7.19.5.1-r1.ebuild b/dev-python/pycurl/pycurl-7.19.5.1-r1.ebuild
14 new file mode 100644
15 index 0000000..a4c4b72
16 --- /dev/null
17 +++ b/dev-python/pycurl/pycurl-7.19.5.1-r1.ebuild
18 @@ -0,0 +1,64 @@
19 +# Copyright 1999-2015 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +EAPI=5
23 +
24 +# The selftests fail with pypy, and urlgrabber segfaults for me.
25 +PYTHON_COMPAT=( python2_7 python3_{3,4} )
26 +
27 +inherit distutils-r1
28 +
29 +DESCRIPTION="python binding for curl/libcurl"
30 +HOMEPAGE="https://github.com/pycurl/pycurl https://pypi.python.org/pypi/pycurl"
31 +SRC_URI="http://pycurl.sourceforge.net/download/${P}.tar.gz"
32 +
33 +LICENSE="LGPL-2.1"
34 +SLOT="0"
35 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
36 +IUSE="curl_ssl_gnutls curl_ssl_libressl curl_ssl_nss +curl_ssl_openssl examples ssl test"
37 +
38 +# Depend on a curl with curl_ssl_* USE flags.
39 +# libcurl must not be using an ssl backend we do not support.
40 +# If the libcurl ssl backend changes pycurl should be recompiled.
41 +# If curl uses gnutls, depend on at least gnutls 2.11.0 so that pycurl
42 +# does not need to initialize gcrypt threading and we do not need to
43 +# explicitly link to libgcrypt.
44 +RDEPEND=">=net-misc/curl-7.25.0-r1[ssl=]
45 + ssl? (
46 + net-misc/curl[curl_ssl_gnutls(-)=,curl_ssl_libressl(-)=,curl_ssl_nss(-)=,curl_ssl_openssl(-)=,-curl_ssl_axtls(-),-curl_ssl_cyassl(-),-curl_ssl_polarssl(-)]
47 + curl_ssl_gnutls? ( >=net-libs/gnutls-2.11.0 ) )"
48 +
49 +# bottle-0.12.7: https://github.com/pycurl/pycurl/issues/180
50 +# bottle-0.12.7: https://github.com/defnull/bottle/commit/f35197e2a18de1672831a70a163fcfd38327a802
51 +DEPEND="${RDEPEND}
52 + test? (
53 + dev-python/nose[${PYTHON_USEDEP}]
54 + >=dev-python/bottle-0.12.7[${PYTHON_USEDEP}]
55 + )"
56 +# Needed for individual runs of testsuite by python impls.
57 +DISTUTILS_IN_SOURCE_BUILD=1
58 +
59 +python_prepare_all() {
60 + sed -e "/setup_args\['data_files'\] = /d" -i setup.py || die
61 + distutils-r1_python_prepare_all
62 +}
63 +
64 +python_configure_all() {
65 + # Override faulty detection in setup.py, bug 510974.
66 + export PYCURL_SSL_LIBRARY=${CURL_SSL/libressl/openssl}
67 +}
68 +
69 +python_compile() {
70 + python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
71 + distutils-r1_python_compile
72 +}
73 +
74 +python_test() {
75 + emake -j1 do-test
76 +}
77 +
78 +python_install_all() {
79 + local HTML_DOCS=( doc/. )
80 + use examples && local EXAMPLES=( examples/. )
81 + distutils-r1_python_install_all
82 +}