suitesparse: 7.5.0 -> 7.5.1

This commit is contained in:
Tim Biermann 2024-01-14 15:26:18 +01:00
parent 9a384976d0
commit 97a9ff6845
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 14 additions and 16 deletions

View File

@ -207,8 +207,8 @@ lrwxrwxrwx root/root usr/lib/libsuitesparse_mongoose.so -> libsuitesparse_mongoo
-rwxr-xr-x root/root usr/lib/libsuitesparse_mongoose.so.3
-rw-r--r-- root/root usr/lib/libsuitesparseconfig.a
lrwxrwxrwx root/root usr/lib/libsuitesparseconfig.so -> libsuitesparseconfig.so.7
lrwxrwxrwx root/root usr/lib/libsuitesparseconfig.so.7 -> libsuitesparseconfig.so.7.5.0
-rwxr-xr-x root/root usr/lib/libsuitesparseconfig.so.7.5.0
lrwxrwxrwx root/root usr/lib/libsuitesparseconfig.so.7 -> libsuitesparseconfig.so.7.5.1
-rwxr-xr-x root/root usr/lib/libsuitesparseconfig.so.7.5.1
-rw-r--r-- root/root usr/lib/libumfpack.a
lrwxrwxrwx root/root usr/lib/libumfpack.so -> libumfpack.so.6
lrwxrwxrwx root/root usr/lib/libumfpack.so.6 -> libumfpack.so.6.3.1

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3/GmrSFnNcQkYj7UrknPhw0oqRSq7T/FSMOY1NMWdtcHQqFdFiBzGgvQh6HsSEyxl0Iw/0IXe9msFaompzxZUQc=
SHA256 (Pkgfile) = 24292ee9ae0d345e0ffc9b1a4967e706aa2fc50185e8bdf209846b567043f880
SHA256 (.footprint) = faf46ce3cbe5a8c7e3b64e7ae2a6b792960a055ef780d7d2c42b8557cd056ae4
SHA256 (suitesparse-7.5.0.tar.gz) = 9090ead43f462737369f1b6f8f269decc7f98adbb3276db299a2d4f18d481328
RWSagIOpLGJF36muHqxcghFUYn91DWemZxDO9iyPPO+wLbnOtHIKf+LPMD3qPUOGWgj7m5+1lRIXle2jGLzvq6nLwiU5iU/GEQk=
SHA256 (Pkgfile) = f7b4729869579a620c47fa49ba6fd183ece085108b216d229695c2812cfb9bbe
SHA256 (.footprint) = 458e1dddfba409fec8ad73c4d263204f746901dcddaa4dd8f6b6ce0d7d5d56ce
SHA256 (suitesparse-7.5.1.tar.gz) = dccfb5f75aa83fe2edb4eb2462fc984a086c82bad8433f63c31048d84b565d74

View File

@ -4,21 +4,19 @@
# Depends on: lapack metis
name=suitesparse
version=7.5.0
version=7.5.1
release=1
source=(https://github.com/DrTimothyAldenDavis/SuiteSparse/archive/v$version/$name-$version.tar.gz)
build() {
cd SuiteSparse-$version
CMAKE_OPTIONS="-G Ninja \
-D BLA_VENDOR=Generic \
cmake -S SuiteSparse-$version -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_C_FLAGS_RELEASE=\"$CFLAGS -ffat-lto-objects\" \
-D CMAKE_CXX_FLAGS_RELEASE=\"$CXXFLAGS -ffat-lto-objects\"" \
make
make DESTDIR=$PKG install
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS -ffat-lto-objects" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS -ffat-lto-objects" \
-D BLA_VENDOR=Generic \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
}