diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-03-01 22:42:04 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-03-01 22:42:04 +0000 |
commit | 6ff384e5716dc9392475c35bb381a2872e9f2e6b (patch) | |
tree | c91383727cc7b7a6e6c522a130191dffa2b53d9a /src/frontend/gui | |
parent | d81c5e5ffd727a4a0e00910b93eb17737d8f8193 (diff) |
* expose the --nodeps option from Portage in Sisyphus CLIv6.2403.1
* use it to install packages without retreiving their dependencies
* rewrite and update the CLI help menu to reflect the new option
* some minor cosmetic fixes
Diffstat (limited to 'src/frontend/gui')
-rw-r--r-- | src/frontend/gui/sisyphus-gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py index 44820f7..684a780 100644 --- a/src/frontend/gui/sisyphus-gui.py +++ b/src/frontend/gui/sisyphus-gui.py @@ -441,7 +441,7 @@ class MainWorker(QtCore.QObject): def startInstall(self): self.started.emit() pkgname = Sisyphus.pkgname - sisyphus.instpkgsrc.start(pkgname, ebuild=False, gfx_ui=True, oneshot=False) + sisyphus.instpkgsrc.start(pkgname, ebuild=False, gfx_ui=True, oneshot=False, nodeps=False) self.finished.emit() @QtCore.pyqtSlot() |