Merge pull request #1652 from Conan-Kudo/rm-urpmi

[packages] Drop urpmi support
main
Adriaan de Groot 4 years ago committed by GitHub
commit cdbc5a7b4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -356,26 +356,6 @@ class PMPortage(PackageManager):
pass
class PMUrpmi(PackageManager):
backend = "urpmi"
def install(self, pkgs, from_local=False):
check_target_env_call(["urpmi", "--download-all", "--no-suggests",
"--no-verify-rpm", "--fastunsafe",
"--ignoresize", "--nolock",
"--auto"] + pkgs)
def remove(self, pkgs):
check_target_env_call(["urpme", "--auto"] + pkgs)
def update_db(self):
check_target_env_call(["urpmi.update", "-a"])
def update_system(self):
# Doesn't need to update the system explicitly
pass
class PMXbps(PackageManager):
backend = "xbps"

@ -12,7 +12,6 @@
# - pacman - Pacman
# - pamac - Manjaro package manager
# - portage - Gentoo package manager
# - urpmi - Mandriva package manager
# - yum - Yum RPM frontend
# - zypp - Zypp RPM frontend
#

@ -17,7 +17,6 @@ properties:
- pacman
- pamac
- portage
- urpmi
- yum
- zypp
- dummy

Loading…
Cancel
Save