summaryrefslogtreecommitdiff
path: root/src/frontend
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-10-30 15:22:22 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-10-30 15:22:22 +0000
commit5fc5276d968a38d05fa5659c06392e83cc428516 (patch)
treeec5f00e45ec57767909b8e5bd8b13891adb88781 /src/frontend
parentf7f86f807d2756f5081c0e0f1dfc9ead61ac9f5c (diff)
move uninstallAll -> uninstall
Diffstat (limited to 'src/frontend')
-rwxr-xr-xsrc/frontend/cli/sisyphus-cli.py8
-rw-r--r--src/frontend/gui/sisyphus-gui.py2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/frontend/cli/sisyphus-cli.py b/src/frontend/cli/sisyphus-cli.py
index 5e93669..c97dd3b 100755
--- a/src/frontend/cli/sisyphus-cli.py
+++ b/src/frontend/cli/sisyphus-cli.py
@@ -161,9 +161,9 @@ def uninstall(pkgname: List[str], force: bool = typer.Option(False, "--force", "
will succeed, but the system will be broken
"""
if not force:
- sisyphus.uninstallAll.cliExec(pkgname)
+ sisyphus.uninstall.cliExec(pkgname)
else:
- sisyphus.uninstallAll.cliExecForce(pkgname)
+ sisyphus.uninstall.cliExecForce(pkgname)
@app.command("autoremove")
def autoremove():
@@ -213,7 +213,7 @@ def spmsync():
When you install something with Portage directly (emerge), Sisyphus is not aware of that package, and it doesn't track it in it's database.
Use this command to synchronize Sisyphus's package database with Portage's package database.
"""
- sisyphus.syncSPM.cliExec()
+ sisyphus.syncspm.cliExec()
@app.command("rescue")
def rescue():
@@ -272,7 +272,7 @@ def branch(branch: Branch = typer.Argument(...), remote: Remote = typer.Option(R
@app.command("sysinfo")
def sysinfo():
"""Display information about installed core packages and portage configuration."""
- sisyphus.sysInfo.show()
+ sisyphus.sysinfo.show()
@mirrorSetup.command("list")
def mirrorlist():
diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py
index d5766dc..e33c3be 100644
--- a/src/frontend/gui/sisyphus-gui.py
+++ b/src/frontend/gui/sisyphus-gui.py
@@ -405,7 +405,7 @@ class MainWorker(QtCore.QObject):
def startUninstall(self):
self.started.emit()
pkgname = Sisyphus.pkgname
- sisyphus.uninstallAll.guiExec(pkgname)
+ sisyphus.uninstall.guiExec(pkgname)
self.finished.emit()
@QtCore.pyqtSlot()