Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package jline3 for openSUSE:Factory checked in at 2026-07-21 23:10:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/jline3 (Old) and /work/SRC/openSUSE:Factory/.jline3.new.24530 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "jline3" Tue Jul 21 23:10:46 2026 rev:17 rq:1366911 version:3.30.15 Changes: -------- --- /work/SRC/openSUSE:Factory/jline3/jline3.changes 2026-07-06 12:36:04.515213797 +0200 +++ /work/SRC/openSUSE:Factory/.jline3.new.24530/jline3.changes 2026-07-21 23:11:10.975902699 +0200 @@ -1,0 +2,6 @@ +Tue Jul 21 09:28:12 UTC 2026 - Fridrich Strba <[email protected]> + +- Make the building with juniversalchardet configurable, but keep + it disabled by default + +------------------------------------------------------------------- @@ -37 +43 @@ - (GHSA-2r2c-cx56-8933, bsc#1270083) + (CVE-2026-56741, GHSA-2r2c-cx56-8933, bsc#1270083) @@ -39 +45 @@ - (GHSA-47qp-hqvx-6r3f, bsc#1269021) + (CVE-2026-56740, GHSA-47qp-hqvx-6r3f, bsc#1269021) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ jline3.spec ++++++ --- /var/tmp/diff_new_pack.wmBVQA/_old 2026-07-21 23:11:11.563922803 +0200 +++ /var/tmp/diff_new_pack.wmBVQA/_new 2026-07-21 23:11:11.563922803 +0200 @@ -30,6 +30,7 @@ %bcond_with ffm %endif %bcond_with ssh +%bcond_with juniversalchardet Name: jline3 Version: 3.30.15 Release: 0 @@ -48,6 +49,9 @@ BuildRequires: javapackages-local >= 6 BuildRequires: jna BuildRequires: jsr-305 +%if %{with juniversalchardet} +BuildRequires: juniversalchardet +%endif %if %{with ssh} BuildRequires: apache-sshd BuildRequires: slf4j @@ -221,7 +225,11 @@ API documentation for %{name}. %prep -%autosetup -n %{name}-jline-%{version} -p1 -a1 +%setup -q -n %{name}-jline-%{version} -a1 +%if %{without juniversalchardet} +%patch -P 0 -p1 +%pom_remove_dep -r :juniversalchardet . jline +%endif sed "s;@SYSTEMLIBRARYPATH@;%{_libdir}/%{name}/;g" < %{SOURCE100} | patch -p1 @@ -233,9 +241,6 @@ # -Werror is considered harmful for downstream packaging sed -i /-Werror/d $(find -name pom.xml) -# Optional dependency on juniversalchardet was removed via a patch -%pom_remove_dep -r :juniversalchardet . jline - %if %{without ffm} %pom_disable_module terminal-ffm %pom_remove_dep :jline-terminal-ffm jline @@ -321,6 +326,10 @@ jansi/jansi \ jna/jna \ jsr-305 +%if %{with juniversalchardet} + build-jar-repository -s lib \ + juniversalchardet/juniversalchardet +%endif %if %{with ssh} build-jar-repository -s lib \ apache-sshd/sshd-common \ ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.wmBVQA/_old 2026-07-21 23:11:11.611924444 +0200 +++ /var/tmp/diff_new_pack.wmBVQA/_new 2026-07-21 23:11:11.615924581 +0200 @@ -1,6 +1,6 @@ -mtime: 1783278416 -commit: 7ce301f207af906c80b470614071ef915e73f4e72e14e879d2e974b19cf5d89b +mtime: 1784626159 +commit: c1087cb6918fee5e9c1f93ccab84a541914ddb6463292f10934f6b2bd764a47f url: https://src.opensuse.org/java-packages/jline3 -revision: 7ce301f207af906c80b470614071ef915e73f4e72e14e879d2e974b19cf5d89b +revision: c1087cb6918fee5e9c1f93ccab84a541914ddb6463292f10934f6b2bd764a47f 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-07-21 11:29:19.000000000 +0200 @@ -0,0 +1 @@ +.osc ++++++ jline3-build.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/builtins/build.xml new/builtins/build.xml --- old/builtins/build.xml 2025-03-21 20:22:16.399877438 +0100 +++ new/builtins/build.xml 2026-07-21 11:15:13.450945566 +0200 @@ -28,6 +28,9 @@ <pathelement location="../terminal/target/classes"/> <pathelement location="../native/target/classes"/> <pathelement location="../style/target/classes"/> + <fileset dir="../lib"> + <include name="**/*.jar"/> + </fileset> </path> <!-- ====================================================================== --> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/console/build.xml new/console/build.xml --- old/console/build.xml 2025-03-21 20:22:07.176572795 +0100 +++ new/console/build.xml 2026-07-21 11:16:08.578771093 +0200 @@ -29,6 +29,9 @@ <pathelement location="../style/target/classes"/> <pathelement location="../terminal/target/classes"/> <pathelement location="../native/target/classes"/> + <fileset dir="../lib"> + <include name="**/*.jar"/> + </fileset> </path> <!-- ====================================================================== --> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/console-ui/build.xml new/console-ui/build.xml --- old/console-ui/build.xml 2025-03-21 20:22:00.688761686 +0100 +++ new/console-ui/build.xml 2026-07-21 11:16:12.874598543 +0200 @@ -29,6 +29,9 @@ <pathelement location="../terminal/target/classes"/> <pathelement location="../native/target/classes"/> <pathelement location="../style/target/classes"/> + <fileset dir="../lib"> + <include name="**/*.jar"/> + </fileset> </path> <!-- ====================================================================== --> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/curses/build.xml new/curses/build.xml --- old/curses/build.xml 2025-03-21 20:21:54.592375983 +0100 +++ new/curses/build.xml 2026-07-21 11:16:17.402704198 +0200 @@ -27,6 +27,9 @@ <pathelement location="../terminal/target/classes"/> <pathelement location="../native/target/classes"/> <pathelement location="../reader/target/classes"/> + <fileset dir="../lib"> + <include name="**/*.jar"/> + </fileset> </path> <!-- ====================================================================== --> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jansi/build.xml new/jansi/build.xml --- old/jansi/build.xml 2025-03-21 20:21:46.928608977 +0100 +++ new/jansi/build.xml 2026-07-21 11:16:40.306406702 +0200 @@ -23,7 +23,11 @@ <!-- Defining classpaths --> <!-- ====================================================================== --> - <path id="build.classpath"/> + <path id="build.classpath"> + <fileset dir="../lib"> + <include name="**/*.jar"/> + </fileset> + </path> <!-- ====================================================================== --> <!-- Cleaning up target --> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jansi-core/build.xml new/jansi-core/build.xml --- old/jansi-core/build.xml 2025-03-21 20:21:40.360191393 +0100 +++ new/jansi-core/build.xml 2026-07-21 11:16:51.690488576 +0200 @@ -26,6 +26,9 @@ <path id="build.classpath"> <pathelement location="../terminal/target/classes"/> <pathelement location="../native/target/classes"/> + <fileset dir="../lib"> + <include name="**/*.jar"/> + </fileset> </path> <!-- ====================================================================== --> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/native/build.xml new/native/build.xml --- old/native/build.xml 2025-03-21 20:21:24.272333090 +0100 +++ new/native/build.xml 2026-07-21 11:17:13.051905625 +0200 @@ -24,7 +24,11 @@ <!-- Defining classpaths --> <!-- ====================================================================== --> - <path id="build.classpath"/> + <path id="build.classpath"> + <fileset dir="../lib"> + <include name="**/*.jar"/> + </fileset> + </path> <!-- ====================================================================== --> <!-- Cleaning up target --> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/reader/build.xml new/reader/build.xml --- old/reader/build.xml 2025-03-21 20:21:17.240202466 +0100 +++ new/reader/build.xml 2026-07-21 11:17:26.403091316 +0200 @@ -26,6 +26,9 @@ <path id="build.classpath"> <pathelement location="../terminal/target/classes"/> <pathelement location="../native/target/classes"/> + <fileset dir="../lib"> + <include name="**/*.jar"/> + </fileset> </path> <!-- ====================================================================== --> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/remote-telnet/build.xml new/remote-telnet/build.xml --- old/remote-telnet/build.xml 2025-03-21 20:20:56.944976276 +0100 +++ new/remote-telnet/build.xml 2026-07-21 11:17:42.547263612 +0200 @@ -28,6 +28,9 @@ <pathelement location="../terminal/target/classes"/> <pathelement location="../native/target/classes"/> <pathelement location="../style/target/classes"/> + <fileset dir="../lib"> + <include name="**/*.jar"/> + </fileset> </path> <!-- ====================================================================== --> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terminal/build.xml new/terminal/build.xml --- old/terminal/build.xml 2025-03-21 20:20:29.687198757 +0100 +++ new/terminal/build.xml 2026-07-21 11:17:59.955407293 +0200 @@ -24,6 +24,9 @@ <path id="build.classpath"> <pathelement location="../native/target/classes"/> + <fileset dir="../lib"> + <include name="**/*.jar"/> + </fileset> </path> <!-- ====================================================================== --> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terminal-ffm/build.xml new/terminal-ffm/build.xml --- old/terminal-ffm/build.xml 2025-03-21 20:20:20.151138107 +0100 +++ new/terminal-ffm/build.xml 2026-07-21 11:18:12.203322391 +0200 @@ -26,6 +26,9 @@ <path id="build.classpath"> <pathelement location="../terminal/target/classes"/> <pathelement location="../native/target/classes"/> + <fileset dir="../lib"> + <include name="**/*.jar"/> + </fileset> </path> <!-- ====================================================================== --> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terminal-jni/build.xml new/terminal-jni/build.xml --- old/terminal-jni/build.xml 2025-03-21 20:18:28.238506254 +0100 +++ new/terminal-jni/build.xml 2026-07-21 11:18:28.555185243 +0200 @@ -26,6 +26,9 @@ <path id="build.classpath"> <pathelement location="../native/target/classes"/> <pathelement location="../terminal/target/classes"/> + <fileset dir="../lib"> + <include name="**/*.jar"/> + </fileset> </path> <!-- ====================================================================== -->
