Fehler beim Erstellen von pacnew-chaser

Ich habe mir heute nach langer Pause wieder Manjaro (KDE) installiert und wollte zum Abschluss noch den pacnew-chaser aus dem AUR dazu holen. Mirrors sind alle aktualisiert. Bekam in mehreren Versuchen jedesmal die Meldung:

==> FEHLER: Fehler beim Download von https://www.manjaro.fr/forum/datas/pacnew-chaser-qt-0.9.22.tar.gz
    Breche ab...
Fehler beim Erstellen von pacnew-chaser

Sowohl mit Pamac als auch mit yay probiert. Der Hinweis auf https://www.manjaro.fr hat mir da auch nichts gebracht. Bitte um Hilfe, das ist momentan das einzige Paket aus dem AUR, welches ich wirklich brauche.

That package is long dead. Notice the only comment on the AUR page mentions they coudn’t install it 5 years ago.

Übersetzung von Google Translate:

Das Paket ist schon lange tot. Beachten Sie, dass der einzige Kommentar auf der AIR-Seite erwähnt, dass sie es vor 5 Jahren nicht installieren konnten.

Thanks @Yochanan , is there anything else known that I can use to find pacnew and pacsave files in the system?

I use topgrade (available in our community repo), it has that functionality built-in.

Or you can use a pacman hook:

…and a script (replace meld with your favorite diff tool if desired):

#!/bin/bash

echo; echo; echo ".pacnew files found: $(/usr/bin/pacdiff --output | wc -l)"
  echo; /usr/bin/pacdiff --output; echo
  set -euo pipefail
  export PATH=/usr/bin:/usr/sbin
  for i in $(/usr/bin/pacdiff --output); do
    echo "Merging $i ..."
    /usr/bin/meld "admin://$i" "admin://${i/.pacnew/}"
    echo; echo
    read -p "Delete the .pacnew file $i? " -n 1 -r
    if [[ $REPLY =~ ^[YyOo]$ ]]
      then
      echo; sudo rm -v $i
    fi
  done
1 Like

Thank you, this helped me :+1:t2:

I stole that script from @omano, you can thank him, too. :wink:

1 Like

Thank you @omano for your script :+1:t2:

And it’s based on a script from jonathon I think.

R.I.P. Jonathon :frowning_face:

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.