remove aur option by default

pull/4/head
kewl fft 2018-05-08 07:20:00 +01:00
parent dfadb16c23
commit 9917476854
1 changed files with 6 additions and 5 deletions

11
aur.py
View File

@ -13,14 +13,15 @@ import tempfile
def_lang = ['env', 'LC_ALL=C']
use_cmd = {
'aurman': ['aurman', '-S', '--noconfirm', '--noedit', '--needed', '--aur'],
'pacaur': ['pacaur', '-S', '--noconfirm', '--noedit', '--needed', '--aur'],
'trizen': ['trizen', '-S', '--noconfirm', '--noedit', '--needed', '--aur'],
'aurman': ['aurman', '-S', '--noconfirm', '--noedit', '--needed'],
'pacaur': ['pacaur', '-S', '--noconfirm', '--noedit', '--needed'],
'trizen': ['trizen', '-S', '--noconfirm', '--noedit', '--needed'],
'pikaur': ['pikaur', '-S', '--noconfirm', '--noedit', '--needed'],
'yaourt': ['yaourt', '-S', '--noconfirm', '--needed'],
'yay': ['yay', '-S', '--noconfirm'],
'internal': ['makepkg', '--syncdeps', '--install', '--noconfirm', '--needed']
}
# optional: aurman, pacaur, trizen have a --aur option, do things only for aur
def package_installed(module, package):
@ -101,7 +102,7 @@ def main():
'choices': ['auto', 'aurman', 'pacaur', 'trizen', 'pikaur', 'yaourt', 'yay', 'internal'],
},
'skip_installed': {
'default': 'no',
'default': False,
'type': 'bool',
},
},
@ -112,7 +113,7 @@ def main():
if params['use'] == 'auto':
use = 'internal'
# select the first helper for which the bin is found
# auto: select the first helper for which the bin is found
for k in use_cmd:
if module.get_bin_path(k, False):
use = k