All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] Ensure SUMMARY is set
@ 2016-05-25  3:37 Paul Eggleton
  2016-05-25  3:37 ` [PATCH 1/6] bsd-headers: set SUMMARY instead of DESCRIPTION Paul Eggleton
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Paul Eggleton @ 2016-05-25  3:37 UTC (permalink / raw)
  To: openembedded-core

SUMMARY should be set in every recipe so you have a reasonable short
description to show in places such as Toaster and devtool search.


The following changes since commit d6241e4c94a0a72acfc57e96a59918c0b2146d65:

  useradd: Fix infinite build loop (2016-05-23 10:33:39 +0100)

are available in the git repository at:

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

Paul Eggleton (6):
  bsd-headers: set SUMMARY instead of DESCRIPTION
  fts: set SUMMARY instead of DESCRIPTION
  signing-keys: set SUMMARY instead of DESCRIPTION
  argp-standalone: set SUMMARY instead of DESCRIPTION
  gobject-introspection: set SUMMARY and HOMEPAGE
  libjpeg-turbo: set SUMMARY

 meta/recipes-core/bsd-headers/bsd-headers.bb                           | 2 +-
 meta/recipes-core/fts/fts.bb                                           | 2 +-
 meta/recipes-core/meta/signing-keys.bb                                 | 2 +-
 .../gobject-introspection/gobject-introspection_1.46.0.bb              | 3 ++-
 meta/recipes-graphics/jpeg/libjpeg-turbo_8d+1.4.2.bb                   | 1 +
 meta/recipes-support/argp-standalone/argp-standalone_1.3.bb            | 2 +-
 6 files changed, 7 insertions(+), 5 deletions(-)

-- 
2.5.5



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

* [PATCH 1/6] bsd-headers: set SUMMARY instead of DESCRIPTION
  2016-05-25  3:37 [PATCH 0/6] Ensure SUMMARY is set Paul Eggleton
@ 2016-05-25  3:37 ` Paul Eggleton
  2016-05-25  3:37 ` [PATCH 2/6] fts: " Paul Eggleton
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Paul Eggleton @ 2016-05-25  3:37 UTC (permalink / raw)
  To: openembedded-core

Short descriptions should go into SUMMARY (DESCRIPTION will get the same
value if not set.)

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

diff --git a/meta/recipes-core/bsd-headers/bsd-headers.bb b/meta/recipes-core/bsd-headers/bsd-headers.bb
index 8f43d43..c9945d4 100644
--- a/meta/recipes-core/bsd-headers/bsd-headers.bb
+++ b/meta/recipes-core/bsd-headers/bsd-headers.bb
@@ -1,7 +1,7 @@
 # Copyright (C) 2016 Khem Raj <raj.khem@gmail.com>
 # Released under the MIT license (see COPYING.MIT for the terms)
 
-DESCRIPTION = "bsd compatible headers"
+SUMMARY = "BSD compatible headers"
 LICENSE = "BSD-3-Clause & BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://sys-queue.h;beginline=1;endline=32;md5=c6352b0f03bb448600456547d334b56f"
 SECTION = "devel"
-- 
2.5.5



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

* [PATCH 2/6] fts: set SUMMARY instead of DESCRIPTION
  2016-05-25  3:37 [PATCH 0/6] Ensure SUMMARY is set Paul Eggleton
  2016-05-25  3:37 ` [PATCH 1/6] bsd-headers: set SUMMARY instead of DESCRIPTION Paul Eggleton
@ 2016-05-25  3:37 ` Paul Eggleton
  2016-05-25  3:37 ` [PATCH 3/6] signing-keys: " Paul Eggleton
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Paul Eggleton @ 2016-05-25  3:37 UTC (permalink / raw)
  To: openembedded-core

