You are not logged in.
Just a small script that checks for AUR updates and displays them in the style of checkupdates.
https://github.com/arisinfenix/checkaurupdates
Last edited by arisinfenix (2020-11-01 16:21:21)
Offline
Do you properly handle the max size of an url query for people with many packages? https://wiki.archlinux.org/index.php/Au … imitations
Managing AUR repos The Right Way -- aurpublish (now a standalone tool)
Offline
Not yet. Thank you for the hint.
Offline
I would not hardcode pacman -Qqm - AUR packages are not necessarily foreign packages. You could take pkgname/pkgver strings from stdin instead.
Calling vercmp a high amount of times will get pretty slow, I'd suggest to first check for version equality ([[ $local_version == "$aur_version" ]])
curl -f ... || exit allows the script to exit on server errors.
Mods are just community members who have the occasionally necessary option to move threads around and edit posts. -- Trilby
Offline
Thanks for your input Alad.
Updated the script. Replacing pacman -Qmq and check for curl success will follow...
Offline