summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
Diffstat (limited to 'math')
-rw-r--r--math/Makefile1
-rw-r--r--math/R-cran-Deriv/Makefile2
-rw-r--r--math/R-cran-Deriv/distinfo6
-rw-r--r--math/libpoly/Makefile4
-rw-r--r--math/py-fastdtw/Makefile31
-rw-r--r--math/py-fastdtw/distinfo3
-rw-r--r--math/py-fastdtw/pkg-descr5
7 files changed, 6 insertions, 46 deletions
diff --git a/math/Makefile b/math/Makefile
index a8d9a3336373..034758a97829 100644
--- a/math/Makefile
+++ b/math/Makefile
@@ -975,7 +975,6 @@
SUBDIR += py-evalidate
SUBDIR += py-faiss
SUBDIR += py-fastcluster
- SUBDIR += py-fastdtw
SUBDIR += py-fenics-basix
SUBDIR += py-fenics-ffcx
SUBDIR += py-fenics-ufl
diff --git a/math/R-cran-Deriv/Makefile b/math/R-cran-Deriv/Makefile
index 884733f42c82..f9cb49e963d6 100644
--- a/math/R-cran-Deriv/Makefile
+++ b/math/R-cran-Deriv/Makefile
@@ -1,5 +1,5 @@
PORTNAME= Deriv
-PORTVERSION= 4.1.6
+PORTVERSION= 4.2.0
CATEGORIES= math
DISTNAME= ${PORTNAME}_${PORTVERSION}
diff --git a/math/R-cran-Deriv/distinfo b/math/R-cran-Deriv/distinfo
index 6010c4fbb064..18a9bf2c4613 100644
--- a/math/R-cran-Deriv/distinfo
+++ b/math/R-cran-Deriv/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1726903945
-SHA256 (Deriv_4.1.6.tar.gz) = 01b82a52dc5eb395142c17e062878f5022b68a34725ba0dcdf55c1f61ea4ba72
-SIZE (Deriv_4.1.6.tar.gz) = 37831
+TIMESTAMP = 1750650410
+SHA256 (Deriv_4.2.0.tar.gz) = 210394e7f90fe6fd943d37e8b1953c5a3c10c96fbdc5bbac7660aa9d112a1f63
+SIZE (Deriv_4.2.0.tar.gz) = 38752
diff --git a/math/libpoly/Makefile b/math/libpoly/Makefile
index 6a254cb70cc9..0e85bafaadcb 100644
--- a/math/libpoly/Makefile
+++ b/math/libpoly/Makefile
@@ -7,7 +7,7 @@ MAINTAINER= yuri@FreeBSD.org
COMMENT= C library for manipulating polynomials
WWW= https://github.com/SRI-CSL/libpoly
-LICENSE= GPLv3
+LICENSE= LGPL3
LICENSE_FILE= ${WRKSRC}/LICENCE
LIB_DEPENDS= libgmp.so:math/gmp
@@ -23,7 +23,7 @@ CMAKE_OFF= LIBPOLY_BUILD_PYTHON_API LIBPOLY_BUILD_STATIC LIBPOLY_BUILD_STATIC_PI
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD
-CFLAGS+= -Wno-error=unused-but-set-variable
+CFLAGS+= -Wno-error=unused-but-set-variable
.endif
# tests as of 0.2.0: 100% tests passed, 0 tests failed out of 14
diff --git a/math/py-fastdtw/Makefile b/math/py-fastdtw/Makefile
deleted file mode 100644
index 5fbe74845589..000000000000
--- a/math/py-fastdtw/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-PORTNAME= fastdtw
-DISTVERSIONPREFIX= v
-DISTVERSION= 0.3.4
-PORTREVISION= 3
-CATEGORIES= math python
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER= yuri@FreeBSD.org
-COMMENT= Dynamic Time Warping (DTW) algorithm with an O(N) complexity
-WWW= https://github.com/slaypni/fastdtw
-
-LICENSE= MIT
-LICENSE_FILE= ${WRKSRC}/LICENSE
-
-DEPRECATED= Depends on expired devel/py-pytest-runner
-EXPIRATION_DATE=2025-03-31
-
-BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>0:devel/py-pytest-runner@${PY_FLAVOR}
-RUN_DEPENDS= ${PYNUMPY}
-TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR}
-
-USES= python
-
-USE_GITHUB= yes # tests are only on github
-GH_ACCOUNT= slaypni
-USE_PYTHON= distutils cython autoplist pytest # tests fail: https://github.com/slaypni/fastdtw/issues/23
-
-post-install:
- @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/fastdtw/_fastdtw${PYTHON_TAG}.so
-
-.include <bsd.port.mk>
diff --git a/math/py-fastdtw/distinfo b/math/py-fastdtw/distinfo
deleted file mode 100644
index e8ce8867fb1c..000000000000
--- a/math/py-fastdtw/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1570521412
-SHA256 (slaypni-fastdtw-v0.3.4_GH0.tar.gz) = da9bea6a9bc3c3a3424de1d82d3ce7d0545514ed255af16558ef4ddce28f36a7
-SIZE (slaypni-fastdtw-v0.3.4_GH0.tar.gz) = 127976
diff --git a/math/py-fastdtw/pkg-descr b/math/py-fastdtw/pkg-descr
deleted file mode 100644
index b8d8c587ff66..000000000000
--- a/math/py-fastdtw/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-Python implementation of FastDTW [1], which is an approximate Dynamic Time
-Warping (DTW) algorithm that provides optimal or near-optimal alignments
-with an O(N) time and memory complexity.
-
-[1] http://cs.fit.edu/~pkc/papers/tdm04.pdf