]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake.conf & package.bbclass: Use default SUMMARY and DESCRIPTION
authorMark Hatle <mark.hatle@windriver.com>
Wed, 2 Feb 2011 15:16:47 +0000 (09:16 -0600)
committerSaul Wold <sgw@linux.intel.com>
Thu, 3 Feb 2011 19:48:48 +0000 (11:48 -0800)
A new default SUMMARY and DESCRIPTION was defined for any package that
previously did not contain one.  This value is based on the original
SUMMARY_${PN} value.

The new default SUMMARY and DESCRIPTION is used as a basis for all of
the automatic summary and descriptions for the various package splits,
include ${PN}, ${PN}-dbg, ${PN}-dev, ${PN}-doc, and locales.

A recipe may also override any of the automatic summaries by simply
specifying the value.

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
meta/classes/package.bbclass
meta/conf/bitbake.conf

index bdc5d93f0b6d97d96ad2e206f3979dcca755d920..e64e4419fcabc8ced807fb046ab137b5445771d9 100644 (file)
@@ -289,6 +289,8 @@ python package_do_split_locales() {
        if mainpkg.find('-dev'):
                mainpkg = mainpkg.replace('-dev', '')
 
+       summary = bb.data.getVar('SUMMARY', d, True) or pn
+       description = bb.data.getVar('DESCRIPTION', d, True) or "" 
        for l in locales:
                ln = legitimize_package_name(l)
                pkg = pn + '-locale-' + ln
@@ -296,7 +298,8 @@ python package_do_split_locales() {
                bb.data.setVar('FILES_' + pkg, os.path.join(datadir, 'locale', l), d)
                bb.data.setVar('RDEPENDS_' + pkg, '%s virtual-locale-%s' % (mainpkg, ln), d)
                bb.data.setVar('RPROVIDES_' + pkg, '%s-locale %s-translation' % (pn, ln), d)
-               bb.data.setVar('DESCRIPTION_' + pkg, '%s translation for %s' % (l, pn), d)
+               bb.data.setVar('SUMMARY_' + pkg, '%s - %s translations' % (summary, l), d)
+               bb.data.setVar('DESCRIPTION_' + pkg, '%s  This package contains language translation files for the %s locale.' % (description, l), d)
 
        bb.data.setVar('PACKAGES', ' '.join(packages), d)
 
index 3292a49c0dcb8ec3b6d321a33cd4d1b540d4dce6..f08dda646d118fe31fa38e1e4cff3e0c14f366df 100644 (file)
@@ -166,14 +166,28 @@ BP = "${BPN}-${PV}"
 
 SECTION = "base"
 PRIORITY = "optional"
-SUMMARY_${PN} ?= "${PN} version ${PV}-${PR}"
-SUMMARY_${PN}-dbg ?= "Debugging files for ${PN}"
-SUMMARY_${PN}-dev ?= "Development files for ${PN}"
-SUMMARY_${PN}-doc ?= "Documentation files for ${PN}"
-DESCRIPTION_${PN} ?= "${SUMMARY_${PN}}"
-DESCRIPTION_${PN}-dbg ?= "${SUMMARY_${PN}-dbg}"
-DESCRIPTION_${PN}-dev ?= "${SUMMARY_${PN}-dev}"
-DESCRIPTION_${PN}-doc ?= "${SUMMARY_${PN}-doc}"
+SUMMARY ?= "${PN} version ${PV}-${PR}"
+DESCRIPTION ?= "${SUMMARY}"
+
+# The following two are commented out because they result in a recursive
+# definition of the variable in some corner cases.  These are left in
+# to illustrate the intended behavior.
+#SUMMARY_${PN} ?= "${SUMMARY}"
+#DESCRIPTION_${PN} ?= "${DESCRIPTION}"
+
+SUMMARY_${PN}-dbg ?= "${SUMMARY} - Debugging files"
+DESCRIPTION_${PN}-dbg ?= "${DESCRIPTION}  \
+This package contains ELF symbols and related sources for debugging purposes."
+
+SUMMARY_${PN}-dev ?= "${SUMMARY} - Development files"
+DESCRIPTION_${PN}-dev ?= "${DESCRIPTION}  \
+This package contains symbolic links, static binaries, header files, and \
+related items necessary for software development."
+
+SUMMARY_${PN}-doc ?= "${SUMMARY} - Documentation files"
+DESCRIPTION_${PN}-doc ?= "${DESCRIPTION}  \
+This package contains documentation."
+
 LICENSE = "INVALID"
 MAINTAINER = "Yocto Project Team <poky@yoctoproject.org>"
 HOMEPAGE = "unknown"