[OE-core] [PATCH 1/2] package.bbclass: add getter of additional metadata

Leonid Borisenko ive.found at gmail.com
Sun May 13 13:28:41 UTC 2012


Two variables are searched for value of additional package metadata:

  * PACKAGE_ADD_METADATA_<PKGTYPE>
  * PACKAGE_ADD_METADATA

First found variable with defined value wins.

<PKGTYPE> is a parameter of getter and expected to be a distinct name
of specific package type. For example: 'DEB' or 'RPM'.

Variable can contain multiple [one-line] metadata fields, separated by
literal sequence '\n'. Separator can be redefined through variable flag
'separator'. Getter returns found value with separator replaced with
newline character.

As side-effect, searched variables acquired flags 'type' (equals to
'list') and 'separator'.

Signed-off-by: Leonid Borisenko <ive.found at gmail.com>
---
 meta/classes/package.bbclass |   11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index 99836e9..a40476c 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -326,6 +326,17 @@ def get_package_mapping (pkg, d):
 
 	return pkg
 
+def get_package_additional_metadata (pkg_type, d):
+	base_key = "PACKAGE_ADD_METADATA"
+	for key in ("%s_%s" % (base_key, pkg_type.upper()), base_key):
+		if d.getVar(key) is None:
+			continue
+		d.setVarFlag(key, "type", "list")
+		if d.getVarFlag(key, "separator") is None:
+			d.setVarFlag(key, "separator", "\\n")
+		metadata_fields = [field.strip() for field in oe.data.typed_value(key, d)]
+		return "\n".join(metadata_fields).strip()
+
 def runtime_mapping_rename (varname, d):
 	#bb.note("%s before: %s" % (varname, d.getVar(varname, True)))	
 
-- 
1.7.10





More information about the Openembedded-core mailing list