diff --git a/math/zimpl/Makefile b/math/zimpl/Makefile index 54d113377bcc..5f2ec9c2dc58 100644 --- a/math/zimpl/Makefile +++ b/math/zimpl/Makefile @@ -1,28 +1,28 @@ PORTNAME= zimpl DISTVERSIONPREFIX= v -DISTVERSION= 3.7.0 +DISTVERSION= 3.7.1 CATEGORIES= math MAINTAINER= yuri@FreeBSD.org COMMENT= Language to translate the LP models into .lp or .mps WWW= https://zimpl.zib.de \ https://github.com/scipopt/zimpl LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/LICENSE ONLY_FOR_ARCHS= amd64 i386 ONLY_FOR_ARCHS_REASON= missing make/make.linux.$${arch}.gnu.opt for other architectures BUILD_DEPENDS= bison:devel/bison LIB_DEPENDS= libgmp.so:math/gmp USES= cmake tar:tgz USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= scipopt CMAKE_ON= BUILD_SHARED_LIBS .include diff --git a/math/zimpl/distinfo b/math/zimpl/distinfo index a2a8ca96a292..783fdc036490 100644 --- a/math/zimpl/distinfo +++ b/math/zimpl/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1764037777 -SHA256 (scipopt-zimpl-v3.7.0_GH0.tar.gz) = a95771124823fd8ea38310a50314359041ba58e5812a105e3fa9a2e33d5cc18f -SIZE (scipopt-zimpl-v3.7.0_GH0.tar.gz) = 5275073 +TIMESTAMP = 1775812136 +SHA256 (scipopt-zimpl-v3.7.1_GH0.tar.gz) = 95f24de663321a86d2cdef28e085f23d7604086e7bd4218782353b2e65d943bc +SIZE (scipopt-zimpl-v3.7.1_GH0.tar.gz) = 5274948 diff --git a/math/zimpl/files/patch-CMakeLists.txt b/math/zimpl/files/patch-CMakeLists.txt index 9f0f37dc693d..a77beb74e748 100644 --- a/math/zimpl/files/patch-CMakeLists.txt +++ b/math/zimpl/files/patch-CMakeLists.txt @@ -1,13 +1,13 @@ - https://github.com/scipopt/zimpl/issues/1 ---- CMakeLists.txt.orig 2024-11-09 04:34:10 UTC +--- CMakeLists.txt.orig 2025-11-23 12:19:53 UTC +++ CMakeLists.txt -@@ -47,8 +47,6 @@ set(CMAKE_C_STANDARD 99) +@@ -49,8 +49,6 @@ set(CMAKE_C_STANDARD 99) # use C99 standard set(CMAKE_C_STANDARD 99) -set(CMAKE_C_VISIBILITY_PRESET hidden) -set(CMAKE_VISIBILITY_INLINES_HIDDEN 1) option(ZLIB "use ZLIB" ON) option(SANITIZE_ADDRESS "should the address sanitizer be enabled in debug mode if available" OFF) diff --git a/math/zimpl/files/patch-src_CMakeLists.txt b/math/zimpl/files/patch-src_CMakeLists.txt index 7e631bb81820..d5e4c817ba42 100644 --- a/math/zimpl/files/patch-src_CMakeLists.txt +++ b/math/zimpl/files/patch-src_CMakeLists.txt @@ -1,19 +1,19 @@ - Allow to build shared libs. ---- src/CMakeLists.txt.orig 2024-09-13 05:08:28 UTC +--- src/CMakeLists.txt.orig 2025-11-23 12:19:53 UTC +++ src/CMakeLists.txt -@@ -118,12 +118,12 @@ endif() +@@ -119,12 +119,12 @@ endif() endif() #create zimpl with pic -add_library(libzimpl-pic STATIC ${libsources}) -+add_library(libzimpl-pic ${libsources}) ++add_library(libzimpl-pic ${libsources} ${binsources}) set_target_properties(libzimpl-pic PROPERTIES POSITION_INDEPENDENT_CODE on) target_link_libraries(libzimpl-pic ${libs}) #create zimpl without pic -add_library(libzimpl STATIC ${libsources}) -+add_library(libzimpl ${libsources}) ++add_library(libzimpl ${libsources} ${binsources}) target_link_libraries(libzimpl ${libs}) #create zimpl binary