Skip to content

Commit 9c6b9c9

Browse files
xumiayxieca
authored andcommitted
[Build] Fix the missing debian package for reproducible build issue (#11333)
Why I did it Fix the missing debian package for reproducible build issue. The gnupg2 should be added into the version file. https://dev.azure.com/mssonic/build/_build/results?buildId=118139&view=logs&j=88ce9a53-729c-5fa9-7b6e-3d98f2488e3f&t=8d99be27-49d0-54d0-99b1-cfc0d47f0318 The following packages have unmet dependencies: gnupg2 : Depends: gnupg (>= 2.2.27-2+deb11u2) but 2.2.27-2+deb11u1 is to be installed E: Unable to correct problems, you have held broken packages. The issue was caused by the gnupg2 removed, and not detected. sonic-buildimage/build_debian.sh Line 250 in 4fb6cf0 sudo LANG=C chroot $FILESYSTEM_ROOT apt-get -y remove software-properties-common gnupg2 python3-gi How I did it Export the debian packages when any debian package being removed.
1 parent fea173d commit 9c6b9c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sonic-build-hooks/hooks/apt-get

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ "$INSTALL" == y ]; then
2020
[ "$lock_result" == y ] && release_apt_installation_lock
2121
exit $command_result
2222
else
23-
if [[ "$1" == "purge" || "$@" == *" purge "* ]]; then
23+
if [[ "$1" == "purge" || "$@" == *" purge "* || "$@" == *" remove "* ]]; then
2424
# When running the purge command, collect the debian versions
2525
dpkg-query -W -f '${Package}==${Version}\n' >> $POST_VERSION_PATH/purge-versions-deb
2626
chmod a+wr $POST_VERSION_PATH/purge-versions-deb

0 commit comments

Comments
 (0)