Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 00/21] Improve recipe meta-information in OE-Core
@ 2013-04-24 17:48 Paul Eggleton
  2013-04-24 17:48 ` [PATCH 01/21] connman-conf: add SUMMARY and DESCRIPTION Paul Eggleton
                   ` (20 more replies)
  0 siblings, 21 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

A number of recipes have inadequate DESCRIPTION and SUMMARY values,
and some don't have either. Set values for those in the latter category
and fix up the values for others (as well as taking care of HOMEPAGE in
some cases).

Many of these fixes were originally contributed by Belen Barros Pena <belen.barros.pena@intel.com>.

Note that we still have a lot of recipes with missing SUMMARY, which
results in output packages getting fairly useless values "xyz version 1.2.3";
as a rule, recipes should set SUMMARY rather than DESCRIPTION if they are
only going to set a short description anyway (since DESCRIPTION will get
the value of SUMMARY if not set, but the reverse is not true).


The following changes since commit 395b90054eccddc1c9062a9a8657ed4482b7710a:

  glib-2.0: disable tests for native builds, and respect ptest for LSB (2013-04-22 15:48:57 +0100)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib paule/descs
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/descs

Paul Eggleton (21):
  connman-conf: add SUMMARY and DESCRIPTION
  eglibc: add common HOMEPAGE and SUMMARY for eglibc-locale
  gettext-minimal-native: add SUMMARY and DESCRIPTION
  build-appliance-image: add SUMMARY, HOMEPAGE and improve DESCRIPTION
  libcgroup: add SUMMARY and better DESCRIPTION
  readline: add SUMMARY
  external-sourcery-toolchain: add SUMMARY
  icon-naming-utils: add SUMMARY and DESCRIPTION
  mtools: use same SUMMARY as newer version of mtools recipe
  which: use the same meta fields for both versions
  libxml-simple-perl: add SUMMARY, DESCRIPTION and HOMEPAGE
  python-smartpm: fix HOMEPAGE and adjust DESCRIPTION
  gnome-doc-utils: add SUMMARY and DESCRIPTION
  packagegroup-core-x11-xserver: set SUMMARY instead of SUMMARY_${PN}
  rgb: add SUMMARY and DESCRIPTION
  xeyes: add SUMMARY and DESCRIPTION
  gst-openmax: add SUMMARY, DESCRIPTION and HOMEPAGE
  hwlatdetect: add SUMMARY and DESCRIPTION
  ptest-runner: add SUMMARY, DESCRIPTION and HOMEPAGE
  core-image-directfb: add SUMMARY
  gpgme: add short SUMMARY

 meta/recipes-connectivity/connman/connman-conf.bb           |    5 +++--
 meta/recipes-core/eglibc/eglibc-collateral.inc              |    1 +
 meta/recipes-core/eglibc/eglibc-locale.inc                  |    2 ++
 meta/recipes-core/gettext/gettext-minimal-native_0.18.2.bb  |    5 +++++
 meta/recipes-core/images/build-appliance-image.bb           |    8 +++++---
 meta/recipes-core/libcgroup/libcgroup_0.38.bb               |    5 ++++-
 meta/recipes-core/meta/external-sourcery-toolchain.bb       |    1 +
 meta/recipes-core/readline/readline.inc                     |    1 +
 meta/recipes-core/readline/readline_5.2.bb                  |    1 +
 .../icon-naming-utils/icon-naming-utils_0.8.90.bb           |   10 ++++++++++
 meta/recipes-devtools/mtools/mtools_3.9.9.bb                |    1 +
 meta/recipes-devtools/perl/libxml-simple-perl_2.20.bb       |    7 +++++++
 meta/recipes-devtools/python/python-smartpm_1.4.1.bb        |    6 ++----
 meta/recipes-extended/which/which_2.18.bb                   |    6 +++---
 meta/recipes-extended/which/which_2.20.bb                   |   11 ++++++++---
 meta/recipes-gnome/gnome/gnome-doc-utils.inc                |    6 ++++++
 meta/recipes-graphics/images/core-image-directfb.bb         |    1 +
 .../packagegroups/packagegroup-core-x11-xserver.bb          |    2 +-
 meta/recipes-graphics/xorg-app/rgb_1.0.5.bb                 |    7 +++++++
 meta/recipes-graphics/xorg-app/xeyes_1.1.1.bb               |    5 +++++
 meta/recipes-multimedia/gstreamer/gst-openmax_0.10.1.bb     |    6 ++++++
 meta/recipes-rt/rt-tests/hwlatdetect_0.85.bb                |    3 ++-
 meta/recipes-support/gpgme/gpgme_1.4.0.bb                   |    1 +
 meta/recipes-support/ptest-runner/ptest-runner_1.0.bb       |    5 +++++
 24 files changed, 88 insertions(+), 18 deletions(-)

