From f78490b9dce111d66a2ba2a2221c23818312ccca Mon Sep 17 00:00:00 2001 From: Thomas Fitzsimmons Date: Thu, 17 Oct 2024 12:47:59 -0400 Subject: [PATCH] Warn about bundled provide version bumps and backouts in openjdk_news.sh Related: RHEL-119329 --- java-1.8.0-openjdk.spec | 4 ++++ scripts/openjdk_news.sh | 9 +++++++++ 2 files changed, 13 insertions(+) diff --git a/java-1.8.0-openjdk.spec b/java-1.8.0-openjdk.spec index 9147a88..b4cbbb3 100644 --- a/java-1.8.0-openjdk.spec +++ b/java-1.8.0-openjdk.spec @@ -2962,6 +2962,10 @@ cjc.mainProgram(args) %endif %changelog +* Sun Oct 05 2025 Thomas Fitzsimmons - 1:1.8.0.462.b08-5 +- Warn about bundled provide version bumps and backouts in openjdk_news.sh +- Related: RHEL-119329 + * Sun Oct 05 2025 Andrew Hughes - 1:1.8.0.462.b08-5 - Bump rpmrelease for move to portables only on RHEL 8 - Resolves: RHEL-118775 diff --git a/scripts/openjdk_news.sh b/scripts/openjdk_news.sh index 64b1434..e0f466a 100755 --- a/scripts/openjdk_news.sh +++ b/scripts/openjdk_news.sh @@ -72,6 +72,15 @@ done sort "${TMPDIR}/fixes2" "${TMPDIR}/fixes3" | uniq > "${TMPDIR}/fixes" rm -f "${TMPDIR}/fixes2" "${TMPDIR}/fixes3" +if grep -i 'backout' "${TMPDIR}/fixes" +then + echo "WARNING: Review the preceding backouts" +fi +if grep -iE ': update.*(freetype|gif|harfbuzz|lcms|jpeg|png|zlib)' "${TMPDIR}/fixes" +then + echo "WARNING: Review the preceding with respect to bundled provides" +fi + echo "In ${TMPDIR}/fixes:" cat "${TMPDIR}/fixes"