From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B957B1381F3 for ; Sat, 14 Sep 2013 22:50:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53013E0A6E; Sat, 14 Sep 2013 22:50:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D0D5BE0A6E for ; Sat, 14 Sep 2013 22:50:12 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E3FE933E9AA for ; Sat, 14 Sep 2013 22:50:11 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2304) id AE9872004C; Sat, 14 Sep 2013 22:50:10 +0000 (UTC) From: "Mike Gilbert (floppym)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, floppym@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pycurl: pycurl-7.19.0-r3.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: pycurl-7.19.0-r3.ebuild ChangeLog X-VCS-Directories: dev-python/pycurl X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130914225010.AE9872004C@flycatcher.gentoo.org> Date: Sat, 14 Sep 2013 22:50:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: fa329e40-778c-40b5-a39c-8f0fc13dbc16 X-Archives-Hash: b7697ed3b9f808f7055372d79bb4cd8c floppym 13/09/14 22:50:10 Modified: pycurl-7.19.0-r3.ebuild ChangeLog Log: Add -fno-strict-aliasing for python2. (Portage version: 2.2.4/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4) Revision Changes Path 1.12 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.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycurl/pycurl-7.19.0-r3.ebuild?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycurl/pycurl-7.19.0-r3.ebuild?r1=1.11&r2=1.12 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.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- pycurl-7.19.0-r3.ebuild 7 Sep 2013 20:10:54 -0000 1.11 +++ pycurl-7.19.0-r3.ebuild 14 Sep 2013 22:50:10 -0000 1.12 @@ -1,6 +1,6 @@ # Copyright 1999-2013 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.11 2013/09/07 20:10:54 ago Exp $ +# $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 $ EAPI=5 @@ -42,6 +42,11 @@ distutils-r1_python_prepare_all } +python_compile() { + python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing" + distutils-r1_python_compile +} + python_test() { "${PYTHON}" tests/test_internals.py -q || die "Tests fail with ${EPYTHON}" } 1.91 dev-python/pycurl/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycurl/ChangeLog?rev=1.91&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycurl/ChangeLog?rev=1.91&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycurl/ChangeLog?r1=1.90&r2=1.91 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pycurl/ChangeLog,v retrieving revision 1.90 retrieving revision 1.91 diff -u -r1.90 -r1.91 --- ChangeLog 7 Sep 2013 20:10:54 -0000 1.90 +++ ChangeLog 14 Sep 2013 22:50:10 -0000 1.91 @@ -1,6 +1,9 @@ # ChangeLog for dev-python/pycurl # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pycurl/ChangeLog,v 1.90 2013/09/07 20:10:54 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pycurl/ChangeLog,v 1.91 2013/09/14 22:50:10 floppym Exp $ + + 14 Sep 2013; Mike Gilbert pycurl-7.19.0-r3.ebuild: + Add -fno-strict-aliasing for python2. 07 Sep 2013; Agostino Sarubbo pycurl-7.19.0-r3.ebuild: Stable for sparc, wrt bug #480650