From 0d89aa65aed48dc938edd2543f6022ca3a68198c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= Date: Fri, 12 Jan 2024 18:41:24 -0300 Subject: [PATCH 1/2] SuiteSparse: update to 7.5.1. --- srcpkgs/SuiteSparse/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/SuiteSparse/template b/srcpkgs/SuiteSparse/template index 4bc3f41d0f7ac..32520a2edfb40 100644 --- a/srcpkgs/SuiteSparse/template +++ b/srcpkgs/SuiteSparse/template @@ -1,6 +1,6 @@ # Template file for 'SuiteSparse' pkgname=SuiteSparse -version=7.4.0 +version=7.5.1 revision=1 build_style=cmake hostmakedepends="cmake gcc-fortran" @@ -12,7 +12,7 @@ license="custom:multiple" homepage="https://people.engr.tamu.edu/davis/suitesparse.html" changelog="https://raw.githubusercontent.com/DrTimothyAldenDavis/SuiteSparse/master/ChangeLog" distfiles="https://github.com/DrTimothyAldenDavis/SuiteSparse/archive/refs/tags/v${version}.tar.gz" -checksum=f9a5cc2316a967198463198f7bf10fb8c4332de6189b0e405419a7092bc921b7 +checksum=dccfb5f75aa83fe2edb4eb2462fc984a086c82bad8433f63c31048d84b565d74 build_options="openblas" From d407c871d1722fd9d79e5d966e596bb04402771d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= Date: Mon, 15 Jan 2024 14:12:19 -0300 Subject: [PATCH 2/2] python3-cvxopt: fix building on i686 --- srcpkgs/python3-cvxopt/template | 2 ++ 1 file changed, 2 insertions(+) diff --git a/srcpkgs/python3-cvxopt/template b/srcpkgs/python3-cvxopt/template index 772426a59e6d3..cc961568f9db0 100644 --- a/srcpkgs/python3-cvxopt/template +++ b/srcpkgs/python3-cvxopt/template @@ -32,4 +32,6 @@ pre_build() { export CVXOPT_BUILD_FFTW=1 export CVXOPT_BLAS_LIB=$(vopt_if openblas 'openblas' 'blas;gslcblas') export CVXOPT_LAPACK_LIB=$(vopt_if openblas 'openblas' 'lapack') + # setup.py gets this wrong for i686 (and other 32 bit?) + export CVXOPT_SUITESPARSE_INC_DIR=${XBPS_CROSS_BASE}/usr/include/suitesparse }