From 6b03b9c1bbc9ef3e3c31eab7c08871fbd22854de Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 9 Nov 2018 20:36:32 +0000 Subject: use portage cache as download location for binaries --- src/backend/libsisyphus.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/backend/libsisyphus.py b/src/backend/libsisyphus.py index c7c951e..5f18bae 100644 --- a/src/backend/libsisyphus.py +++ b/src/backend/libsisyphus.py @@ -204,6 +204,7 @@ def startInstall(pkgList): pkgBins = [] if not len(pkgDeps) == 0: + os.chdir(portageCache) if input("\n" + "These are the packages that would be merged, in order:" + "\n\n" + str(pkgDeps) + "\n\n" + "Total:" + " " + str(len(pkgDeps)) + " " + "package(s)" + "\n\n" "Would you like to proceed?" + " " + "[y/N]" + " ").lower().strip()[:1] == "y": for index, url in enumerate([binhostURL + package + '.tbz2' for package in pkgDeps]): print(">>> Fetching" + " " + url) @@ -244,6 +245,7 @@ def startUpgrade(): worldBins = [] if not len(worldDeps) == 0: + os.chdir(portageCache) if input("\n" + "These are the packages that would be merged, in order:" + "\n\n" + str(worldDeps) + "\n\n" + "Total:" + " " + str(len(worldDeps)) + " " + "package(s)" + "\n\n" "Would you like to proceed?" + " " + "[y/N]" + " ").lower().strip()[:1] == "y": for index, url in enumerate([binhostURL + package + '.tbz2' for package in worldDeps]): print(">>> Fetching" + " " + url) -- cgit v1.2.3