Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package icu4j for openSUSE:Factory checked 
in at 2025-10-27 14:38:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/icu4j (Old)
 and      /work/SRC/openSUSE:Factory/.icu4j.new.1980 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "icu4j"

Mon Oct 27 14:38:04 2025 rev:22 rq:1313347 version:73.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/icu4j/icu4j.changes      2024-02-22 
20:55:36.488804575 +0100
+++ /work/SRC/openSUSE:Factory/.icu4j.new.1980/icu4j.changes    2025-10-27 
14:38:52.288435763 +0100
@@ -1,0 +2,7 @@
+Thu Oct 23 09:40:37 UTC 2025 - Fridrich Strba <[email protected]>
+
+- Added patch:
+  * icu4j-detectjava25.patch
+    + detect java version up to 25 when running ant
+
+-------------------------------------------------------------------

New:
----
  _scmsync.obsinfo
  build.specials.obscpio
  icu4j-detectjava25.patch

----------(New B)----------
  New:- Added patch:
  * icu4j-detectjava25.patch
    + detect java version up to 25 when running ant
----------(New E)----------

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

Other differences:
------------------
++++++ icu4j.spec ++++++
--- /var/tmp/diff_new_pack.AAYock/_old  2025-10-27 14:38:53.156472415 +0100
+++ /var/tmp/diff_new_pack.AAYock/_new  2025-10-27 14:38:53.156472415 +0100
@@ -36,6 +36,7 @@
 Patch2:         icu4j-70.1-java8compat.patch
 Patch3:         icu4j-javadoc.patch
 Patch4:         icu4j-detectjava21.patch
+Patch5:         icu4j-detectjava25.patch
 BuildRequires:  ant
 BuildRequires:  fdupes
 BuildRequires:  java-devel
@@ -87,6 +88,7 @@
 %patch -P 2 -p1
 %patch -P 3 -p1
 %patch -P 4 -p1
+%patch -P 5 -p1
 
 sed -i 's/\r//' APIChangeReport.html
 sed -i 's/\r//' readme.html

++++++ _scmsync.obsinfo ++++++
mtime: 1761212516
commit: a3acaca130fdace420a237035daa046583302302cd0b1a48827408fa95d9fd0c
url: https://src.opensuse.org/java-packages/icu4j.git
revision: a3acaca130fdace420a237035daa046583302302cd0b1a48827408fa95d9fd0c
projectscmsync: https://src.opensuse.org/java-packages/_ObsPrj

++++++ 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      2025-10-23 11:42:37.000000000 +0200
@@ -0,0 +1 @@
+.osc

++++++ icu4j-detectjava25.patch ++++++
--- icu4j-73.1/build.xml        2025-10-23 11:29:16.556122245 +0200
+++ icu4j-73.1/build.xml        2025-10-23 11:34:28.175211409 +0200
@@ -142,6 +142,22 @@
         <matches string="${java.version}" pattern="^21((-.|\.\d).*)?"/>
     </condition>
 
+    <condition property="is.java22">
+        <matches string="${java.version}" pattern="^22((-.|\.\d).*)?"/>
+    </condition>
+
+    <condition property="is.java23">
+        <matches string="${java.version}" pattern="^23((-.|\.\d).*)?"/>
+    </condition>
+
+    <condition property="is.java24">
+        <matches string="${java.version}" pattern="^24((-.|\.\d).*)?"/>
+    </condition>
+
+    <condition property="is.java25">
+        <matches string="${java.version}" pattern="^25((-.|\.\d).*)?"/>
+    </condition>
+
   <condition property="is.java9.plus">
         <or>
             <isset property="is.java9"/>
@@ -157,6 +173,10 @@
             <isset property="is.java19"/>
             <isset property="is.java20"/>
             <isset property="is.java21"/>
+            <isset property="is.java22"/>
+            <isset property="is.java23"/>
+            <isset property="is.java24"/>
+            <isset property="is.java25"/>
         </or>
   </condition>
 

Reply via email to