git: 82129b064713 - main - devel/py-cadquery-pywrap: Switch to llvm11
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 20 Sep 2023 17:07:17 UTC
The branch main has been updated by bofh:
URL: https://cgit.FreeBSD.org/ports/commit/?id=82129b064713d0be55cb553bb601f146f063e6f9
commit 82129b064713d0be55cb553bb601f146f063e6f9
Author: Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2023-09-20 14:27:38 +0000
Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2023-09-20 17:07:11 +0000
devel/py-cadquery-pywrap: Switch to llvm11
The port had a runtime dependency on llvm10 however this port also has a
runtime dependency on py-clang which is as of now version 11 that means
that it is based on llvm11/clang11. So in effort to remove llvm10 switch
to llvm11. In case this breaks runtime upstream has more recent versions
which supports llvm13.
PR: 273964
Reported by: brooks
Approved by: portmgr (blanket)
---
devel/py-cadquery-pywrap/Makefile | 11 +++--------
1 file changed, 3 insertions(+), 8 deletions(-)
diff --git a/devel/py-cadquery-pywrap/Makefile b/devel/py-cadquery-pywrap/Makefile
index 9f4f57946079..9090fa3d6db6 100644
--- a/devel/py-cadquery-pywrap/Makefile
+++ b/devel/py-cadquery-pywrap/Makefile
@@ -1,7 +1,7 @@
PORTNAME= cadquery-pywrap
DISTVERSIONPREFIX= occt
DISTVERSION= 7.5
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= devel python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -24,18 +24,13 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}clang>0:devel/py-clang@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}schema>0:devel/py-schema@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}toml>0:textproc/py-toml@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}toposort>0:devel/py-toposort@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}tqdm>0:misc/py-tqdm@${PY_FLAVOR} \
- llvm${LLVMVER}>0:devel/llvm${LLVMVER} \
- pybind11>=2.6:devel/pybind11
-
-USES= python
+ ${PYTHON_PKGNAMEPREFIX}tqdm>0:misc/py-tqdm@${PY_FLAVOR}
+USES= llvm:11,run python
USE_GITHUB= yes
GH_ACCOUNT= CadQuery
GH_PROJECT= pywrap
GH_TAGNAME= e8c7bc9
-
USE_PYTHON= autoplist concurrent distutils
-LLVMVER= 10
.include <bsd.port.mk>