Index: head/devel/py-numba/Makefile =================================================================== --- head/devel/py-numba/Makefile (revision 556531) +++ head/devel/py-numba/Makefile (revision 556532) @@ -1,30 +1,29 @@ # Created by: David Kalliecharan # $FreeBSD$ PORTNAME= numba -DISTVERSION= 0.47.0 -PORTREVISION= 3 +DISTVERSION= 0.51.2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= dave@dal.ca COMMENT= Optimizing compiler for Python using LLVM LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>1.11,1:math/py-numpy@${PY_FLAVOR} LIB_DEPENDS= libtbb.so:devel/tbb RUN_DEPENDS= ${PY_ENUM34} \ ${PYTHON_PKGNAMEPREFIX}llvmlite>=0.31.0:devel/py-llvmlite@${PY_FLAVOR} py27_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}singledispatch>0:devel/py-singledispatch@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}funcsigs>0:devel/py-funcsigs@${PY_FLAVOR} USES= compiler:c++11-lang python fortran localbase USE_PYTHON= distutils concurrent autoplist post-install: @${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR} -name "*.so" | ${XARGS} ${STRIP_CMD} .include Index: head/devel/py-numba/distinfo =================================================================== --- head/devel/py-numba/distinfo (revision 556531) +++ head/devel/py-numba/distinfo (revision 556532) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578995274 -SHA256 (numba-0.47.0.tar.gz) = c0703df0a0ea2e29fbef7937d9849cc4734253066cb5820c5d6e0851876e3b0a -SIZE (numba-0.47.0.tar.gz) = 1935290 +TIMESTAMP = 1604791415 +SHA256 (numba-0.51.2.tar.gz) = 16bd59572114adbf5f600ea383880d7b2071ae45477e84a24994e089ea390768 +SIZE (numba-0.51.2.tar.gz) = 2059680 Index: head/devel/py-numba/files/patch-numba_npyufunc_workqueue.c =================================================================== --- head/devel/py-numba/files/patch-numba_npyufunc_workqueue.c (revision 556531) +++ head/devel/py-numba/files/patch-numba_npyufunc_workqueue.c (nonexistent) @@ -1,14 +0,0 @@ ---- numba/npyufunc/workqueue.c.orig 2018-11-14 22:14:35 UTC -+++ numba/npyufunc/workqueue.c -@@ -19,7 +19,11 @@ race condition. - /* PThread */ - #include - #include -+#if defined(__FreeBSD__) -+#include -+#else - #include -+#endif - #define NUMBA_PTHREAD - #endif - Property changes on: head/devel/py-numba/files/patch-numba_npyufunc_workqueue.c ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/devel/py-numba/files/patch-numba_np_ufunc_workqueue.c =================================================================== --- head/devel/py-numba/files/patch-numba_np_ufunc_workqueue.c (nonexistent) +++ head/devel/py-numba/files/patch-numba_np_ufunc_workqueue.c (revision 556532) @@ -0,0 +1,15 @@ +--- numba/np/ufunc/workqueue.c.orig 2020-11-07 23:26:52 UTC ++++ numba/np/ufunc/workqueue.c +@@ -27,7 +27,11 @@ race conditions. + /* PThread */ + #include + #include +-#include ++#if defined(__FreeBSD__) ++# include ++#else ++# include ++#endif + #include + #include + #include Property changes on: head/devel/py-numba/files/patch-numba_np_ufunc_workqueue.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/py-numba/pkg-descr =================================================================== --- head/devel/py-numba/pkg-descr (revision 556531) +++ head/devel/py-numba/pkg-descr (revision 556532) @@ -1,7 +1,7 @@ -Numba gives you the power to speed up your applications with high performance -functions written directly in Python. With a few annotations, array-oriented -and math-heavy Python code can be just-in-time compiled to native machine -instructions, similar in performance to C, C++ and Fortran, without having to +Numba gives you the power to speed up your applications with high performance +functions written directly in Python. With a few annotations, array-oriented +and math-heavy Python code can be just-in-time compiled to native machine +instructions, similar in performance to C, C++ and Fortran, without having to switch languages or Python interpreters. WWW: https://numba.pydata.org/