Skip to content

WIP: Refresh generated files after abiname bump

Most of the files already got updated with the abiname bump, but the maintscript have been left behind.

For this reason, the generated binaries are not shipping any maintscript, causing all kind of breakage: for instance, the linux-image packages miss the postinst script that trigger the generation of the initrd, breaking boot.

To fix them I ran:

OLD=4.19.0-6
NEW=${OLD}co1
for i in debian/*$OLD*; do sed -i -e "s/$OLD/$NEW" "$i" && mv "$i" "${i/$OLD/$NEW}"; done
git add -f debian/

Which is roughly analogous to running the commands below, but less noisy:

debian/rules maintainerclean
git ls-files --deleted --directory | grep -v ^debian | xargs git checkout
dquilt push -a
debian/rules setup
dquilt pop -a

This MR is based on !7 (merged).

Test build on OBS: https://build.collabora.co.uk/package/show/home:em:branches:apertis:v2020dev0:target:linux-refresh-generated-maintscripts/linux

Edited by Emanuele Aina

Merge request reports