mirror of
				https://github.com/kewlfft/ansible-aur.git
				synced 2025-11-04 01:52:31 +03:00 
			
		
		
		
	Added paru as a helper option
				
					
				
			This commit is contained in:
		@@ -3,6 +3,7 @@ Ansible module to use some Arch User Repository (AUR) helpers as well as makepkg
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
The following helpers are supported and automatically selected, if present, in the order listed below:
 | 
					The following helpers are supported and automatically selected, if present, in the order listed below:
 | 
				
			||||||
- [yay](https://github.com/Jguer/yay)
 | 
					- [yay](https://github.com/Jguer/yay)
 | 
				
			||||||
 | 
					- [paru](https://github.com/Morganamilo/paru)
 | 
				
			||||||
- [pacaur](https://github.com/E5ten/pacaur)
 | 
					- [pacaur](https://github.com/E5ten/pacaur)
 | 
				
			||||||
- [trizen](https://github.com/trizen/trizen)
 | 
					- [trizen](https://github.com/trizen/trizen)
 | 
				
			||||||
- [pikaur](https://github.com/actionless/pikaur)
 | 
					- [pikaur](https://github.com/actionless/pikaur)
 | 
				
			||||||
@@ -17,7 +18,7 @@ The following helpers are supported and automatically selected, if present, in t
 | 
				
			|||||||
|name           |                                                       |Name or list of names of the package(s) to install or upgrade.|
 | 
					|name           |                                                       |Name or list of names of the package(s) to install or upgrade.|
 | 
				
			||||||
|state          |**present**, latest                                    |Desired state of the package, 'present' skips operations if the package is already installed.|
 | 
					|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.|
 | 
					|upgrade        |yes, **no**                                            |Whether or not to upgrade whole system.|
 | 
				
			||||||
|use            |**auto**, yay, pacaur, trizen, pikaur, aurman, makepkg |The tool to use, 'auto' uses the first known helper found and makepkg as a fallback.|
 | 
					|use            |**auto**, yay, paru, pacaur, trizen, pikaur, aurman, makepkg |The tool to use, 'auto' uses the first known helper found and makepkg as a fallback.|
 | 
				
			||||||
|extra_args     |**null**                                               |A list of additional arguments to pass directly to the tool. Cannot be used in 'auto' mode.|
 | 
					|extra_args     |**null**                                               |A list of additional arguments to pass directly to the tool. Cannot be used in 'auto' mode.|
 | 
				
			||||||
|aur_only       |yes, **no**                                            |Limit helper operation to the AUR.|
 | 
					|aur_only       |yes, **no**                                            |Limit helper operation to the AUR.|
 | 
				
			||||||
|local_pkgbuild |Local directory with PKGBUILD, **null**                |Only valid with makepkg or pikaur. Don't download the package from AUR. Build the package using a local PKGBUILD and the other build files.|
 | 
					|local_pkgbuild |Local directory with PKGBUILD, **null**                |Only valid with makepkg or pikaur. Don't download the package from AUR. Build the package using a local PKGBUILD and the other build files.|
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -43,7 +43,7 @@ options:
 | 
				
			|||||||
        description:
 | 
					        description:
 | 
				
			||||||
            - The tool to use, 'auto' uses the first known helper found and makepkg as a fallback.
 | 
					            - The tool to use, 'auto' uses the first known helper found and makepkg as a fallback.
 | 
				
			||||||
        default: auto
 | 
					        default: auto
 | 
				
			||||||
        choices: [ auto, yay, pacaur, trizen, pikaur, aurman, makepkg ]
 | 
					        choices: [ auto, yay, paru, pacaur, trizen, pikaur, aurman, makepkg ]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    extra_args:
 | 
					    extra_args:
 | 
				
			||||||
        description:
 | 
					        description:
 | 
				
			||||||
@@ -104,6 +104,7 @@ def_lang = ['env', 'LC_ALL=C']
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
use_cmd = {
 | 
					use_cmd = {
 | 
				
			||||||
    'yay': ['yay', '-S', '--noconfirm', '--needed', '--cleanafter'],
 | 
					    'yay': ['yay', '-S', '--noconfirm', '--needed', '--cleanafter'],
 | 
				
			||||||
 | 
					    'paru': ['paru', '-S', '--noconfirm', '--needed', '--cleanafter'],
 | 
				
			||||||
    'pacaur': ['pacaur', '-S', '--noconfirm', '--noedit', '--needed'],
 | 
					    'pacaur': ['pacaur', '-S', '--noconfirm', '--noedit', '--needed'],
 | 
				
			||||||
    'trizen': ['trizen', '-S', '--noconfirm', '--noedit', '--needed'],
 | 
					    'trizen': ['trizen', '-S', '--noconfirm', '--noedit', '--needed'],
 | 
				
			||||||
    'pikaur': ['pikaur', '-S', '--noconfirm', '--noedit', '--needed'],
 | 
					    'pikaur': ['pikaur', '-S', '--noconfirm', '--noedit', '--needed'],
 | 
				
			||||||
@@ -116,7 +117,7 @@ use_cmd_local_pkgbuild = {
 | 
				
			|||||||
    'makepkg': ['makepkg', '--syncdeps', '--install', '--noconfirm', '--needed']
 | 
					    'makepkg': ['makepkg', '--syncdeps', '--install', '--noconfirm', '--needed']
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
has_aur_option = ['yay', 'pacaur', 'trizen', 'pikaur', 'aurman']
 | 
					has_aur_option = ['yay', 'paru', 'pacaur', 'trizen', 'pikaur', 'aurman']
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
def package_installed(module, package):
 | 
					def package_installed(module, package):
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user