diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-11-20 16:43:00 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-11-20 16:43:00 +0000 |
commit | d7cd57ef0934be4830fe1518ed35841550398f7e (patch) | |
tree | 48486b0c9d7c608641a2e26d865276b2bd291a14 /src/frontend/gui | |
parent | 79e76651af803fd682004778b2b3d4cb37a08a8e (diff) |
libsisyphus : make use of tuples to get all dependency (binary,source) information in one go, thus improving dependency resolution time by 100%
Diffstat (limited to 'src/frontend/gui')
-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 29f3ee6..f69a164 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() - binaryDeps = getPkgBinaryDeps(pkgList) + binaryDeps,sourceDeps = getPackageDeps(pkgList) binaryPkgs = [] os.chdir(portageCache) @@ -427,7 +427,7 @@ class MainWorker(QtCore.QObject): self.started.emit() binhostURL = getBinhostURL() - binaryDeps = getWorldBinaryDeps() + binaryDeps,sourceDeps = getWorldDeps() binaryPkgs = [] os.chdir(portageCache) |