From d5fcb065ad5442e20517ff35508c6b4b8ca59ef1 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 30 Oct 2022 14:41:24 +0000 Subject: move resolveDeps -> solvedeps --- src/backend/upgradePkg.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/backend/upgradePkg.py') diff --git a/src/backend/upgradePkg.py b/src/backend/upgradePkg.py index 63a6973..566ff85 100644 --- a/src/backend/upgradePkg.py +++ b/src/backend/upgradePkg.py @@ -11,7 +11,7 @@ import sisyphus.checkenv import sisyphus.getenv import sisyphus.getfs import sisyphus.killemerge -import sisyphus.resolveDeps +import sisyphus.solvedeps import sisyphus.syncDatabase import sisyphus.updateAll @@ -20,7 +20,7 @@ def cliExec(): sisyphus.updateAll.cliExec() binhostURL = sisyphus.getenv.binhostURL() - areBinaries,areSources,needsConfig = sisyphus.resolveDeps.world() + areBinaries,areSources,needsConfig = sisyphus.solvedeps.world() if needsConfig == 0: if len(areSources) == 0: @@ -60,7 +60,7 @@ def cliExec(): def guiExec(): binhostURL = sisyphus.getenv.binhostURL() - areBinaries,areSources,needsConfig = sisyphus.resolveDeps.world.__wrapped__() #undecorate + areBinaries,areSources,needsConfig = sisyphus.solvedeps.world.__wrapped__() #undecorate if not len(areSources) == 0: print("\n" + "Source package(s) found in the mix;" + " " + "Use sisyphus CLI:" + " " + "'" + "sisyphus upgrade --ebuild" + "'" + " " + "to perform the upgrade;" + " " + "Aborting." + "\n") -- cgit v1.2.3