summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/package_manager.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe/package_manager.py')
-rw-r--r--meta/lib/oe/package_manager.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py
index 8954338347..ad63fa31bf 100644
--- a/meta/lib/oe/package_manager.py
+++ b/meta/lib/oe/package_manager.py
@@ -563,6 +563,29 @@ class PackageManager(object, metaclass=ABCMeta):
563 pass 563 pass
564 564
565 """ 565 """
566 Install all packages that match a glob.
567 """
568 def install_glob(self, globs, sdk=False):
569 # TODO don't have sdk here but have a property on the superclass
570 # (and respect in install_complementary)
571 if sdk:
572 pkgdatadir = self.d.expand("${TMPDIR}/pkgdata/${SDK_SYS}")
573 else:
574 pkgdatadir = self.d.getVar("PKGDATA_DIR", True)
575
576 try:
577 bb.note("Installing globbed packages...")
578 cmd = ["oe-pkgdata-util", "-p", pkgdatadir, "list-pkgs", globs]
579 pkgs = subprocess.check_output(cmd, stderr=subprocess.STDOUT).decode("utf-8")
580 self.install(pkgs.split(), attempt_only=True)
581 except subprocess.CalledProcessError as e:
582 # Return code 1 means no packages matched
583 if e.returncode != 1:
584 bb.fatal("Could not compute globbed packages list. Command "
585 "'%s' returned %d:\n%s" %
586 (' '.join(cmd), e.returncode, e.output.decode("utf-8")))
587
588 """
566 Install complementary packages based upon the list of currently installed 589 Install complementary packages based upon the list of currently installed
567 packages e.g. locales, *-dev, *-dbg, etc. This will only attempt to install 590 packages e.g. locales, *-dev, *-dbg, etc. This will only attempt to install
568 these packages, if they don't exist then no error will occur. Note: every 591 these packages, if they don't exist then no error will occur. Note: every