Add option to keep AUR packages #11
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "matthiakl/pamac-classic:store_aur_pkgs"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Adds an option to the AUR tab to enable and choose a folder, where built AUR packages are stored. I found this helpful for switching between versions of those packages.
I also updated the German translation and filled missing strings.
This looks good. However 2 issues, there is a conflict in src/preferences_dialog.vala which comes from your libalpm branch that I already merged. Please rebase this on the master branch which now has the new libalpm changes.
The other issue is the way you copy using "cp". Please use the GLib.File from gio-2.0 to handle file moving/copying operations: https://valadoc.org/gio-2.0/GLib.File.html
By using those there is better error control through try and catch and to recover when the operation fails. If you update your code to use GLib.File, I will gladly merge it.