Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Jan 2025 09:55:00 GMT
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 3223c498f423 - main - biology/py-scikit-bio: Broken where OpenMP isn't available
Message-ID:  <202501040955.5049t0lI001643@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by yuri:

URL: https://cgit.FreeBSD.org/ports/commit/?id=3223c498f42382fde416b7809e842aee917710b7

commit 3223c498f42382fde416b7809e842aee917710b7
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2025-01-04 09:54:36 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2025-01-04 09:54:36 +0000

    biology/py-scikit-bio: Broken where OpenMP isn't available
    
    Reported by:    fallout
---
 biology/py-scikit-bio/Makefile | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/biology/py-scikit-bio/Makefile b/biology/py-scikit-bio/Makefile
index 953b2c60e41b..03efdcfe9af3 100644
--- a/biology/py-scikit-bio/Makefile
+++ b/biology/py-scikit-bio/Makefile
@@ -12,6 +12,9 @@ LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE.txt
 
 BROKEN_aarch64=	fails to build: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size, see https://github.com/biocore/scikit-bio/issues/1816
+.if !exists(/usr/include/omp.h)
+BROKEN=		requires OpenMP support that is missing on this architecture
+.endif
 
 BUILD_DEPENDS=	${PYNUMPY} \
 		${PY_SETUPTOOLS} \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202501040955.5049t0lI001643>