Update to aarch64-shenandoah-jdk8u232-b09.
Switch to GA mode for final release. Remove PR1834/RH1022017 which is now handled by JDK-8228825 upstream.
This commit is contained in:
parent
aa6a3a918f
commit
f757741e9a
1
.gitignore
vendored
1
.gitignore
vendored
@ -157,3 +157,4 @@
|
||||
/aarch64-port-jdk8u-shenandoah-aarch64-shenandoah-jdk8u232-b06.tar.xz
|
||||
/aarch64-port-jdk8u-shenandoah-aarch64-shenandoah-jdk8u232-b07.tar.xz
|
||||
/aarch64-port-jdk8u-shenandoah-aarch64-shenandoah-jdk8u232-b08.tar.xz
|
||||
/aarch64-port-jdk8u-shenandoah-aarch64-shenandoah-jdk8u232-b09.tar.xz
|
||||
|
@ -218,7 +218,7 @@
|
||||
# note, following three variables are sedded from update_sources if used correctly. Hardcode them rather there.
|
||||
%global shenandoah_project aarch64-port
|
||||
%global shenandoah_repo jdk8u-shenandoah
|
||||
%global shenandoah_revision aarch64-shenandoah-jdk8u232-b08
|
||||
%global shenandoah_revision aarch64-shenandoah-jdk8u232-b09
|
||||
# Define old aarch64/jdk8u tree variables for compatibility
|
||||
%global project %{shenandoah_project}
|
||||
%global repo %{shenandoah_repo}
|
||||
@ -239,7 +239,7 @@
|
||||
# Release will be (where N is usually a number starting at 1):
|
||||
# - 0.N%%{?extraver}%%{?dist} for EA releases,
|
||||
# - N%%{?extraver}{?dist} for GA releases
|
||||
%global is_ga 0
|
||||
%global is_ga 1
|
||||
%if %{is_ga}
|
||||
%global milestone fcs
|
||||
%global milestone_version %{nil}
|
||||
@ -1082,10 +1082,6 @@ Source101: config.sub
|
||||
Patch1: rh1648242-accessible_toolkit_crash_do_not_break_jvm.patch
|
||||
# Restrict access to java-atk-wrapper classes
|
||||
Patch3: rh1648644-java_access_bridge_privileged_security.patch
|
||||
# PR1834, RH1022017: Reduce curves reported by SSL to those in NSS
|
||||
# Not currently suitable to go upstream as it disables curves
|
||||
# for all providers unconditionally
|
||||
Patch525: pr1834-rh1022017-reduce_ellipticcurvesextension_to_provide_only_three_nss_supported_nist_curves_23_24_25.patch
|
||||
# Turn on AssumeMP by default on RHEL systems
|
||||
Patch534: rh1648246-always_instruct_vm_to_assume_multiple_processors_are_available.patch
|
||||
|
||||
@ -1543,7 +1539,6 @@ sh %{SOURCE12}
|
||||
%patch110
|
||||
|
||||
# RPM-only fixes
|
||||
%patch525
|
||||
%patch539
|
||||
%patch1000
|
||||
|
||||
@ -2184,6 +2179,11 @@ require "copy_jdk_configs.lua"
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Oct 11 2019 Andrew Hughes <gnu.andrew@redhat.com> - 1:1.8.0.232.b09-0
|
||||
- Update to aarch64-shenandoah-jdk8u232-b09.
|
||||
- Switch to GA mode for final release.
|
||||
- Remove PR1834/RH1022017 which is now handled by JDK-8228825 upstream.
|
||||
|
||||
* Fri Oct 11 2019 Andrew Hughes <gnu.andrew@redhat.com> - 1:1.8.0.232.b08-0.0.ea
|
||||
- Update to aarch64-shenandoah-jdk8u232-b08.
|
||||
|
||||
|
@ -1,28 +0,0 @@
|
||||
diff --git a/src/share/classes/sun/security/ssl/EllipticCurvesExtension.java b/src/share/classes/sun/security/ssl/EllipticCurvesExtension.java
|
||||
--- openjdk/jdk/src/share/classes/sun/security/ssl/EllipticCurvesExtension.java
|
||||
+++ openjdk/jdk/src/share/classes/sun/security/ssl/EllipticCurvesExtension.java
|
||||
@@ -168,20 +168,10 @@
|
||||
"contains no supported elliptic curves");
|
||||
}
|
||||
} else { // default curves
|
||||
- int[] ids;
|
||||
- if (requireFips) {
|
||||
- ids = new int[] {
|
||||
- // only NIST curves in FIPS mode
|
||||
- 23, 24, 25, 9, 10, 11, 12, 13, 14,
|
||||
- };
|
||||
- } else {
|
||||
- ids = new int[] {
|
||||
- // NIST curves first
|
||||
- 23, 24, 25, 9, 10, 11, 12, 13, 14,
|
||||
- // non-NIST curves
|
||||
- 22,
|
||||
- };
|
||||
- }
|
||||
+ int[] ids = new int[] {
|
||||
+ // NSS currently only supports these three NIST curves
|
||||
+ 23, 24, 25
|
||||
+ };
|
||||
|
||||
idList = new ArrayList<>(ids.length);
|
||||
for (int curveId : ids) {
|
2
sources
2
sources
@ -1,2 +1,2 @@
|
||||
SHA512 (tapsets-icedtea-3.11.0.tar.xz) = f98420b2f9d7a0fc0af3a7e6a817c4330169db9378d9c38db56b0dd8281a3f1ff7747b4da0c66194695ca85a470b7963902d863d301e5e290dbfe11f6b6f2b5e
|
||||
SHA512 (aarch64-port-jdk8u-shenandoah-aarch64-shenandoah-jdk8u232-b08.tar.xz) = 1eab69d877d78c3fde82088be617b4bfbd9d43d5fe980c07e2f7100868b914b0ccfa0a4079f5e3f7b687eed1f24ec836e0f16fbf7ab0319407a22daf4527a844
|
||||
SHA512 (aarch64-port-jdk8u-shenandoah-aarch64-shenandoah-jdk8u232-b09.tar.xz) = 12126c417378c3f7e961e3e795c58d599985a5132db617ed43138135ae7d8e67a342c0c6a4e5718a84300e7251b0bbf04e0b54525bfd72951fb73c9215f14c77
|
||||
|
Loading…
Reference in New Issue
Block a user