From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-899164-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id E568E138330
	for <garchives@archives.gentoo.org>; Tue, 30 Aug 2016 23:42:43 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id DCD51E0AA9;
	Tue, 30 Aug 2016 23:42:42 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 837E8E0AA9
	for <gentoo-commits@lists.gentoo.org>; Tue, 30 Aug 2016 23:42:42 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id ACA2C3407D0
	for <gentoo-commits@lists.gentoo.org>; Tue, 30 Aug 2016 23:42:40 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F8D9245C
	for <gentoo-commits@lists.gentoo.org>; Tue, 30 Aug 2016 23:42:37 +0000 (UTC)
From: "Mike Gilbert" <floppym@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" <floppym@gentoo.org>
Message-ID: <1472600539.a057d53552e566121889a566a862768e909d4d03.floppym@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/numpy/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/numpy/numpy-1.11.1.ebuild
X-VCS-Directories: dev-python/numpy/
X-VCS-Committer: floppym
X-VCS-Committer-Name: Mike Gilbert
X-VCS-Revision: a057d53552e566121889a566a862768e909d4d03
X-VCS-Branch: master
Date: Tue, 30 Aug 2016 23:42:37 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: e2218de8-29fe-426e-8c09-455529435b1c
X-Archives-Hash: bc0120439dc6574190f1cf5302cf3839

commit:     a057d53552e566121889a566a862768e909d4d03
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 30 23:42:19 2016 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Tue Aug 30 23:42:19 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a057d535

dev-python/numpy: disable "fix" for bug 590464

It's not clear what is creating the pyc files, and this is a pretty bad
hack around it.

Package-Manager: portage-2.3.0_p22

 dev-python/numpy/numpy-1.11.1.ebuild | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/dev-python/numpy/numpy-1.11.1.ebuild b/dev-python/numpy/numpy-1.11.1.ebuild
index 6ac6c96..720e6d0 100644
--- a/dev-python/numpy/numpy-1.11.1.ebuild
+++ b/dev-python/numpy/numpy-1.11.1.ebuild
@@ -114,14 +114,14 @@ python_prepare_all() {
 	# of being bytecode compiled as a proper subdir package.
 	# We trick the buildsystem into accepting it as a bytecode
 	# package by adding a setup.py and an empty __init__.py
-	cp numpy/{compat/setup.py,core/tests} || die
-	touch numpy/core/tests/__init__.py || die
-	sed \
-		-e 's:compat:tests:' \
-		-i numpy/core/tests/setup.py || die
-	sed \
-		-e "s:config\.add_data_dir('tests'):config\.add_subpackage('tests'):" \
-		-i numpy/core/setup.py || die
+	#cp numpy/{compat/setup.py,core/tests} || die
+	#touch numpy/core/tests/__init__.py || die
+	#sed \
+	#	-e 's:compat:tests:' \
+	#	-i numpy/core/tests/setup.py || die
+	#sed \
+	#	-e "s:config\.add_data_dir('tests'):config\.add_subpackage('tests'):" \
+	#	-i numpy/core/setup.py || die
 
 	distutils-r1_python_prepare_all
 }