From owner-svn-ports-head@FreeBSD.ORG Thu May 15 13:41:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6B60F48C; Thu, 15 May 2014 13:41:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3E9D7292F; Thu, 15 May 2014 13:41:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4FDfJKV099242; Thu, 15 May 2014 13:41:19 GMT (envelope-from db@svn.freebsd.org) Received: (from db@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4FDfIac099240; Thu, 15 May 2014 13:41:18 GMT (envelope-from db@svn.freebsd.org) Message-Id: <201405151341.s4FDfIac099240@svn.freebsd.org> From: Diane Bruce Date: Thu, 15 May 2014 13:41:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r354126 - in head/math/py-numpy: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 May 2014 13:41:19 -0000 Author: db Date: Thu May 15 13:41:18 2014 New Revision: 354126 URL: http://svnweb.freebsd.org/changeset/ports/354126 QAT: https://qat.redports.org/buildarchive/r354126/ Log: - Fix compiler now that -Wl,B has been added to fortran link args Submitted by: me Modified: head/math/py-numpy/Makefile head/math/py-numpy/files/patch-numpy-f2py-f2py2e.py (contents, props changed) Modified: head/math/py-numpy/Makefile ============================================================================== --- head/math/py-numpy/Makefile Thu May 15 13:40:48 2014 (r354125) +++ head/math/py-numpy/Makefile Thu May 15 13:41:18 2014 (r354126) @@ -3,7 +3,7 @@ PORTNAME= numpy PORTVERSION= 1.8.0 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= math python MASTER_SITES= http://docs.scipy.org/doc/${DISTNAME:C/\..$/.0/}/:doc \ Modified: head/math/py-numpy/files/patch-numpy-f2py-f2py2e.py ============================================================================== --- head/math/py-numpy/files/patch-numpy-f2py-f2py2e.py Thu May 15 13:40:48 2014 (r354125) +++ head/math/py-numpy/files/patch-numpy-f2py-f2py2e.py Thu May 15 13:41:18 2014 (r354126) @@ -1,10 +1,10 @@ ---- numpy/f2py/f2py2e.py.orig 2012-01-25 06:59:14.651304791 -0600 -+++ numpy/f2py/f2py2e.py 2012-01-25 07:00:58.475075133 -0600 +--- numpy/f2py/f2py2e.py.orig 2013-10-30 13:31:41.000000000 -0500 ++++ numpy/f2py/f2py2e.py 2014-04-09 10:23:49.000000000 -0500 @@ -520,6 +520,7 @@ include_dirs, sources = filter_files('-I', '', sources, remove_prefix=1) library_dirs, sources = filter_files('-L', '', sources, remove_prefix=1) libraries, sources = filter_files('-l', '', sources, remove_prefix=1) -+ extra_link_args, sources = filter_files('-Wl,','',sources,remove_prefix=0) ++ extra_link_args, sources = filter_files('-Wl,|-B','',sources,remove_prefix=0) undef_macros, sources = filter_files('-U', '', sources, remove_prefix=1) define_macros, sources = filter_files('-D', '', sources, remove_prefix=1) using_numarray = 0