From add988e2c19d484f6391d7d51793c5bb3bd0bb151ede8648e1ae346711fccb8d Mon Sep 17 00:00:00 2001 From: Fridrich Strba Date: Tue, 26 Sep 2023 16:57:41 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/Java:packages/groovy18?expand=0&rev=43 --- reproducible-builds.patch | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/reproducible-builds.patch b/reproducible-builds.patch index 6193fde..10d29f4 100644 --- a/reproducible-builds.patch +++ b/reproducible-builds.patch @@ -191,6 +191,25 @@ // ret contains the type specs, what we now need is the type spec for the // current class. To get that we first apply the type parameters to the // current class and then use the type names of the current class to reset +--- groovy-core-GROOVY_1_8_9/src/main/org/codehaus/groovy/runtime/ClassExtender.java 2023-09-26 13:31:23.352876182 +0200 ++++ groovy-core-GROOVY_1_8_9/src/main/org/codehaus/groovy/runtime/ClassExtender.java 2023-09-26 18:56:10.658079617 +0200 +@@ -17,7 +17,7 @@ + + import groovy.lang.Closure; + +-import java.util.HashMap; ++import java.util.TreeMap; + import java.util.Map; + + +@@ -82,6 +82,6 @@ + } + + protected Map createMap() { +- return new HashMap(); ++ return new TreeMap(); + } + } --- groovy-core-GROOVY_1_8_9/src/main/org/codehaus/groovy/tools/FileSystemCompiler.java 2023-09-26 13:31:23.359542893 +0200 +++ groovy-core-GROOVY_1_8_9/src/main/org/codehaus/groovy/tools/FileSystemCompiler.java 2023-09-26 13:54:05.625117288 +0200 @@ -246,6 +246,7 @@