Add merge-pacnews utility

This commit is contained in:
Tom Willemse 2019-01-10 02:13:54 -08:00
parent 6521d4ac9e
commit 7e7597ab99

21
util/usr/bin/merge-pacnews Executable file
View file

@ -0,0 +1,21 @@
#!/usr/bin/env bash
files=$(find /etc -type f -name '*.pacnew')
for pacnew in $files
do
unprefixed=${pacnew%.pacnew}
if [[ ! -e "$unprefixed" ]]; then continue; fi
emacs -eval "(emerge-files nil \"$unprefixed\" \"$pacnew\" \"$unprefixed\")"
otime=$(stat -c %Y "$unprefixed")
ntime=$(stat -c %Y "$pacnew")
if [[ "$otime" -gt "$ntime" ]]; then
rm -v "$pacnew"
else
echo "Skipping removal of $pacnew"
fi
done