diff --git a/math/py-cvxopt/Makefile b/math/py-cvxopt/Makefile index f3fe377128dd..472afc2ef225 100644 --- a/math/py-cvxopt/Makefile +++ b/math/py-cvxopt/Makefile @@ -1,60 +1,59 @@ PORTNAME= cvxopt -DISTVERSION= 1.3.2 -PORTREVISION= 13 +DISTVERSION= 1.3.3 CATEGORIES= math python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= yuri@FreeBSD.org COMMENT= Python software for convex optimization WWW= https://github.com/cvxopt/cvxopt LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PY_SETUPTOOLS} \ ${PYTHON_PKGNAMEPREFIX}setuptools-scm>=6.2:devel/py-setuptools-scm@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} LIB_DEPENDS= libamd.so:math/suitesparse-amd \ libblas.so:math/blas \ libcholmod.so:math/suitesparse-cholmod \ libcolamd.so:math/suitesparse-colamd \ liblapack.so:math/lapack \ libsuitesparseconfig.so:math/suitesparse-config \ libumfpack.so:math/suitesparse-umfpack TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} USES= python localbase:ldflags cpe #USE_GITHUB= yes USE_PYTHON= pep517 autoplist CPE_VENDOR= cvxopt_project CFLAGS+= -I${LOCALBASE}/include/suitesparse OPTIONS_DEFINE= GSL FFTW GLPK DSDP OPTIONS_DEFAULT= GSL FFTW GLPK DSDP GSL_DESC= Build with GSL, the GNU scientific library GSL_MAKE_ENV= CVXOPT_BUILD_GSL=1 GSL_LIB_DEPENDS= libgsl.so:math/gsl FFTW_MAKE_ENV= CVXOPT_BUILD_FFTW=1 FFTW_LIB_DEPENDS= libfftw3.so:math/fftw3 GLPK_DESC= Build with GLPK, the linear programming solver GLPK_MAKE_ENV= CVXOPT_BUILD_GLPK=1 GLPK_LIB_DEPENDS= libglpk.so:math/glpk DSDP_DESC= Build with DSDP, the interior-point method DSDP_MAKE_ENV= CVXOPT_BUILD_DSDP=1 DSDP_CFLAGS= -I${LOCALBASE}/include/dsdp DSDP_LIB_DEPENDS= libdsdp.so:math/dsdp post-install: @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/cvxopt/*.so do-test: install @cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest .include diff --git a/math/py-cvxopt/distinfo b/math/py-cvxopt/distinfo index 186ee6c33fe8..afc8a1e0096f 100644 --- a/math/py-cvxopt/distinfo +++ b/math/py-cvxopt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1691648217 -SHA256 (cvxopt-1.3.2.tar.gz) = 3461fa42c1b2240ba4da1d985ca73503914157fc4c77417327ed6d7d85acdbe6 -SIZE (cvxopt-1.3.2.tar.gz) = 4108454 +TIMESTAMP = 1782228830 +SHA256 (cvxopt-1.3.3.tar.gz) = 8059cef41f1f115c87bc9b75fec9f86db95e7f0afcf03a52d619ba433e443bcb +SIZE (cvxopt-1.3.3.tar.gz) = 8869103 diff --git a/math/py-cvxopt/files/patch-pyproject.toml b/math/py-cvxopt/files/patch-pyproject.toml new file mode 100644 index 000000000000..a8a95b575479 --- /dev/null +++ b/math/py-cvxopt/files/patch-pyproject.toml @@ -0,0 +1,12 @@ +-- Relax setuptools version requirement from >=64 to >=63 to match the version available in the ports tree. +--- pyproject.toml.orig 2026-06-23 15:35:10 UTC ++++ pyproject.toml +@@ -26,7 +26,7 @@ Source = "https://github.com/cvxopt/cvxopt" + Source = "https://github.com/cvxopt/cvxopt" + + [build-system] +-requires = ["setuptools>=64", "setuptools-scm>=8"] ++requires = ["setuptools>=63", "setuptools-scm>=8"] + build-backend = "setuptools.build_meta" + + [tool.cibuildwheel]