-- 
1.7.10.4




^ permalink raw reply	[flat|nested] 22+ messages in thread

* [PATCH 01/21] connman-conf: add SUMMARY and DESCRIPTION
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 02/21] eglibc: add common HOMEPAGE and SUMMARY for eglibc-locale Paul Eggleton
                   ` (19 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-connectivity/connman/connman-conf.bb |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-connectivity/connman/connman-conf.bb b/meta/recipes-connectivity/connman/connman-conf.bb
index 6ecfbfb..af72640 100644
--- a/meta/recipes-connectivity/connman/connman-conf.bb
+++ b/meta/recipes-connectivity/connman/connman-conf.bb
@@ -1,5 +1,6 @@
-#connman config to setup wired interface on qemu machines
-
+SUMMARY = "Connman config to setup wired interface on qemu machines"
+DESCRIPTION = "This is the ConnMan configuration to set up a Wired \
+network interface for a qemu machine."
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6"
 
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 02/21] eglibc: add common HOMEPAGE and SUMMARY for eglibc-locale
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
  2013-04-24 17:48 ` [PATCH 01/21] connman-conf: add SUMMARY and DESCRIPTION Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 03/21] gettext-minimal-native: add SUMMARY and DESCRIPTION Paul Eggleton
                   ` (18 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Add SUMMARY for eglibc-locale, and HOMEPAGE in eglibc-collateral.inc
(used for eglibc-locale and eglibc-mtrace).

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-core/eglibc/eglibc-collateral.inc |    1 +
 meta/recipes-core/eglibc/eglibc-locale.inc     |    2 ++
 2 files changed, 3 insertions(+)

diff --git a/meta/recipes-core/eglibc/eglibc-collateral.inc b/meta/recipes-core/eglibc/eglibc-collateral.inc
index b770bb0..8feca09 100644
--- a/meta/recipes-core/eglibc/eglibc-collateral.inc
+++ b/meta/recipes-core/eglibc/eglibc-collateral.inc
@@ -1,5 +1,6 @@
 INHIBIT_DEFAULT_DEPS = "1"
 LICENSE = "GPLv2 & LGPLv2.1"
+HOMEPAGE = "http://www.eglibc.org/"
 
 do_fetch[noexec] = "1"
 do_unpack[noexec] = "1"
diff --git a/meta/recipes-core/eglibc/eglibc-locale.inc b/meta/recipes-core/eglibc/eglibc-locale.inc
index 3d6382d..f4cb814 100644
--- a/meta/recipes-core/eglibc/eglibc-locale.inc
+++ b/meta/recipes-core/eglibc/eglibc-locale.inc
@@ -1,5 +1,7 @@
 include eglibc-collateral.inc
 
+SUMMARY = "Locale data from eglibc"
+
 BPN = "eglibc"
 LOCALEBASEPN = "${MLPREFIX}eglibc"
 
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 03/21] gettext-minimal-native: add SUMMARY and DESCRIPTION
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
  2013-04-24 17:48 ` [PATCH 01/21] connman-conf: add SUMMARY and DESCRIPTION Paul Eggleton
  2013-04-24 17:48 ` [PATCH 02/21] eglibc: add common HOMEPAGE and SUMMARY for eglibc-locale Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 04/21] build-appliance-image: add SUMMARY, HOMEPAGE and improve DESCRIPTION Paul Eggleton
                   ` (17 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-core/gettext/gettext-minimal-native_0.18.2.bb |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/meta/recipes-core/gettext/gettext-minimal-native_0.18.2.bb b/meta/recipes-core/gettext/gettext-minimal-native_0.18.2.bb
index da6d3bc..febad7a 100644
--- a/meta/recipes-core/gettext/gettext-minimal-native_0.18.2.bb
+++ b/meta/recipes-core/gettext/gettext-minimal-native_0.18.2.bb
@@ -1,3 +1,8 @@
+SUMMARY = "Minimal gettext for supporting native autoconf/automake"
+DESCRIPTION = "Contains the m4 macros sufficient to support building \
+autoconf/automake. This provides a significant build time speedup by \
+the removal of gettext-native from most dependency chains (now only \
+needed for gettext for the target)."
 SRC_URI = "file://aclocal.tgz \
            file://config.rpath \
            file://Makefile.in.in \
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 04/21] build-appliance-image: add SUMMARY, HOMEPAGE and improve DESCRIPTION
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
                   ` (2 preceding siblings ...)
  2013-04-24 17:48 ` [PATCH 03/21] gettext-minimal-native: add SUMMARY and DESCRIPTION Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 05/21] libcgroup: add SUMMARY and better DESCRIPTION Paul Eggleton
                   ` (16 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Move the link from DESCRIPTION to HOMEPAGE and add a short SUMMARY.
Also move IMAGE_INSTALL line to be further down in the recipe.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-core/images/build-appliance-image.bb |    8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-core/images/build-appliance-image.bb b/meta/recipes-core/images/build-appliance-image.bb
index 53e6edc..fad4176 100644
--- a/meta/recipes-core/images/build-appliance-image.bb
+++ b/meta/recipes-core/images/build-appliance-image.bb
@@ -1,11 +1,13 @@
-DESCRIPTION = "An image you can boot and run using either the VMware Player or VMware Workstation.\
- For more information, see the <a href='http://www.yoctoproject.org/documentation/build-appliance'>Build Appliance page</a>."
-IMAGE_INSTALL = "packagegroup-core-boot packagegroup-core-ssh-openssh packagegroup-self-hosted"
+SUMMARY = "An image containing the build system itself"
+DESCRIPTION = "An image containing the build system that you can boot and run using either VMware Player or VMware Workstation."
+HOMEPAGE = "http://www.yoctoproject.org/documentation/build-appliance"
 
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
                     file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
 
+IMAGE_INSTALL = "packagegroup-core-boot packagegroup-core-ssh-openssh packagegroup-self-hosted"
+
 IMAGE_FEATURES += "x11-base package-management splash"
 
 # Ensure there's enough space to do a core-image-sato build, with rm_work enabled
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 05/21] libcgroup: add SUMMARY and better DESCRIPTION
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
                   ` (3 preceding siblings ...)
  2013-04-24 17:48 ` [PATCH 04/21] build-appliance-image: add SUMMARY, HOMEPAGE and improve DESCRIPTION Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 06/21] readline: add SUMMARY Paul Eggleton
                   ` (15 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-core/libcgroup/libcgroup_0.38.bb |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-core/libcgroup/libcgroup_0.38.bb b/meta/recipes-core/libcgroup/libcgroup_0.38.bb
index 32b87e6..8bd0ead 100644
--- a/meta/recipes-core/libcgroup/libcgroup_0.38.bb
+++ b/meta/recipes-core/libcgroup/libcgroup_0.38.bb
@@ -1,4 +1,7 @@
-DESCRIPTION = "Libcgroup"
+SUMMARY = "Linux control group abstraction library"
+DESCRIPTION = "libcgroup is a library that abstracts the control group file system \
+in Linux. Control groups allow you to limit, account and isolate resource usage \
+(CPU, memory, disk I/O, etc.) of groups of processes."
 SECTION = "libs"
 LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1"
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 06/21] readline: add SUMMARY
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
                   ` (4 preceding siblings ...)
  2013-04-24 17:48 ` [PATCH 05/21] libcgroup: add SUMMARY and better DESCRIPTION Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 07/21] external-sourcery-toolchain: " Paul Eggleton
                   ` (14 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-core/readline/readline.inc    |    1 +
 meta/recipes-core/readline/readline_5.2.bb |    1 +
 2 files changed, 2 insertions(+)

diff --git a/meta/recipes-core/readline/readline.inc b/meta/recipes-core/readline/readline.inc
index b61104c..6c43e2d 100644
--- a/meta/recipes-core/readline/readline.inc
+++ b/meta/recipes-core/readline/readline.inc
@@ -1,3 +1,4 @@
+SUMMARY = "Library for editing typed command lines"
 DESCRIPTION = "The GNU Readline library provides a set of functions for use by applications that allow users to edit \
 command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes  \
 additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those   \
diff --git a/meta/recipes-core/readline/readline_5.2.bb b/meta/recipes-core/readline/readline_5.2.bb
index 1aa44f8..05ab26f 100644
--- a/meta/recipes-core/readline/readline_5.2.bb
+++ b/meta/recipes-core/readline/readline_5.2.bb
@@ -1,3 +1,4 @@
+SUMMARY = "Library for editing typed command lines"
 DESCRIPTION = "The GNU Readline library provides a set of functions for use by applications that allow users to edit \
 command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes  \
 additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those   \
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 07/21] external-sourcery-toolchain: add SUMMARY
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
                   ` (5 preceding siblings ...)
  2013-04-24 17:48 ` [PATCH 06/21] readline: add SUMMARY Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 08/21] icon-naming-utils: add SUMMARY and DESCRIPTION Paul Eggleton
                   ` (13 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-core/meta/external-sourcery-toolchain.bb |    1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-core/meta/external-sourcery-toolchain.bb b/meta/recipes-core/meta/external-sourcery-toolchain.bb
index 74c82ec..24c7ce8 100644
--- a/meta/recipes-core/meta/external-sourcery-toolchain.bb
+++ b/meta/recipes-core/meta/external-sourcery-toolchain.bb
@@ -3,6 +3,7 @@ require recipes-core/eglibc/eglibc-package.inc
 INHIBIT_DEFAULT_DEPS = "1"
 
 # License applies to this recipe code, not the toolchain itself
+SUMMARY = "External Sourcery G++ toolchain"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
                     file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 08/21] icon-naming-utils: add SUMMARY and DESCRIPTION
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
                   ` (6 preceding siblings ...)
  2013-04-24 17:48 ` [PATCH 07/21] external-sourcery-toolchain: " Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 09/21] mtools: use same SUMMARY as newer version of mtools recipe Paul Eggleton
                   ` (12 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 .../icon-naming-utils/icon-naming-utils_0.8.90.bb            |   10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/meta/recipes-devtools/icon-naming-utils/icon-naming-utils_0.8.90.bb b/meta/recipes-devtools/icon-naming-utils/icon-naming-utils_0.8.90.bb
index 63a485d..79d5a4e 100644
--- a/meta/recipes-devtools/icon-naming-utils/icon-naming-utils_0.8.90.bb
+++ b/meta/recipes-devtools/icon-naming-utils/icon-naming-utils_0.8.90.bb
@@ -1,3 +1,13 @@
+SUMMARY = "Enables backwards compatibility with current desktop icon themes"
+DESCRIPTION = "A Perl script used for maintaining backwards \
+compatibility with current desktop icon themes, while migrating to the \
+names specified in the Icon Naming Specification. The Icon Naming \
+Utilities map the icon names used by the GNOME and KDE desktops to the \
+icon names proposed in the Icon Naming Specification, and generate the \
+icon files appropriate to the desktop environment you use. The Icon \
+Naming Specification provides a standard list of common icon contexts \
+and names that can be used to make icon themes work in a desktop \
+environment or application that implements the naming specification. "
 LICENSE = "GPLv2"
 DEPENDS = "libxml-simple-perl-native"
 PR = "r4"
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 09/21] mtools: use same SUMMARY as newer version of mtools recipe
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
                   ` (7 preceding siblings ...)
  2013-04-24 17:48 ` [PATCH 08/21] icon-naming-utils: add SUMMARY and DESCRIPTION Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 10/21] which: use the same meta fields for both versions Paul Eggleton
                   ` (11 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-devtools/mtools/mtools_3.9.9.bb |    1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-devtools/mtools/mtools_3.9.9.bb b/meta/recipes-devtools/mtools/mtools_3.9.9.bb
index 5f5403a..2213c17 100644
--- a/meta/recipes-devtools/mtools/mtools_3.9.9.bb
+++ b/meta/recipes-devtools/mtools/mtools_3.9.9.bb
@@ -2,6 +2,7 @@
 # Copyright (C) 2004-2006, Advanced Micro Devices, Inc.  All Rights Reserved
 # Released under the MIT license (see packages/COPYING)
 
+SUMMARY = "Utilities to access MS-DOS disks without mounting them"
 DESCRIPTION = "Mtools is a collection of utilities for accessing MS-DOS disks from Unix without mounting them."
 HOMEPAGE = "http://www.gnu.org/software/mtools/"
 LICENSE = "GPLv2+"
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 10/21] which: use the same meta fields for both versions
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
                   ` (8 preceding siblings ...)
  2013-04-24 17:48 ` [PATCH 09/21] mtools: use same SUMMARY as newer version of mtools recipe Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 11/21] libxml-simple-perl: add SUMMARY, DESCRIPTION and HOMEPAGE Paul Eggleton
                   ` (10 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Use the same SUMMARY, DESCRIPTION, SECTION and HOMEPAGE for the recipes
for both "which" versions.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-extended/which/which_2.18.bb |    6 +++---
 meta/recipes-extended/which/which_2.20.bb |   11 ++++++++---
 2 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/meta/recipes-extended/which/which_2.18.bb b/meta/recipes-extended/which/which_2.18.bb
index 27a567c..4f78010 100644
--- a/meta/recipes-extended/which/which_2.18.bb
+++ b/meta/recipes-extended/which/which_2.18.bb
@@ -1,10 +1,10 @@
-SUMMARY = "Displays the full path of executables that bash would execute"
+SUMMARY = "Displays the full path of shell commands"
 DESCRIPTION = "Which is a utility that prints out the full path of the \
 executables that bash(1) would execute when the passed \
 program names would have been entered on the shell prompt. \
 It does this by using the exact same algorithm as bash."
-HOMEPAGE = "http://www.xs4all.nl/~carlo17/which/"
-BUGTRACKER = "n/a"
+SECTION = "libs"
+HOMEPAGE = "http://carlo17.home.xs4all.nl/which/"
 
 LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
diff --git a/meta/recipes-extended/which/which_2.20.bb b/meta/recipes-extended/which/which_2.20.bb
index 312688f..f4e87de 100644
--- a/meta/recipes-extended/which/which_2.20.bb
+++ b/meta/recipes-extended/which/which_2.20.bb
@@ -1,9 +1,14 @@
-DESCRIPTION = "which - shows the full path of (shell) commands."
-SECTION     = "libs"
+SUMMARY = "Displays the full path of shell commands"
+DESCRIPTION = "Which is a utility that prints out the full path of the \
+executables that bash(1) would execute when the passed \
+program names would have been entered on the shell prompt. \
+It does this by using the exact same algorithm as bash."
+SECTION = "libs"
+HOMEPAGE = "http://carlo17.home.xs4all.nl/which/"
+
 LICENSE = "GPLv3+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504\
                     file://which.c;beginline=1;endline=17;md5=a9963693af2272e7a8df6f231164e7a2"
-HOMEPAGE = "http://ftp.gnu.org/gnu/which/"
 DEPENDS     = "cwautomacros-native"
 
 inherit autotools update-alternatives
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 11/21] libxml-simple-perl: add SUMMARY, DESCRIPTION and HOMEPAGE
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
                   ` (9 preceding siblings ...)
  2013-04-24 17:48 ` [PATCH 10/21] which: use the same meta fields for both versions Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 12/21] python-smartpm: fix HOMEPAGE and adjust DESCRIPTION Paul Eggleton
                   ` (9 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-devtools/perl/libxml-simple-perl_2.20.bb |    7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/meta/recipes-devtools/perl/libxml-simple-perl_2.20.bb b/meta/recipes-devtools/perl/libxml-simple-perl_2.20.bb
index 6434ff7..31294ea 100644
--- a/meta/recipes-devtools/perl/libxml-simple-perl_2.20.bb
+++ b/meta/recipes-devtools/perl/libxml-simple-perl_2.20.bb
@@ -1,3 +1,10 @@
+SUMMARY = "Perl module for reading and writing XML"
+DESCRIPTION = "The XML::Simple Perl module provides a simple API layer \
+on top of an underlying XML parsing module to maintain XML files \
+(especially configuration files). It is a blunt rewrite of XML::Simple \
+(by Grant McLean) to use the XML::LibXML parser for XML structures, \
+where the original uses plain Perl or SAX parsers."
+HOMEPAGE = "http://search.cpan.org/~markov/XML-LibXML-Simple-0.93/lib/XML/LibXML/Simple.pod"
 SECTION = "libs"
 LICENSE = "Artistic-1.0 | GPL-1.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=e7dbb3e2241fac8457967053fc1a1ddb"
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 12/21] python-smartpm: fix HOMEPAGE and adjust DESCRIPTION
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
                   ` (10 preceding siblings ...)
  2013-04-24 17:48 ` [PATCH 11/21] libxml-simple-perl: add SUMMARY, DESCRIPTION and HOMEPAGE Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 13/21] gnome-doc-utils: add SUMMARY and DESCRIPTION Paul Eggleton
                   ` (8 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

* HOMEPAGE was incorrect
* We're not really interested in the fact that Smart works across
  different distros.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-devtools/python/python-smartpm_1.4.1.bb |    6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/meta/recipes-devtools/python/python-smartpm_1.4.1.bb b/meta/recipes-devtools/python/python-smartpm_1.4.1.bb
index 001d9e4..cfa2dba 100644
--- a/meta/recipes-devtools/python/python-smartpm_1.4.1.bb
+++ b/meta/recipes-devtools/python/python-smartpm_1.4.1.bb
@@ -1,11 +1,9 @@
 SUMMARY = "The Smart Package Manager"
-
 DESCRIPTION = "The Smart Package Manager project has the ambitious objective of creating \
 smart and portable algorithms for solving adequately the problem of managing software \
-upgrades and installation. This tool works in all major distributions and will bring \
-notable advantages over native tools currently in use (APT, APT-RPM, YUM, URPMI, etc)."
+upgrades and installation."
 
-HOMEPAGE = "http://smartpm.org/"
+HOMEPAGE = "http://labix.org/smart/"
 SECTION = "devel/python"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=393a5ca445f6965873eca0259a17f833"
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 13/21] gnome-doc-utils: add SUMMARY and DESCRIPTION
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
                   ` (11 preceding siblings ...)
  2013-04-24 17:48 ` [PATCH 12/21] python-smartpm: fix HOMEPAGE and adjust DESCRIPTION Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 14/21] packagegroup-core-x11-xserver: set SUMMARY instead of SUMMARY_${PN} Paul Eggleton
                   ` (7 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-gnome/gnome/gnome-doc-utils.inc |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta/recipes-gnome/gnome/gnome-doc-utils.inc b/meta/recipes-gnome/gnome/gnome-doc-utils.inc
index 8ea0b96..9d243a1 100644
--- a/meta/recipes-gnome/gnome/gnome-doc-utils.inc
+++ b/meta/recipes-gnome/gnome/gnome-doc-utils.inc
@@ -1,3 +1,9 @@
+SUMMARY = "A collection of documentation utilities for the Gnome project."
+DESCRIPTION = "The GNOME Documentation Build Utilities (gnome-doc- \
+utils) were created to make it easier for application developers to \
+include and create documentation in their releases. They include the \
+xml2po tool which makes it easier to translate and keep up to date \
+translations of documentation."
 LICENSE = "GPLv2 & LGPLv2.1"
 DEPENDS = "libxml2 libxslt libxslt-native gnome-doc-utils-native glib-2.0"
 DEPENDS_class-native = "libxml2-native libxslt-native intltool-native glib-2.0-native"
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 14/21] packagegroup-core-x11-xserver: set SUMMARY instead of SUMMARY_${PN}
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
                   ` (12 preceding siblings ...)
  2013-04-24 17:48 ` [PATCH 13/21] gnome-doc-utils: add SUMMARY and DESCRIPTION Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 15/21] rgb: add SUMMARY and DESCRIPTION Paul Eggleton
                   ` (6 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

This allows the description to show up at the recipe level e.g. in the
OE layer index.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-graphics/packagegroups/packagegroup-core-x11-xserver.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/packagegroups/packagegroup-core-x11-xserver.bb b/meta/recipes-graphics/packagegroups/packagegroup-core-x11-xserver.bb
index 3c70c53..f9398fa 100644
--- a/meta/recipes-graphics/packagegroups/packagegroup-core-x11-xserver.bb
+++ b/meta/recipes-graphics/packagegroups/packagegroup-core-x11-xserver.bb
@@ -2,6 +2,7 @@
 # Copyright (C) 2011 Intel Corporation
 #
 
+SUMMARY = "X11 display server"
 LICENSE = "MIT"
 PR = "r39"
 
@@ -12,7 +13,6 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
 XSERVER ?= "xserver-xorg xf86-video-fbdev xf86-input-evdev"
 XSERVERCODECS ?= ""
 
-SUMMARY_${PN} = "X11 display server"
 RDEPENDS_${PN} = "\
     ${XSERVER} \
     ${XSERVERCODECS} \
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 15/21] rgb: add SUMMARY and DESCRIPTION
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
                   ` (13 preceding siblings ...)
  2013-04-24 17:48 ` [PATCH 14/21] packagegroup-core-x11-xserver: set SUMMARY instead of SUMMARY_${PN} Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 16/21] xeyes: " Paul Eggleton
                   ` (5 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Prevent this getting the default DESCRIPTION of "X application" from
xorg-app-common.inc.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-graphics/xorg-app/rgb_1.0.5.bb |    7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/meta/recipes-graphics/xorg-app/rgb_1.0.5.bb b/meta/recipes-graphics/xorg-app/rgb_1.0.5.bb
index 602ee09..26d4f1b 100644
--- a/meta/recipes-graphics/xorg-app/rgb_1.0.5.bb
+++ b/meta/recipes-graphics/xorg-app/rgb_1.0.5.bb
@@ -1,4 +1,11 @@
 require xorg-app-common.inc
+
+SUMMARY = "X11 color name database"
+DESCRIPTION = "This package includes both the list mapping X color names \
+to RGB values (rgb.txt) and, if configured to use a database for color \
+lookup, the rgb program to convert the text file into the binary database \
+format."
+
 DEPENDS += " xproto util-macros"
 LIC_FILES_CHKSUM = "file://COPYING;md5=ef598adbe241bd0b0b9113831f6e249a"
 PE = "1"
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 16/21] xeyes: add SUMMARY and DESCRIPTION
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
                   ` (14 preceding siblings ...)
  2013-04-24 17:48 ` [PATCH 15/21] rgb: add SUMMARY and DESCRIPTION Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 17/21] gst-openmax: add SUMMARY, DESCRIPTION and HOMEPAGE Paul Eggleton
                   ` (4 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Prevent this getting the default DESCRIPTION of "X application" from
xorg-app-common.inc.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-graphics/xorg-app/xeyes_1.1.1.bb |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/meta/recipes-graphics/xorg-app/xeyes_1.1.1.bb b/meta/recipes-graphics/xorg-app/xeyes_1.1.1.bb
index 33a93cc..7b68e6c 100644
--- a/meta/recipes-graphics/xorg-app/xeyes_1.1.1.bb
+++ b/meta/recipes-graphics/xorg-app/xeyes_1.1.1.bb
@@ -1,4 +1,9 @@
 require xorg-app-common.inc
+
+SUMMARY = "X11 eyes that follow the mouse cursor demo"
+DESCRIPTION = "Xeyes is a small X11 application that shows a pair of eyes that move to \
+follow the location of the mouse cursor around the screen."
+
 PE = "1"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=3ea51b365051ac32d1813a7dbaa4bfc6"
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 17/21] gst-openmax: add SUMMARY, DESCRIPTION and HOMEPAGE
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
                   ` (15 preceding siblings ...)
  2013-04-24 17:48 ` [PATCH 16/21] xeyes: " Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 18/21] hwlatdetect: add SUMMARY and DESCRIPTION Paul Eggleton
                   ` (3 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-multimedia/gstreamer/gst-openmax_0.10.1.bb |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta/recipes-multimedia/gstreamer/gst-openmax_0.10.1.bb b/meta/recipes-multimedia/gstreamer/gst-openmax_0.10.1.bb
index af482ed..ea3b66b 100644
--- a/meta/recipes-multimedia/gstreamer/gst-openmax_0.10.1.bb
+++ b/meta/recipes-multimedia/gstreamer/gst-openmax_0.10.1.bb
@@ -1,3 +1,9 @@
+SUMMARY = "GStreamer plug-in for communication with OpenMAX IL components"
+DESCRIPTION = "GstOpenMAX is a GStreamer plug-in that allows \
+communication with OpenMAX Integration Layer (IL) components. OpenMAX \
+IL is an industry standard that provides an abstraction layer for \
+computer graphics, video, and sound routines."
+HOMEPAGE = "http://freedesktop.org/wiki/GstOpenMAX"
 DEPENDS = "gstreamer"
 RDEPENDS_${PN} = "libomxil"
 LICENSE = "LGPLv2.1"
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 18/21] hwlatdetect: add SUMMARY and DESCRIPTION
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
                   ` (16 preceding siblings ...)
  2013-04-24 17:48 ` [PATCH 17/21] gst-openmax: add SUMMARY, DESCRIPTION and HOMEPAGE Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 19/21] ptest-runner: add SUMMARY, DESCRIPTION and HOMEPAGE Paul Eggleton
                   ` (2 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-rt/rt-tests/hwlatdetect_0.85.bb |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-rt/rt-tests/hwlatdetect_0.85.bb b/meta/recipes-rt/rt-tests/hwlatdetect_0.85.bb
index c3806c1..634b609 100644
--- a/meta/recipes-rt/rt-tests/hwlatdetect_0.85.bb
+++ b/meta/recipes-rt/rt-tests/hwlatdetect_0.85.bb
@@ -1,4 +1,5 @@
-pickDESCRIPTION = "Python hardware latency detector"
+SUMMARY = "Hardware latency detector"
+DESCRIPTION = "Python utility for controlling the kernel hardware latency detection module (hwlat_detector.ko)."
 HOMEPAGE = "http://git.kernel.org/?p=linux/kernel/git/clrkwllms/rt-tests.git"
 SECTION = "tests"
 LICENSE = "GPLv2"
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 19/21] ptest-runner: add SUMMARY, DESCRIPTION and HOMEPAGE
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
                   ` (17 preceding siblings ...)
  2013-04-24 17:48 ` [PATCH 18/21] hwlatdetect: add SUMMARY and DESCRIPTION Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 20/21] core-image-directfb: add SUMMARY Paul Eggleton
  2013-04-24 17:48 ` [PATCH 21/21] gpgme: add short SUMMARY Paul Eggleton
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-support/ptest-runner/ptest-runner_1.0.bb |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/meta/recipes-support/ptest-runner/ptest-runner_1.0.bb b/meta/recipes-support/ptest-runner/ptest-runner_1.0.bb
index 6b866d4..c7ee595 100644
--- a/meta/recipes-support/ptest-runner/ptest-runner_1.0.bb
+++ b/meta/recipes-support/ptest-runner/ptest-runner_1.0.bb
@@ -1,3 +1,8 @@
+SUMMARY = "A simple shell script to run all installed ptests"
+DESCRIPTION = "The ptest-runner package installs a ptest-runner \
+shell script which loops through all installed ptest test suites and \
+runs them in sequence."
+HOMEPAGE = "https://wiki.yoctoproject.org/wiki/Ptest"
 SRC_URI += "file://ptest-runner"
 
 LICENSE = "MIT"
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 20/21] core-image-directfb: add SUMMARY
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
                   ` (18 preceding siblings ...)
  2013-04-24 17:48 ` [PATCH 19/21] ptest-runner: add SUMMARY, DESCRIPTION and HOMEPAGE Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  2013-04-24 17:48 ` [PATCH 21/21] gpgme: add short SUMMARY Paul Eggleton
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-graphics/images/core-image-directfb.bb |    1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-graphics/images/core-image-directfb.bb b/meta/recipes-graphics/images/core-image-directfb.bb
index 4f47185..3a74e94 100644
--- a/meta/recipes-graphics/images/core-image-directfb.bb
+++ b/meta/recipes-graphics/images/core-image-directfb.bb
@@ -1,3 +1,4 @@
+SUMMARY = "An image that uses DirectFB instead of X11."
 LICENSE = "MIT"
 PR="r0"
 
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 21/21] gpgme: add short SUMMARY
  2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
                   ` (19 preceding siblings ...)
  2013-04-24 17:48 ` [PATCH 20/21] core-image-directfb: add SUMMARY Paul Eggleton
@ 2013-04-24 17:48 ` Paul Eggleton
  20 siblings, 0 replies; 22+ messages in thread
