diff options
author | Fernando ApesteguĂa <fernape@FreeBSD.org> | 2021-09-12 17:18:06 +0200 |
---|---|---|
committer | Fernando ApesteguĂa <fernape@FreeBSD.org> | 2021-10-03 19:47:27 +0200 |
commit | 07fb2d5e9d001934f1670d01aec1f536f14ebde2 (patch) | |
tree | f2f87572cb6aa68955a9057625ca5ed1acbb394a /math/py-theano/Makefile | |
parent | security/seahorse: Update to 41.0 (diff) |
*/*: Remove compiler:openmp from Mk/Uses/compiler.mk
The option implied a dependency on gcc but clang got openmp support long ago.
Remove compiler:openmp from Mk/Uses/compiler.mk
For ports using USE=compiler:openmp, just remove it and make them build with
clang.
Fix conditionals when necessary
Bump PORTREVISION where appropriate
If problem arises, they can be addressed by using USE_GCC=yes
An update to the Porter's Handbook will follow.
Approved by: portmgr (bapt)
Differential Revision: https://reviews.freebsd.org/D31971
Diffstat (limited to 'math/py-theano/Makefile')
-rw-r--r-- | math/py-theano/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/math/py-theano/Makefile b/math/py-theano/Makefile index 99c7e6c4c77f..85a928551040 100644 --- a/math/py-theano/Makefile +++ b/math/py-theano/Makefile @@ -2,6 +2,7 @@ PORTNAME= theano DISTVERSION= 1.0.5 +PORTREVISION= 1 CATEGORIES= math python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,7 +18,7 @@ RUN_DEPENDS= ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}scipy>=0.8.0:science/py-scipy@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR} -USES= compiler:openmp python:3.6+ +USES= python:3.6+ USE_PYTHON= concurrent distutils autoplist NO_ARCH= yes |