summaryrefslogtreecommitdiff
path: root/lib/thandy/ClientCLI.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/thandy/ClientCLI.py')
-rw-r--r--lib/thandy/ClientCLI.py18
1 files changed, 10 insertions, 8 deletions
diff --git a/lib/thandy/ClientCLI.py b/lib/thandy/ClientCLI.py
index ad9f220..fa73ab2 100644
--- a/lib/thandy/ClientCLI.py
+++ b/lib/thandy/ClientCLI.py
@@ -110,10 +110,6 @@ def update(args):
thandy.socksurls.setSocksProxy("127.0.0.1", socksPort)
repo = thandy.repository.LocalRepository(repoRoot)
- packagesys = None
- if use_packagesys:
- packagesys = thandy.packagesys.PackageSystem.PackageMetasystem.create(repo)
-
downloader = thandy.download.DownloadManager()
downloader.start()
@@ -125,7 +121,7 @@ def update(args):
installable = {}
logging.info("Checking for files to update.")
files = repo.getFilesToUpdate(trackingBundles=args, hashDict=hashes,
- pkgSystems=packagesys,
+ usePackageSystem=use_packagesys,
installableDict=installable)
if forceCheck:
@@ -134,8 +130,12 @@ def update(args):
if installable and not files:
for p, d in installable.items():
- for n in d.keys():
- logCtrl("CAN_INSTALL", PKG=p, ITEM=n)
+ for n, i in d.items():
+ if i.canInstall():
+ logCtrl("CAN_INSTALL", PKG=p, ITEM=n)
+ else:
+ logCtrl("NO_INSTALL", PKG=p, ITEM=n)
+ i.setCacheRoot(repoRoot)
logging.info("Ready to install packages for files: %s",
", ".join(sorted(installable.keys())))
@@ -143,7 +143,9 @@ def update(args):
# XXXX handle ordering
for p in installable.values():
for h in p.values():
- h.install()
+ i = h.getInstaller()
+ if i != None:
+ i.install()
return
elif not files: