Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package 4ti2 for openSUSE:Factory checked in 
at 2025-01-25 19:12:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/4ti2 (Old)
 and      /work/SRC/openSUSE:Factory/.4ti2.new.2316 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "4ti2"

Sat Jan 25 19:12:50 2025 rev:9 rq:1240220 version:1.6.10

Changes:
--------
--- /work/SRC/openSUSE:Factory/4ti2/4ti2.changes        2023-04-26 
17:26:21.425971776 +0200
+++ /work/SRC/openSUSE:Factory/.4ti2.new.2316/4ti2.changes      2025-01-25 
19:13:02.922055576 +0100
@@ -1,0 +2,8 @@
+Fri Jan 24 21:01:47 UTC 2025 - Jan Engelhardt <jeng...@inai.de>
+
+- Edit 4ti2-handle-prefix.diff [boo#1233672]
+  * Avoid eagerly following %fdupes-created symlinks when
+    determining what final program to call.
+  * Handle being called as /usr/bin/4ti2_circuits.
+
+-------------------------------------------------------------------

New:
----
  _scmsync.obsinfo
  build.specials.obscpio

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ 4ti2.spec ++++++
--- /var/tmp/diff_new_pack.SU01cU/_old  2025-01-25 19:13:03.906095968 +0100
+++ /var/tmp/diff_new_pack.SU01cU/_new  2025-01-25 19:13:03.910096133 +0100
@@ -84,10 +84,8 @@
 done
 %fdupes -s %buildroot/%_prefix
 
-%post   -n lib4ti2-0 -p /sbin/ldconfig
-%postun -n lib4ti2-0 -p /sbin/ldconfig
-%post   -n libzsolve0 -p /sbin/ldconfig
-%postun -n libzsolve0 -p /sbin/ldconfig
+%ldconfig_scriptlets -n lib4ti2-0
+%ldconfig_scriptlets -n libzsolve0
 
 %files
 %license COPYING

++++++ 4ti2-handle-prefix.patch ++++++
--- /var/tmp/diff_new_pack.SU01cU/_old  2025-01-25 19:13:03.946097610 +0100
+++ /var/tmp/diff_new_pack.SU01cU/_new  2025-01-25 19:13:03.950097774 +0100
@@ -12,42 +12,50 @@
 prefixed symlinks in /usr/bin, e.g. /usr/bin/4ti2_groebner ->
 /usr/libexec/4ti2/groebner.
 ---
- src/groebner/script.template    |    2 +-
- src/groebner/script.template.in |    2 +-
+ src/groebner/script.template    |    5 +++--
+ src/groebner/script.template.in |    5 +++--
  src/zsolve/graver.template      |    2 +-
  src/zsolve/hilbert.template     |    2 +-
- 4 files changed, 4 insertions(+), 4 deletions(-)
+ 4 files changed, 8 insertions(+), 6 deletions(-)
 
-Index: 4ti2-1.6.9/src/groebner/script.template
+Index: 4ti2-1.6.10/src/groebner/script.template
 ===================================================================
---- 4ti2-1.6.9.orig/src/groebner/script.template
-+++ 4ti2-1.6.9/src/groebner/script.template
-@@ -21,7 +21,7 @@
+--- 4ti2-1.6.10.orig/src/groebner/script.template
++++ 4ti2-1.6.10/src/groebner/script.template
+@@ -21,9 +21,10 @@
  # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA. 
  
  # We locate where this script is so we can call the executables.
 -SCRIPT=`which "$0"`
-+SCRIPT=$(realpath $(which "$0"))
++FUNCTION="${0##*/}"
++FUNCTION="${FUNCTION#4ti2_}"
++SCRIPT=$(realpath "$(which "$0")")
  DIR=`dirname "$SCRIPT"`
- FUNCTION=`basename "$SCRIPT"`
+-FUNCTION=`basename "$SCRIPT"`
  
-Index: 4ti2-1.6.9/src/groebner/script.template.in
+ # The default executable.
+ EXECUTABLE=4ti2int64
+Index: 4ti2-1.6.10/src/groebner/script.template.in
 ===================================================================
---- 4ti2-1.6.9.orig/src/groebner/script.template.in
-+++ 4ti2-1.6.9/src/groebner/script.template.in
-@@ -21,7 +21,7 @@
+--- 4ti2-1.6.10.orig/src/groebner/script.template.in
++++ 4ti2-1.6.10/src/groebner/script.template.in
+@@ -21,9 +21,10 @@
  # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA. 
  
  # We locate where this script is so we can call the executables.
 -SCRIPT=`which "$0"`
-+SCRIPT=$(realpath $(which "$0"))
++FUNCTION="${0##*/}"
++FUNCTION="${FUNCTION#4ti2_}"
++SCRIPT=$(realpath "$(which "$0")")
  DIR=`dirname "$SCRIPT"`
- FUNCTION=`basename "$SCRIPT"`
+-FUNCTION=`basename "$SCRIPT"`
  
-Index: 4ti2-1.6.9/src/zsolve/graver.template
+ # The default executable.
+ EXECUTABLE=@GROEBNER_DEFAULT_EXECUTABLE@
+Index: 4ti2-1.6.10/src/zsolve/graver.template
 ===================================================================
---- 4ti2-1.6.9.orig/src/zsolve/graver.template
-+++ 4ti2-1.6.9/src/zsolve/graver.template
+--- 4ti2-1.6.10.orig/src/zsolve/graver.template
++++ 4ti2-1.6.10/src/zsolve/graver.template
 @@ -2,7 +2,7 @@
  
  # We locate where this script is so we can call the executable zsolve which
@@ -57,10 +65,10 @@
  SCRIPTDIR=`dirname "$SCRIPT"`
  EXECUTABLE=zsolve
  
-Index: 4ti2-1.6.9/src/zsolve/hilbert.template
+Index: 4ti2-1.6.10/src/zsolve/hilbert.template
 ===================================================================
---- 4ti2-1.6.9.orig/src/zsolve/hilbert.template
-+++ 4ti2-1.6.9/src/zsolve/hilbert.template
+--- 4ti2-1.6.10.orig/src/zsolve/hilbert.template
++++ 4ti2-1.6.10/src/zsolve/hilbert.template
 @@ -2,7 +2,7 @@
  
  # We locate where this script is so we can call the executable zsolve which

++++++ _scmsync.obsinfo ++++++
mtime: 1737752727
commit: d910ab2447673b740dd0434e03b0736bfb54ab7577537536c9c5676d00ed7837
url: https://src.opensuse.org/jengelh/4ti2
revision: factory

Reply via email to