Short descriptions should go into SUMMARY (DESCRIPTION will get the same
value if not set.

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

diff --git a/meta/recipes-core/fts/fts.bb b/meta/recipes-core/fts/fts.bb
index c301720..9d8230f 100644
--- a/meta/recipes-core/fts/fts.bb
+++ b/meta/recipes-core/fts/fts.bb
@@ -1,7 +1,7 @@
 # Copyright (C) 2015 Khem Raj <raj.khem@gmail.com>
 # Released under the MIT license (see COPYING.MIT for the terms)
 
-DESCRIPTION = "keith bostic's POSIX file tree stream operations library"
+SUMMARY = "POSIX file tree stream operations library"
 HOMEPAGE = "https://sites.google.com/a/bostic.com/keithbostic"
 LICENSE = "BSD-4-Clause"
 LIC_FILES_CHKSUM = "file://fts.h;beginline=1;endline=36;md5=2532eddb3d1a21905723a4011ec4e085"
-- 
2.5.5



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

* [PATCH 3/6] signing-keys: set SUMMARY instead of DESCRIPTION
  2016-05-25  3:37 [PATCH 0/6] Ensure SUMMARY is set Paul Eggleton
  2016-05-25  3:37 ` [PATCH 1/6] bsd-headers: set SUMMARY instead of DESCRIPTION Paul Eggleton
  2016-05-25  3:37 ` [PATCH 2/6] fts: " Paul Eggleton
@ 2016-05-25  3:37 ` Paul Eggleton
  2016-05-25  3:37 ` [PATCH 4/6] argp-standalone: " Paul Eggleton
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Paul Eggleton @ 2016-05-25  3:37 UTC (permalink / raw)
  To: openembedded-core

Short descriptions should go into SUMMARY (DESCRIPTION will get the same
value if not set.

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

diff --git a/meta/recipes-core/meta/signing-keys.bb b/meta/recipes-core/meta/signing-keys.bb
index ea7400b..3779037 100644
--- a/meta/recipes-core/meta/signing-keys.bb
+++ b/meta/recipes-core/meta/signing-keys.bb
@@ -1,7 +1,7 @@
 # Copyright (C) 2015 Intel Corporation
 # Released under the MIT license (see COPYING.MIT for the terms)
 
-DESCRIPTION = "Make public keys of the signing keys available"
+SUMMARY = "Makes public keys of the signing keys available"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690 \
                     file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
-- 
2.5.5



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

* [PATCH 4/6] argp-standalone: set SUMMARY instead of DESCRIPTION
  2016-05-25  3:37 [PATCH 0/6] Ensure SUMMARY is set Paul Eggleton
                   ` (2 preceding siblings ...)
  2016-05-25  3:37 ` [PATCH 3/6] signing-keys: " Paul Eggleton
@ 2016-05-25  3:37 ` Paul Eggleton
  2016-05-25  3:37 ` [PATCH 5/6] gobject-introspection: set SUMMARY and HOMEPAGE Paul Eggleton
  2016-05-25  3:37 ` [PATCH 6/6] libjpeg-turbo: set SUMMARY Paul Eggleton
  5 siblings, 0 replies; 7+ messages in thread
From: Paul Eggleton @ 2016-05-25  3:37 UTC (permalink / raw)
  To: openembedded-core

Short descriptions should go into SUMMARY (DESCRIPTION will get the same
value if not set.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-support/argp-standalone/argp-standalone_1.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-support/argp-standalone/argp-standalone_1.3.bb b/meta/recipes-support/argp-standalone/argp-standalone_1.3.bb
index d61c8be..bd0cfdf 100644
--- a/meta/recipes-support/argp-standalone/argp-standalone_1.3.bb
+++ b/meta/recipes-support/argp-standalone/argp-standalone_1.3.bb
@@ -1,7 +1,7 @@
 # Copyright (C) 2015 Khem Raj <raj.khem@gmail.com>
 # Released under the MIT license (see COPYING.MIT for the terms)
 
-DESCRIPTION = "Glibc hierarchical argument parsing standalone library"
+SUMMARY = "Glibc hierarchical argument parsing standalone library"
 HOMEPAGE = "http://www.lysator.liu.se/~nisse/misc/"
 LICENSE = "LGPL-2.1"
 LIC_FILES_CHKSUM = "file://argp.h;beginline=1;endline=20;md5=008b7e53dea6f9e1d9fdef0d9cf3184a"
-- 
2.5.5



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

* [PATCH 5/6] gobject-introspection: set SUMMARY and HOMEPAGE
  2016-05-25  3:37 [PATCH 0/6] Ensure SUMMARY is set Paul Eggleton
                   ` (3 preceding siblings ...)
  2016-05-25  3:37 ` [PATCH 4/6] argp-standalone: " Paul Eggleton
@ 2016-05-25  3:37 ` Paul Eggleton
  2016-05-25  3:37 ` [PATCH 6/6] libjpeg-turbo: set SUMMARY Paul Eggleton
  5 siblings, 0 replies; 7+ messages in thread
From: Paul Eggleton @ 2016-05-25  3:37 UTC (permalink / raw)
  To: openembedded-core

We should at least have SUMMARY set for all recipes in OE-Core, and
there's a reasonable HOMEPAGE in this case so use it.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 .../gobject-introspection/gobject-introspection_1.46.0.bb              | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.46.0.bb b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.46.0.bb
index 861af5f..abc1bc7 100644
--- a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.46.0.bb
+++ b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.46.0.bb
@@ -1,4 +1,5 @@
-HOMEPAGE = "http://gnome.org"
+SUMMARY = "Middleware layer between GObject-using C libraries and language bindings"
+HOMEPAGE = "https://wiki.gnome.org/action/show/Projects/GObjectIntrospection"
 BUGTRACKER = "https://bugzilla.gnome.org/"
 SECTION = "libs"
 LICENSE = "LGPLv2+ & GPLv2+"
-- 
2.5.5



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

* [PATCH 6/6] libjpeg-turbo: set SUMMARY
  2016-05-25  3:37 [PATCH 0/6] Ensure SUMMARY is set Paul Eggleton
                   ` (4 preceding siblings ...)
  2016-05-25  3:37 ` [PATCH 5/6] gobject-introspection: set SUMMARY and HOMEPAGE Paul Eggleton
@ 2016-05-25  3:37 ` Paul Eggleton
  5 siblings, 0 replies; 7+ messages in thread
From: Paul Eggleton @ 2016-05-25  3:37 UTC (permalink / raw)
  To: openembedded-core

This recipe had a long DESCRIPTION, so add a new short SUMMARY value.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-graphics/jpeg/libjpeg-turbo_8d+1.4.2.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-graphics/jpeg/libjpeg-turbo_8d+1.4.2.bb b/meta/recipes-graphics/jpeg/libjpeg-turbo_8d+1.4.2.bb
index 4859431..e969195 100644
--- a/meta/recipes-graphics/jpeg/libjpeg-turbo_8d+1.4.2.bb
+++ b/meta/recipes-graphics/jpeg/libjpeg-turbo_8d+1.4.2.bb
@@ -1,3 +1,4 @@
+SUMMARY = "Hardware accelerated JPEG compression/decompression library"
 DESCRIPTION = "libjpeg-turbo is a derivative of libjpeg that uses SIMD instructions (MMX, SSE2, NEON) to accelerate baseline JPEG compression and decompression"
 HOMEPAGE = "http://libjpeg-turbo.org/"
 
-- 
2.5.5



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

end of thread, other threads:[~2016-05-25  3:37 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-25  3:37 [PATCH 0/6] Ensure SUMMARY is set Paul Eggleton
2016-05-25  3:37 ` [PATCH 1/6] bsd-headers: set SUMMARY instead of DESCRIPTION Paul Eggleton
2016-05-25  3:37 ` [PATCH 2/6] fts: " Paul Eggleton
2016-05-25  3:37 ` [PATCH 3/6] signing-keys: " Paul Eggleton
2016-05-25  3:37 ` [PATCH 4/6] argp-standalone: " Paul Eggleton
2016-05-25  3:37 ` [PATCH 5/6] gobject-introspection: set SUMMARY and HOMEPAGE Paul Eggleton
2016-05-25  3:37 ` [PATCH 6/6] libjpeg-turbo: set SUMMARY Paul Eggleton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.