From: Paul Eggleton @ 2013-04-24 17:48 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-support/gpgme/gpgme_1.4.0.bb |    1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-support/gpgme/gpgme_1.4.0.bb b/meta/recipes-support/gpgme/gpgme_1.4.0.bb
index 23f4e4d..a8c1157 100644
--- a/meta/recipes-support/gpgme/gpgme_1.4.0.bb
+++ b/meta/recipes-support/gpgme/gpgme_1.4.0.bb
@@ -1,3 +1,4 @@
+SUMMARY = "High-level GnuPG encryption/signing API"
 DESCRIPTION = "GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG easier for applications. It provides a High-Level Crypto API for encryption, decryption, signing, signature verification and key management"
 HOMEPAGE = "http://www.gnupg.org/gpgme.html"
 BUGTRACKER = "https://bugs.g10code.com/gnupg/index"
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2013-04-24 18:09 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-24 17:48 [PATCH 00/21] Improve recipe meta-information in OE-Core Paul Eggleton
2013-04-24 17:48 ` [PATCH 01/21] connman-conf: add SUMMARY and DESCRIPTION Paul Eggleton
2013-04-24 17:48 ` [PATCH 02/21] eglibc: add common HOMEPAGE and SUMMARY for eglibc-locale Paul Eggleton
2013-04-24 17:48 ` [PATCH 03/21] gettext-minimal-native: add SUMMARY and DESCRIPTION Paul Eggleton
2013-04-24 17:48 ` [PATCH 04/21] build-appliance-image: add SUMMARY, HOMEPAGE and improve DESCRIPTION Paul Eggleton
2013-04-24 17:48 ` [PATCH 05/21] libcgroup: add SUMMARY and better DESCRIPTION Paul Eggleton
2013-04-24 17:48 ` [PATCH 06/21] readline: add SUMMARY Paul Eggleton
2013-04-24 17:48 ` [PATCH 07/21] external-sourcery-toolchain: " Paul Eggleton
2013-04-24 17:48 ` [PATCH 08/21] icon-naming-utils: add SUMMARY and DESCRIPTION Paul Eggleton
2013-04-24 17:48 ` [PATCH 09/21] mtools: use same SUMMARY as newer version of mtools recipe Paul Eggleton
2013-04-24 17:48 ` [PATCH 10/21] which: use the same meta fields for both versions Paul Eggleton
2013-04-24 17:48 ` [PATCH 11/21] libxml-simple-perl: add SUMMARY, DESCRIPTION and HOMEPAGE Paul Eggleton
2013-04-24 17:48 ` [PATCH 12/21] python-smartpm: fix HOMEPAGE and adjust DESCRIPTION Paul Eggleton
2013-04-24 17:48 ` [PATCH 13/21] gnome-doc-utils: add SUMMARY and DESCRIPTION Paul Eggleton
2013-04-24 17:48 ` [PATCH 14/21] packagegroup-core-x11-xserver: set SUMMARY instead of SUMMARY_${PN} Paul Eggleton
2013-04-24 17:48 ` [PATCH 15/21] rgb: add SUMMARY and DESCRIPTION Paul Eggleton
2013-04-24 17:48 ` [PATCH 16/21] xeyes: " Paul Eggleton
2013-04-24 17:48 ` [PATCH 17/21] gst-openmax: add SUMMARY, DESCRIPTION and HOMEPAGE Paul Eggleton
2013-04-24 17:48 ` [PATCH 18/21] hwlatdetect: add SUMMARY and DESCRIPTION Paul Eggleton
2013-04-24 17:48 ` [PATCH 19/21] ptest-runner: add SUMMARY, DESCRIPTION and HOMEPAGE Paul Eggleton
2013-04-24 17:48 ` [PATCH 20/21] core-image-directfb: add SUMMARY Paul Eggleton
2013-04-24 17:48 ` [PATCH 21/21] gpgme: add short SUMMARY Paul Eggleton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox