diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2019-02-27 11:41:04 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2019-02-27 11:41:04 +0000 |
commit | 93baf2a6d49e0d8d16b17ba814b5879cfe01b4ff (patch) | |
tree | c2a9b6560f2a9cb1758dc715220da1dd307f8e97 /src/frontend/gui/sisyphus-gui.py | |
parent | 797a3e52e7fcee4cbfbefba9abf6c7ad8282dfd6 (diff) |
libsisyphus backend :
* detect when a package needs a keyword or mask change in order to proceed
* print the requierd changes to stdout, and suggest user to appply them in order to proceed
* this fixes a bug when sisyphus would start to download the binary dependencies of keyworded or masked packages but fail to install them due to missing keyword or mask changes
sisyphus-gui :
* adjust to libsisyphus backend changes
Diffstat (limited to 'src/frontend/gui/sisyphus-gui.py')
-rw-r--r-- | src/frontend/gui/sisyphus-gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py index 56c4ed2..7d88fa6 100644 --- a/src/frontend/gui/sisyphus-gui.py +++ b/src/frontend/gui/sisyphus-gui.py @@ -366,7 +366,7 @@ class MainWorker(QtCore.QObject): pkgList = Sisyphus.pkgList binhostURL = getBinhostURL() - areBinaries,areSources = getPackageDeps(pkgList) + areBinaries,areSources,needsConfig = getPackageDeps(pkgList) binaryPkgs = [] os.chdir(portageCache) @@ -427,7 +427,7 @@ class MainWorker(QtCore.QObject): self.started.emit() binhostURL = getBinhostURL() - areBinaries,areSources = getWorldDeps() + areBinaries,areSources,needsConfig = getWorldDeps() binaryPkgs = [] os.chdir(portageCache) |