summaryrefslogtreecommitdiff
path: root/src/frontend
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-11-20 16:43:00 +0000
committerV3n3RiX <venerix@redcorelinux.org>2018-11-20 16:43:00 +0000
commitd7cd57ef0934be4830fe1518ed35841550398f7e (patch)
tree48486b0c9d7c608641a2e26d865276b2bd291a14 /src/frontend
parent79e76651af803fd682004778b2b3d4cb37a08a8e (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')
-rw-r--r--src/frontend/gui/sisyphus-gui.py4
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)