public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Jerry James <loganjerry@gmail.com>
To: git-commits@fedoraproject.org
Subject: [rpms/scip] f45: Version 10.1.0
Date: Tue, 22 Sep 2026 20:11:16 GMT	[thread overview]
Message-ID: <179010787692.1.6064365090105638240.rpms-scip-16a2168de883@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/scip
Branch : f45
Commit : 16a2168de883c09516cf9570837d890a2512a1d9
Author : Jerry James <loganjerry@gmail.com>
Date   : 2026-09-22T09:00:12-06:00
Stats  : +68/-15 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/scip/c/16a2168de883c09516cf9570837d890a2512a1d9?branch=f45

Log:
Version 10.1.0

---
diff --git a/scip-zlib-ng.patch b/scip-zlib-ng.patch
index 124d352..4573a59 100644
--- a/scip-zlib-ng.patch
+++ b/scip-zlib-ng.patch
@@ -1,6 +1,47 @@
---- scip-10.0.3/CMakeLists.txt.orig	2026-07-06 14:58:27.226826828 -0600
-+++ scip-10.0.3/CMakeLists.txt	2026-07-06 14:59:03.634685065 -0600
-@@ -408,8 +408,11 @@ set(WITH_SCIPDEF on)
+--- scip-10.1.0/check/solchecker/src/mpsinput.cpp.orig	2026-09-17 01:57:15.000000000 -0600
++++ scip-10.1.0/check/solchecker/src/mpsinput.cpp	2026-09-21 10:54:23.132255510 -0600
+@@ -104,7 +104,7 @@ bool MpsInput::readLine()
+          do
+          {
+             memset((void*)buf, 0, MPS_MAX_LINELEN);
+-            if (NULL == gzgets(gzfp, buf, sizeof(buf)))
++            if (NULL == zng_gzgets(gzfp, buf, sizeof(buf)))
+                return false;
+             lineno++;
+          }
+@@ -939,7 +939,7 @@ bool MpsInput::readMps(
+    if( strcmp(_filename + pathlen - 3, ".gz") == 0 )
+    {
+       isZipped = true;
+-      gzfp = gzopen(_filename, "r");
++      gzfp = zng_gzopen(_filename, "r");
+       if( gzfp == NULL )
+       {
+          std::cout << "cannot open file <" << _filename << "> for reading" << std::endl;
+@@ -1001,7 +1001,7 @@ bool MpsInput::readMps(
+ 
+    if( isZipped )
+    {
+-      gzclose(gzfp);
++      zng_gzclose(gzfp);
+       gzfp = NULL;
+    }
+    else
+--- scip-10.1.0/check/solchecker/src/mpsinput.h.orig	2026-09-17 01:57:15.000000000 -0600
++++ scip-10.1.0/check/solchecker/src/mpsinput.h	2026-09-21 10:52:47.261267166 -0600
+@@ -11,7 +11,8 @@
+ #include <string>
+ #include <stdexcept>
+ #include <stdio.h>
+-#include <zlib.h>
++#define WITH_GZFILEOP
++#include <zlib-ng.h>
+ 
+ #define MPS_MAX_LINELEN  1024
+ 
+--- scip-10.1.0/CMakeLists.txt.orig	2026-09-21 10:43:50.518341607 -0600
++++ scip-10.1.0/CMakeLists.txt	2026-09-21 10:51:30.121330041 -0600
+@@ -412,8 +412,11 @@ set(WITH_SCIPDEF on)
  # ZLIB
  if(ZLIB OR AUTOBUILD)
      message(STATUS "Finding ZLIB")
@@ -14,8 +55,19 @@
          if((NOT ZLIB_FOUND) AND (NOT AUTOBUILD))
              message(FATAL_ERROR "ZLIB not found, try specifying ZLIB_DIR. ${AUTOBUILD_MSG}")
          endif()
---- scip-10.0.3/src/CMakeLists.txt.orig	2026-07-06 14:58:31.034892941 -0600
-+++ scip-10.0.3/src/CMakeLists.txt	2026-07-06 14:59:03.635040919 -0600
+--- scip-10.1.0/scripts/split_scip/all_includes.c.orig	2026-09-17 01:57:15.000000000 -0600
++++ scip-10.1.0/scripts/split_scip/all_includes.c	2026-09-21 10:54:46.251779965 -0600
+@@ -8,7 +8,7 @@
+ #endif
+ 
+ #ifdef SCIP_WITH_ZLIB
+-#include <zlib.h>
++#include <zlib-ng.h>
+ #endif
+ 
+ #include "lpi/lpi.h"
+--- scip-10.1.0/src/CMakeLists.txt.orig	2026-09-21 10:51:09.577931775 -0600
++++ scip-10.1.0/src/CMakeLists.txt	2026-09-21 10:51:30.122092069 -0600
 @@ -1147,7 +1147,7 @@ target_include_directories(libscip BEFOR
  target_link_libraries(libscip
      PRIVATE
@@ -34,8 +86,8 @@
      ${Readline_LIBRARY}
      ${GMP_LIBRARIES}
      ${MPFR_LIBRARIES}
---- scip-10.0.3/src/scip/fileio.c.orig	2026-07-02 02:45:36.000000000 -0600
-+++ scip-10.0.3/src/scip/fileio.c	2026-07-06 15:00:15.456780238 -0600
+--- scip-10.1.0/src/scip/fileio.c.orig	2026-09-17 01:57:15.000000000 -0600
++++ scip-10.1.0/src/scip/fileio.c	2026-09-21 10:51:30.122383823 -0600
 @@ -41,23 +41,24 @@
  #ifdef SCIP_WITH_ZLIB
  
@@ -145,8 +197,8 @@
  }
  
  
---- scip-10.0.3/src/scip/scip_general.c.orig	2026-07-02 02:45:36.000000000 -0600
-+++ scip-10.0.3/src/scip/scip_general.c	2026-07-06 14:59:03.635716478 -0600
+--- scip-10.1.0/src/scip/scip_general.c.orig	2026-09-17 01:57:15.000000000 -0600
++++ scip-10.1.0/src/scip/scip_general.c	2026-09-21 10:51:30.122854160 -0600
 @@ -87,7 +87,7 @@
  #endif
  
@@ -165,8 +217,8 @@
  #endif
  
  #ifdef SCIP_WITH_LAPACK
---- scip-10.0.3/src/xml/xmldef.h.orig	2026-07-02 02:45:36.000000000 -0600
-+++ scip-10.0.3/src/xml/xmldef.h	2026-07-06 14:59:03.636092119 -0600
+--- scip-10.1.0/src/xml/xmldef.h.orig	2026-09-17 01:57:15.000000000 -0600
++++ scip-10.1.0/src/xml/xmldef.h	2026-09-21 10:51:30.123277780 -0600
 @@ -49,12 +49,13 @@ extern "C" {
  
  

diff --git a/scip.spec b/scip.spec
index f5252ae..a779a0b 100644
--- a/scip.spec
+++ b/scip.spec
@@ -4,7 +4,7 @@
 %global giturl  https://github.com/scipopt/scip
 
 Name:           scip
-Version:        10.0.3
+Version:        10.1.0
 Release:        %autorelease
 Summary:        Solving Constraint Integer Programs
 
@@ -42,6 +42,7 @@ BuildOption(conf): -DTPI:STRING=omp
 # The Queens test passes in mock but fails in koji. Why???
 BuildOption(check): -E '(classical_20_0)|(examples-)|(normalized-t2001.13queen13.1111218308)'
 
+BuildRequires:  cmake(papilo)
 BuildRequires:  cmake(soplex)
 BuildRequires:  cmake(zimpl)
 BuildRequires:  gcc-c++
@@ -106,7 +107,7 @@ Requires:       libscip%{?_isa} = %{version}-%{release}
 Requires:       gmp-devel%{?_isa}
 Requires:       libnauty-devel%{?_isa}
 Requires:       mpfr-devel%{?_isa}
-Requires:       zlib-devel%{?_isa}
+Requires:       zlib-ng-devel%{?_isa}
 
 %description -n libscip-devel
 This package contains headers and library links for developing applications
@@ -187,7 +188,7 @@ export LD_LIBRARY_PATH=%{buildroot}%{_libdir}
 %files -n libscip
 %doc CHANGELOG README.md
 %license LICENSE
-%{_libdir}/libscip.so.10.0{,.*}
+%{_libdir}/libscip.so.10.1{,.*}
 
 %files -n libscip-devel
 %{_includedir}/scip/

diff --git a/sources b/sources
index 20c2d19..a823201 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (scip-10.0.3.tar.gz) = d610343e3cd9aafe8f6020db19f5d7466918643eb10b5a2d1f9912662213bf2f778ad65b0c139906e003a5b0f552db798a6b3ce9da46e726003c2141975661db
+SHA512 (scip-10.1.0.tar.gz) = e11fc956297c066ed8c1799717c67f8511300fbf2140a9e19d4914744bb307dabfde4b6d5d45afd4bbab87b07180556c891b3bc115f1f35adf173558b6097fc0

                 reply	other threads:[~2026-09-22 20:11 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=179010787692.1.6064365090105638240.rpms-scip-16a2168de883@fedoraproject.org \
    --to=loganjerry@gmail.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox