[oe-commits] Hongxu Jia : lib/oe/manifest.py: add rpm image manifest creation

git at git.openembedded.org git at git.openembedded.org
Tue Feb 11 11:57:01 UTC 2014


Module: openembedded-core.git
Branch: master-next
Commit: a0ef59ef9263653877db4853633883f2684d7a30
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=a0ef59ef9263653877db4853633883f2684d7a30

Author: Hongxu Jia <hongxu.jia at windriver.com>
Date:   Thu Jan 23 16:47:00 2014 +0800

lib/oe/manifest.py: add rpm image manifest creation

Implementation RpmManifest class.

Signed-off-by: Hongxu Jia <hongxu.jia at windriver.com>
Signed-off-by: Laurentiu Palcu <laurentiu.palcu at intel.com>

---

 meta/lib/oe/manifest.py | 42 +++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 41 insertions(+), 1 deletion(-)

diff --git a/meta/lib/oe/manifest.py b/meta/lib/oe/manifest.py
index e633898..a4bc04b 100644
--- a/meta/lib/oe/manifest.py
+++ b/meta/lib/oe/manifest.py
@@ -160,8 +160,48 @@ class Manifest(object):
 
 
 class RpmManifest(Manifest):
+    """
+    Returns a dictionary object with mip and mlp packages.
+    """
+    def _split_multilib(self, pkg_list):
+        pkgs = dict()
+
+        for pkg in pkg_list.split():
+            pkg_type = self.PKG_TYPE_MUST_INSTALL
+
+            ml_variants = self.d.getVar('MULTILIB_VARIANTS', True).split()
+
+            for ml_variant in ml_variants:
+                if pkg.startswith(ml_variant + '-'):
+                    pkg_type = self.PKG_TYPE_MULTILIB
+
+            if not pkg_type in pkgs:
+                pkgs[pkg_type] = pkg
+            else:
+                pkgs[pkg_type] += " " + pkg
+
+        return pkgs
+
     def create_initial(self):
-        self._create_dummy_initial()
+        pkgs = dict()
+
+        with open(self.initial_manifest, "w+") as manifest:
+            manifest.write(self.initial_manifest_file_header)
+
+            for var in self.var_maps[self.manifest_type]:
+                if var in self.vars_to_split:
+                    split_pkgs = self._split_multilib(self.d.getVar(var, True))
+                    if split_pkgs is not None:
+                        pkgs = dict(pkgs.items() + split_pkgs.items())
+                else:
+                    pkg_list = self.d.getVar(var, True)
+                    if pkg_list is not None:
+                        pkgs[self.var_maps[self.manifest_type][var]] = self.d.getVar(var, True)
+
+            for pkg_type in pkgs:
+                for pkg in pkgs[pkg_type].split():
+                    manifest.write("%s,%s\n" % (pkg_type, pkg))
+
 
     def create_final(self):
         pass



More information about the Openembedded-commits mailing list