Warn about bundled provide version bumps and backouts in openjdk_news.sh
Related: RHEL-119331
This commit is contained in:
parent
a23bde00d7
commit
22b9f7179c
@ -2711,6 +2711,10 @@ cjc.mainProgram(args)
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Sun Oct 05 2025 Thomas Fitzsimmons <fitzsim@redhat.com> - 1:1.8.0.462.b08-4
|
||||
- Warn about bundled provide version bumps and backouts in openjdk_news.sh
|
||||
- Related: RHEL-119331
|
||||
|
||||
* Sun Oct 05 2025 Andrew Hughes <gnu.andrew@redhat.com> - 1:1.8.0.462.b08-4
|
||||
- Bump rpmrelease for move to portables only on RHEL 8
|
||||
- Resolves: RHEL-118781
|
||||
|
@ -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"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user