MFH: r523016

math/gau2grid: remove -march=native, unbreak on i386 and powerpc64

This port added -march=native, which was against ports tree compliance, broke run-time on some amd64 and broke building on non-x86.

I have verified that it builds correctly on i386 and powerpc64 (provided -march=native is removed). It probably also builds on other architectures.

Reviewed by:	linimon

Approved by:	portmgr (fix build blanket)
This commit is contained in:
Piotr Kubaj 2020-01-14 14:20:58 +00:00
parent 183d7d260c
commit d2ea5f2bf1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/branches/2020Q1/; revision=523018

View File

@ -3,6 +3,7 @@
PORTNAME= gau2grid
DISTVERSIONPREFIX= v
DISTVERSION= 2.0.1
PORTREVISION= 1
CATEGORIES= math python
MAINTAINER= yuri@FreeBSD.org
@ -11,7 +12,7 @@ COMMENT= Fast computation of a gaussian and its derivative on a grid
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
ONLY_FOR_ARCHS= amd64
ONLY_FOR_ARCHS= amd64 i386 powerpc64
ONLY_FOR_ARCHS_REASON= BUG: ValueError: descr is not a valid dtype descriptor: '<f16' (see https://github.com/dgasmith/gau2grid/issues/25)
BUILD_DEPENDS= ${PYNUMPY}
@ -21,4 +22,6 @@ USE_GITHUB= yes
GH_ACCOUNT= dgasmith
USE_LDCONFIG= yes
CMAKE_OFF= ENABLE_XHOST
.include <bsd.port.mk>