Support for Portage
Members
The available version of the package in the repository
CLI Example:
salt '*' pkg.available_version <package name>
Install the passed package
Return a dict containing the new package names and versions:
{'<package>': {'old': '<old-version>',
'new': '<new-version>']}
CLI Example:
salt '*' pkg.install <package name>
List the packages currently installed in a dict:
{'<package_name>': '<version>'}
CLI Example:
salt '*' pkg.list_pkgs
Portage does not have a purge, this function calls remove
Return a list containing the removed packages:
CLI Example:
salt '*' pkg.purge <package name>
Updates the portage tree (emerge --sync)
CLI Example:
salt '*' pkg.refresh_db
Remove a single package via emerge --unmerge
Return a list containing the names of the removed packages:
CLI Example:
salt '*' pkg.remove <package name>
Updates the passed package (emerge --update package)
Return a dict containing the new package names and versions:
{'<package>': {'old': '<old-version>',
'new': '<new-version>']}
CLI Example:
salt '*' pkg.update <package name>