summaryrefslogtreecommitdiff
path: root/src/backend/install.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-04-07 18:26:10 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-04-07 18:26:10 +0100
commitb4d6245c84fdbabed108434b800a53cd91fc5b46 (patch)
treed374b7ea1395d224423cf66cd25a0f4313630f17 /src/backend/install.py
parentcf87b3a5d27636caf7e9085d12ded34039d21356 (diff)
backend : rewrite the dependency solver in a more efficient way
Diffstat (limited to 'src/backend/install.py')
-rw-r--r--src/backend/install.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/install.py b/src/backend/install.py
index 1316c22..5f89b01 100644
--- a/src/backend/install.py
+++ b/src/backend/install.py
@@ -19,7 +19,7 @@ import sisyphus.update
def start(pkgname):
if sisyphus.checkenv.root():
sisyphus.update.start()
- sisyphus.solvedeps.pkg(pkgname)
+ sisyphus.solvedeps.start(pkgname)
bin_list, src_list, need_cfg = pickle.load(
open(os.path.join(sisyphus.getfs.p_mtd_dir, "sisyphus_pkgdeps.pickle"), "rb"))
@@ -73,7 +73,7 @@ def start(pkgname):
def estart(pkgname):
if sisyphus.checkenv.root():
sisyphus.update.start()
- sisyphus.solvedeps.pkg(pkgname)
+ sisyphus.solvedeps.start(pkgname)
bin_list, src_list, need_cfg = pickle.load(
open(os.path.join(sisyphus.getfs.p_mtd_dir, "sisyphus_pkgdeps.pickle"), "rb"))
@@ -165,7 +165,7 @@ def estart(pkgname):
def xstart(pkgname):
- sisyphus.solvedeps.pkg.__wrapped__(pkgname) # undecorate
+ sisyphus.solvedeps.start.__wrapped__(pkgname) # undecorate
bin_list, src_list, need_cfg = pickle.load(
open(os.path.join(sisyphus.getfs.p_mtd_dir, "sisyphus_pkgdeps.pickle"), "rb"))