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/pycurl/
Date: Wed, 02 Sep 2020 22:05:12
Message-Id: 1599084305.f9c1602f8817a8ff0cb88f54da0c086dc319394b.mgorny@gentoo
1 commit: f9c1602f8817a8ff0cb88f54da0c086dc319394b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 2 21:55:34 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 2 22:05:05 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9c1602f
7
8 dev-python/pycurl: Bump to 7.43.0.6
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pycurl/Manifest | 1 +
13 dev-python/pycurl/pycurl-7.43.0.6.ebuild | 85 ++++++++++++++++++++++++++++++++
14 2 files changed, 86 insertions(+)
15
16 diff --git a/dev-python/pycurl/Manifest b/dev-python/pycurl/Manifest
17 index f327296b94d..8dd8f303804 100644
18 --- a/dev-python/pycurl/Manifest
19 +++ b/dev-python/pycurl/Manifest
20 @@ -1 +1,2 @@
21 DIST pycurl-7.43.0.5.tar.gz 216877 BLAKE2B 57605fa3426a76e0cdcc1bb4f247985a27439d67d32769945332f94c49eead7fadb2847accf98f0d0994e461fc9d6fd100a181ff6d3ac0765dad31d546a75ff4 SHA512 835ed6cca25d2dd3e7084f905f3b0b082d4af04761fa9d4dc4714865863a97c095c08e6f55ada91b9f60ccad7838328a82fb2add8108aea12056200cf1f12845
22 +DIST pycurl-7.43.0.6.tar.gz 222895 BLAKE2B 5a923a3d7a57aa553361206fd0c0e43e6ad66a70af72540c08a29903a9a71ed6b9460c06ab6e50fc2a01d1badd45edf41eb36f6dd97fca3c83bef30f12e41c40 SHA512 5625d9e38159fb785afaf539372a8ac658d9118fb25f581f11629859fde400b6fccf65e03a19e182534a78169531304639b1e6f1bfdd2cb09bce95d581b52850
23
24 diff --git a/dev-python/pycurl/pycurl-7.43.0.6.ebuild b/dev-python/pycurl/pycurl-7.43.0.6.ebuild
25 new file mode 100644
26 index 00000000000..b9e03ef669f
27 --- /dev/null
28 +++ b/dev-python/pycurl/pycurl-7.43.0.6.ebuild
29 @@ -0,0 +1,85 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +DISTUTILS_USE_SETUPTOOLS=manual
36 +# The selftests fail with pypy, and urlgrabber segfaults for me.
37 +PYTHON_COMPAT=( python3_{6,7,8,9} )
38 +
39 +inherit distutils-r1 toolchain-funcs
40 +
41 +DESCRIPTION="python binding for curl/libcurl"
42 +HOMEPAGE="
43 + https://github.com/pycurl/pycurl
44 + https://pypi.org/project/pycurl/
45 + http://pycurl.io/"
46 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
47 +
48 +LICENSE="LGPL-2.1"
49 +SLOT="0"
50 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
51 +IUSE="curl_ssl_gnutls curl_ssl_libressl curl_ssl_nss +curl_ssl_openssl examples ssl test"
52 +RESTRICT="!test? ( test )"
53 +
54 +# Depend on a curl with curl_ssl_* USE flags.
55 +# libcurl must not be using an ssl backend we do not support.
56 +# If the libcurl ssl backend changes pycurl should be recompiled.
57 +# If curl uses gnutls, depend on at least gnutls 2.11.0 so that pycurl
58 +# does not need to initialize gcrypt threading and we do not need to
59 +# explicitly link to libgcrypt.
60 +RDEPEND="
61 + >=net-misc/curl-7.25.0-r1:=[ssl=]
62 + ssl? (
63 + net-misc/curl[curl_ssl_gnutls(-)=,curl_ssl_libressl(-)=,curl_ssl_nss(-)=,curl_ssl_openssl(-)=,-curl_ssl_axtls(-),-curl_ssl_cyassl(-)]
64 + curl_ssl_gnutls? ( >=net-libs/gnutls-2.11.0:= )
65 + curl_ssl_libressl? ( dev-libs/libressl:= )
66 + curl_ssl_openssl? ( dev-libs/openssl:= )
67 + )"
68 +
69 +# bottle-0.12.7: https://github.com/pycurl/pycurl/issues/180
70 +# bottle-0.12.7: https://github.com/defnull/bottle/commit/f35197e2a18de1672831a70a163fcfd38327a802
71 +DEPEND="${RDEPEND}
72 + test? (
73 + dev-python/bottle[${PYTHON_USEDEP}]
74 + dev-python/flaky[${PYTHON_USEDEP}]
75 + dev-python/nose[${PYTHON_USEDEP}]
76 + net-misc/curl[curl_ssl_gnutls(-)=,curl_ssl_libressl(-)=,curl_ssl_nss(-)=,curl_ssl_openssl(-)=,-curl_ssl_axtls(-),-curl_ssl_cyassl(-),http2]
77 + >=dev-python/bottle-0.12.7[${PYTHON_USEDEP}]
78 + )"
79 +
80 +python_prepare_all() {
81 + sed -e "/setup_args\['data_files'\] = /d" -i setup.py || die
82 + # disable automagic use of setuptools
83 + sed -e 's:import wheel:raise ImportError:' -i setup.py || die
84 + # these tests are broken with newer versions of bottle
85 + sed -e 's:test.*_invalid_utf8:_&:' -i tests/getinfo_test.py || die
86 + distutils-r1_python_prepare_all
87 +}
88 +
89 +python_configure_all() {
90 + # Override faulty detection in setup.py, bug 510974.
91 + export PYCURL_SSL_LIBRARY=${CURL_SSL/libressl/openssl}
92 +}
93 +
94 +src_test() {
95 + emake -C tests/fake-curl/libcurl CC="$(tc-getCC)"
96 +
97 + distutils-r1_src_test
98 +}
99 +
100 +python_compile() {
101 + python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
102 + distutils-r1_python_compile
103 +}
104 +
105 +python_test() {
106 + nosetests -a '!standalone,!gssapi' -v --with-flaky || die "Tests fail with ${EPYTHON}"
107 + nosetests -a 'standalone' -v --with-flaky || die "Tests fail with ${EPYTHON}"
108 +}
109 +
110 +python_install_all() {
111 + local HTML_DOCS=( doc/. )
112 + use examples && dodoc -r examples
113 + distutils-r1_python_install_all
114 +}