Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package tuxguitar for openSUSE:Factory 
checked in at 2026-05-12 19:27:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/tuxguitar (Old)
 and      /work/SRC/openSUSE:Factory/.tuxguitar.new.1966 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "tuxguitar"

Tue May 12 19:27:06 2026 rev:28 rq:1352535 version:2.0.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/tuxguitar/tuxguitar.changes      2026-03-12 
22:22:29.578820654 +0100
+++ /work/SRC/openSUSE:Factory/.tuxguitar.new.1966/tuxguitar.changes    
2026-05-12 19:27:39.821562391 +0200
@@ -1,0 +2,10 @@
+Mon May 11 17:03:06 UTC 2026 - Fridrich Strba <[email protected]>
+
+- Added patch:
+  * tuxguitar-new-commons-compress.patch
+    + fix build with newer apache-commons-compress, where the
+      org.apache.commons.compress.archivers.ArchiveException is a
+      subclass of java.io.IOException and thus they cannot be
+      alternatives in a multi-catch statement.
+
+-------------------------------------------------------------------
@@ -4 +14 @@
-- SLE16.1 will have %%suse_version 1610
+- SLE16.1 will have %suse_version 1610

New:
----
  tuxguitar-new-commons-compress.patch

----------(New B)----------
  New:- Added patch:
  * tuxguitar-new-commons-compress.patch
    + fix build with newer apache-commons-compress, where the
----------(New E)----------

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

Other differences:
------------------
++++++ tuxguitar.spec ++++++
--- /var/tmp/diff_new_pack.PvO4K5/_old  2026-05-12 19:27:41.073614282 +0200
+++ /var/tmp/diff_new_pack.PvO4K5/_new  2026-05-12 19:27:41.073614282 +0200
@@ -37,6 +37,7 @@
 Patch2:         0002-no-fluidsynth.patch
 Patch3:         0003-default-soundfont.patch
 Patch4:         0004-startscript.patch
+Patch5:         tuxguitar-new-commons-compress.patch
 BuildRequires:  alsa-devel
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -96,6 +97,7 @@
 
 %patch -P 3 -p1
 %patch -P 4 -p1
+%patch -P 5 -p1
 
 %pom_xpath_remove "pom:profile[pom:id[text()='platform-windows']]" 
desktop/pom.xml
 %pom_xpath_remove "pom:profile[pom:id[text()='platform-macos-cocoa']]" 
desktop/pom.xml

++++++ _scmsync.obsinfo ++++++
--- /var/tmp/diff_new_pack.PvO4K5/_old  2026-05-12 19:27:41.129616603 +0200
+++ /var/tmp/diff_new_pack.PvO4K5/_new  2026-05-12 19:27:41.141617100 +0200
@@ -1,6 +1,6 @@
-mtime: 1773235312
-commit: 8c6818a51943442588844103412f2ca87e445e743f035cda6401dc0835988a53
-url: https://src.opensuse.org/java-packages/tuxguitar.git
-revision: 8c6818a51943442588844103412f2ca87e445e743f035cda6401dc0835988a53
+mtime: 1778519482
+commit: 65ee62259a9337537d6acc986fb2d12d3b0c2e429e229f58659955ec3155c21d
+url: https://src.opensuse.org/java-packages/tuxguitar
+revision: 65ee62259a9337537d6acc986fb2d12d3b0c2e429e229f58659955ec3155c21d
 projectscmsync: https://src.opensuse.org/java-packages/_ObsPrj
 

++++++ build.specials.obscpio ++++++

++++++ build.specials.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore      1970-01-01 01:00:00.000000000 +0100
+++ new/.gitignore      2026-05-11 19:11:22.000000000 +0200
@@ -0,0 +1 @@
+.osc

++++++ tuxguitar-new-commons-compress.patch ++++++
--- 
tuxguitar-2.0.1/common/TuxGuitar-lib/src/main/java/app/tuxguitar/io/tg/TGSongWriterImpl.java
        2026-05-11 18:59:34.099910823 +0200
+++ 
tuxguitar-2.0.1/common/TuxGuitar-lib/src/main/java/app/tuxguitar/io/tg/TGSongWriterImpl.java
        2026-05-11 19:06:04.961565429 +0200
@@ -76,7 +76,10 @@
                        this.saveDocument(outputStream);
                        outputStream.closeArchiveEntry();
                        outputStream.close();
-               } catch (ArchiveException | IOException e) {
+               } catch (ArchiveException e) {
+                       e.printStackTrace();
+                       throw new TGFileFormatException(e);
+               } catch (IOException e) {
                        e.printStackTrace();
                        throw new TGFileFormatException(e);
                }

Reply via email to