Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package icu4j for openSUSE:Factory checked in at 2023-09-22 21:47:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/icu4j (Old) and /work/SRC/openSUSE:Factory/.icu4j.new.1770 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "icu4j" Fri Sep 22 21:47:20 2023 rev:20 rq:1112745 version:73.1 Changes: -------- --- /work/SRC/openSUSE:Factory/icu4j/icu4j.changes 2023-04-27 20:01:38.722176265 +0200 +++ /work/SRC/openSUSE:Factory/.icu4j.new.1770/icu4j.changes 2023-09-22 21:48:30.999261869 +0200 @@ -1,0 +2,7 @@ +Thu Sep 21 06:30:35 UTC 2023 - Fridrich Strba <fst...@suse.com> + +- Added patch: + * icu4j-detectjava21.patch + + detect java 20 and 21 when running ant + +------------------------------------------------------------------- New: ---- icu4j-detectjava21.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ icu4j.spec ++++++ --- /var/tmp/diff_new_pack.BudCw1/_old 2023-09-22 21:48:32.455314728 +0200 +++ /var/tmp/diff_new_pack.BudCw1/_new 2023-09-22 21:48:32.459314872 +0200 @@ -35,6 +35,7 @@ Patch1: improve-osgi-manifest.patch Patch2: icu4j-70.1-java8compat.patch Patch3: icu4j-javadoc.patch +Patch4: icu4j-detectjava21.patch BuildRequires: ant BuildRequires: fdupes BuildRequires: java-devel @@ -85,6 +86,7 @@ %patch1 %patch2 -p1 %patch3 -p1 +%patch4 -p1 sed -i 's/\r//' APIChangeReport.html sed -i 's/\r//' readme.html ++++++ icu4j-detectjava21.patch ++++++ --- a/build.xml 2023-04-13 18:15:08.000000000 +0200 +++ b/build.xml 2023-09-21 08:36:23.783902985 +0200 @@ -134,6 +134,14 @@ <matches string="${java.version}" pattern="^19((-.|\.\d).*)?"/> </condition> + <condition property="is.java20"> + <matches string="${java.version}" pattern="^20((-.|\.\d).*)?"/> + </condition> + + <condition property="is.java21"> + <matches string="${java.version}" pattern="^21((-.|\.\d).*)?"/> + </condition> + <condition property="is.java9.plus"> <or> <isset property="is.java9"/> @@ -147,6 +155,8 @@ <isset property="is.java17"/> <isset property="is.java18"/> <isset property="is.java19"/> + <isset property="is.java20"/> + <isset property="is.java21"/> </or> </condition>