floppym 14/05/28 15:20:44
Modified: pycurl-7.19.3.1.ebuild pycurl-7.19.0-r3.ebuild
ChangeLog
Log:
Override faulty curl ssl detection in setup.py, bug 510974 by Hanspeter
Spalinger.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key
0BBEEA1FEA4843A4)
Revision Changes Path
1.3 dev-python/pycurl/pycurl-7.19.3.1.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycurl/pycurl-7.19.3.1.ebuild?rev=1.3&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycurl/pycurl-7.19.3.1.ebuild?rev=1.3&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycurl/pycurl-7.19.3.1.ebuild?r1=1.2&r2=1.3
Index: pycurl-7.19.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pycurl/pycurl-7.19.3.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pycurl-7.19.3.1.ebuild 17 May 2014 14:47:05 -0000 1.2
+++ pycurl-7.19.3.1.ebuild 28 May 2014 15:20:44 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pycurl/pycurl-7.19.3.1.ebuild,v
1.2 2014/05/17 14:47:05 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pycurl/pycurl-7.19.3.1.ebuild,v
1.3 2014/05/28 15:20:44 floppym Exp $
EAPI=5
@@ -38,6 +38,11 @@
distutils-r1_python_prepare_all
}
+src_configure() {
+ # Override faulty detection in setup.py, bug 510974.
+ export PYCURL_SSL_LIBRARY=${CURL_SSL}
+}
+
python_compile() {
python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
distutils-r1_python_compile
1.13 dev-python/pycurl/pycurl-7.19.0-r3.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycurl/pycurl-7.19.0-r3.ebuild?rev=1.13&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycurl/pycurl-7.19.0-r3.ebuild?rev=1.13&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycurl/pycurl-7.19.0-r3.ebuild?r1=1.12&r2=1.13
Index: pycurl-7.19.0-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pycurl/pycurl-7.19.0-r3.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- pycurl-7.19.0-r3.ebuild 14 Sep 2013 22:50:10 -0000 1.12
+++ pycurl-7.19.0-r3.ebuild 28 May 2014 15:20:44 -0000 1.13
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pycurl/pycurl-7.19.0-r3.ebuild,v
1.12 2013/09/14 22:50:10 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pycurl/pycurl-7.19.0-r3.ebuild,v
1.13 2014/05/28 15:20:44 floppym Exp $
EAPI=5
@@ -42,6 +42,11 @@
distutils-r1_python_prepare_all
}
+src_configure() {
+ # Override faulty detection in setup.py, bug 510974.
+ export PYCURL_SSL_LIBRARY=${CURL_SSL}
+}
+
python_compile() {
python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
distutils-r1_python_compile
1.94 dev-python/pycurl/ChangeLog
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycurl/ChangeLog?rev=1.94&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycurl/ChangeLog?rev=1.94&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycurl/ChangeLog?r1=1.93&r2=1.94
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pycurl/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog 17 May 2014 14:47:05 -0000 1.93
+++ ChangeLog 28 May 2014 15:20:44 -0000 1.94
@@ -1,6 +1,11 @@
# ChangeLog for dev-python/pycurl
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pycurl/ChangeLog,v 1.93
2014/05/17 14:47:05 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pycurl/ChangeLog,v 1.94
2014/05/28 15:20:44 floppym Exp $
+
+ 28 May 2014; Mike Gilbert <[email protected]> pycurl-7.19.0-r3.ebuild,
+ pycurl-7.19.3.1.ebuild:
+ Override faulty curl ssl detection in setup.py, bug 510974 by Hanspeter
+ Spalinger.
17 May 2014; Ian Delaney <[email protected]> pycurl-7.19.3.1.ebuild:
restrict test due to extensive keyword deficits in new test deps