![]() |
Downgrading packages on Manjaro ARM (on the example of boinc) - Printable Version +- PINE64 (https://forum.pine64.org) +-- Forum: Pinebook Pro (https://forum.pine64.org/forumdisplay.php?fid=111) +--- Forum: Pinebook Pro Tutorials (https://forum.pine64.org/forumdisplay.php?fid=117) +--- Thread: Downgrading packages on Manjaro ARM (on the example of boinc) (/showthread.php?tid=11707) |
Downgrading packages on Manjaro ARM (on the example of boinc) - wrzomar - 10-02-2020 There is a problem with boincmgr from the newest boinc package (7.16.9), it's impossible to add projects. The solutions are: - wait for update, - use another boincmgr over network, - downgrade boinc package. In Arch Linux there is a way to downgrade a package installing a package (from cache or from Arch Linux Archive a.k.a ALA) and blocking its version in /etc/pacman.conf using IgnorePkg definition. You can do it manually or using 'downgrade' script from AUR. The catch (on Manjaro ARM) is the downgrade script uses default ALA url (https://archive.archlinux.org/) and unless you have older versions of boinc in your cache, it fails to downgrade boinc package. ARM packages are archived here: http://tardis.tiny-vps.com/aarm/ To downgrade boinc manually you have to: 1. Go to '/aarm/packages/b/boinc/' http://tardis.tiny-vps.com/aarm/packages/b/boinc/ 2. Download tar.xz and tar.xz.sig files with older version of boinc (e.g. 7.16.7) http://tardis.tiny-vps.com/aarm/packages/b/boinc/boinc-7.16.7-1-aarch64.pkg.tar.xz http://tardis.tiny-vps.com/aarm/packages/b/boinc/boinc-7.16.7-1-aarch64.pkg.tar.xz.sig 3. Verify package with 'pacman-key --verify' Code: pacman-key --verify boinc-7.16.7-1-aarch64.pkg.tar.xz.sig Code: sudo pacman -U boinc-7.16.7-1-aarch64.pkg.tar.xz Add Code: IgnorePkg = boinc Code: sudo pacman -Syyu The easier way is by downgrade script, you need to install it from AUR with pamac-manager or manually: First install yay: Code: sudo pacman -Sy yay Code: yay -S downgrade Code: downgrade --ala-url http://tardis.tiny-vps.com/aarm/ boinc Open ~/.bashrc with your favourite text editor and add line: Code: alias downgrade-arm='downgrade --ala-url http://tardis.tiny-vps.com/aarm/' Code: downgrade-arm boinc Downgrading packages in Manjaro is better explained here: https://wiki.manjaro.org/index.php?title=Downgrading_packages |