From 5ac7c0ef86af9f76f890a512157216f4a6f56b89 Mon Sep 17 00:00:00 2001 From: kewl fft Date: Sun, 24 May 2020 10:08:21 -0400 Subject: [PATCH] aur_only extended to all helpers --- README.md | 2 +- library/aur.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 93a3017..b24a1b2 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The following helpers are supported and automatically selected, if present, in t |state |**present**, latest |Desired state of the package, 'present' skips operations if the package is already installed.| |upgrade |yes, **no** |Whether or not to upgrade whole system.| |use |**auto**, yay, pacaur, trizen, pikaur, aurman, makepkg |The helper to use, 'auto' uses the first known helper found and makepkg as a fallback.| -|aur_only |yes, **no** |Limit operation to the AUR. Compatible with yay, pacaur, aurman and trizen.| +|aur_only |yes, **no** |Limit helper operation to the AUR.| |skip_pgp_check |yes, **no** |Only valid with makepkg. Skip PGP signatures verification of source file, useful when installing packages without GnuPG properly configured.| |ignore_arch |yes, **no** |Only valid with makepkg. Ignore a missing or incomplete arch field, useful when the PKGBUILD does not have the arch=('yourarch') field.| diff --git a/library/aur.py b/library/aur.py index e3589f9..1eba23e 100644 --- a/library/aur.py +++ b/library/aur.py @@ -60,7 +60,7 @@ options: aur_only: description: - - Limit operation to the AUR. Compatible with yay, aurman, pacaur and trizen. + - Limit helper operation to the AUR. notes: - When used with a `loop:` each package will be processed individually, it is much more efficient to pass the list directly to the `name` option. @@ -92,7 +92,7 @@ use_cmd = { 'makepkg': ['makepkg', '--syncdeps', '--install', '--noconfirm', '--needed'] } -has_aur_option = ['yay', 'pacaur', 'trizen', 'aurman'] +has_aur_option = ['yay', 'pacaur', 'trizen', 'pikaur', 'aurman'] def package_installed(module, package):