From d7cd57ef0934be4830fe1518ed35841550398f7e Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Tue, 20 Nov 2018 16:43:00 +0000 Subject: libsisyphus : make use of tuples to get all dependency (binary,source) information in one go, thus improving dependency resolution time by 100% --- src/frontend/gui/sisyphus-gui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/frontend') 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) -- cgit v1.2.3