diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2014-01-23 16:47:00 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-11 11:53:41 +0000 |
commit | dff8a593afc880a18c2a48d33161cefb45263c8e (patch) | |
tree | ec9e67c4f3f2a01ce9a9863bc044e77ededba7c6 /meta/lib | |
parent | cb137719f254359fbd5a9f92a76c597e4e5216e7 (diff) | |
download | poky-dff8a593afc880a18c2a48d33161cefb45263c8e.tar.gz |
lib/oe/manifest.py: add rpm image manifest creation
Implementation RpmManifest class.
(From OE-Core rev: a0ef59ef9263653877db4853633883f2684d7a30)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/manifest.py | 42 |
1 files changed, 41 insertions, 1 deletions
diff --git a/meta/lib/oe/manifest.py b/meta/lib/oe/manifest.py index e6338981c3..a4bc04b4f2 100644 --- a/meta/lib/oe/manifest.py +++ b/meta/lib/oe/manifest.py | |||
@@ -160,8 +160,48 @@ class Manifest(object): | |||
160 | 160 | ||
161 | 161 | ||
162 | class RpmManifest(Manifest): | 162 | class RpmManifest(Manifest): |
163 | """ | ||
164 | Returns a dictionary object with mip and mlp packages. | ||
165 | """ | ||
166 | def _split_multilib(self, pkg_list): | ||
167 | pkgs = dict() | ||
168 | |||
169 | for pkg in pkg_list.split(): | ||
170 | pkg_type = self.PKG_TYPE_MUST_INSTALL | ||
171 | |||
172 | ml_variants = self.d.getVar('MULTILIB_VARIANTS', True).split() | ||
173 | |||
174 | for ml_variant in ml_variants: | ||
175 | if pkg.startswith(ml_variant + '-'): | ||
176 | pkg_type = self.PKG_TYPE_MULTILIB | ||
177 | |||
178 | if not pkg_type in pkgs: | ||
179 | pkgs[pkg_type] = pkg | ||
180 | else: | ||
181 | pkgs[pkg_type] += " " + pkg | ||
182 | |||
183 | return pkgs | ||
184 | |||
163 | def create_initial(self): | 185 | def create_initial(self): |
164 | self._create_dummy_initial() | 186 | pkgs = dict() |
187 | |||
188 | with open(self.initial_manifest, "w+") as manifest: | ||
189 | manifest.write(self.initial_manifest_file_header) | ||
190 | |||
191 | for var in self.var_maps[self.manifest_type]: | ||
192 | if var in self.vars_to_split: | ||
193 | split_pkgs = self._split_multilib(self.d.getVar(var, True)) | ||
194 | if split_pkgs is not None: | ||
195 | pkgs = dict(pkgs.items() + split_pkgs.items()) | ||
196 | else: | ||
197 | pkg_list = self.d.getVar(var, True) | ||
198 | if pkg_list is not None: | ||
199 | pkgs[self.var_maps[self.manifest_type][var]] = self.d.getVar(var, True) | ||
200 | |||
201 | for pkg_type in pkgs: | ||
202 | for pkg in pkgs[pkg_type].split(): | ||
203 | manifest.write("%s,%s\n" % (pkg_type, pkg)) | ||
204 | |||
165 | 205 | ||
166 | def create_final(self): | 206 | def create_final(self): |
167 | pass | 207 | pass |