All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Add some missing pkgconfig inherits
@ 2017-02-06 10:04 Jussi Kukkonen
  2017-02-06 10:04 ` [PATCH 1/3] pong-clock: Add missing 'inherit pkgconfig' Jussi Kukkonen
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jussi Kukkonen @ 2017-02-06 10:04 UTC (permalink / raw)
  To: openembedded-core

Found based on Martins 'State of bitbake world'. These don't always
come up because host pkg-config may give reasonable looking results.


Thanks,
  Jussi


The following changes since commit c62908e6a3ecd4d3cde2576f226d669a8299298d:

  gcc-6: Sync gcc stddef.h with musl stddef.h (2017-02-05 09:22:18 +0000)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib jku/missing-pkgconfigs
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=jku/missing-pkgconfigs

Jussi Kukkonen (3):
  pong-clock: Add missing 'inherit pkgconfig'
  latencytop: Add missing 'inherit pkgconfig'
  qemu: Add missing 'inherit pkgconfig'

 meta/recipes-devtools/qemu/qemu.inc                | 2 +-
 meta/recipes-graphics/pong-clock/pong-clock_1.0.bb | 2 +-
 meta/recipes-kernel/latencytop/latencytop_0.5.bb   | 2 ++
 3 files changed, 4 insertions(+), 2 deletions(-)

-- 
2.1.4



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

* [PATCH 1/3] pong-clock: Add missing 'inherit pkgconfig'
  2017-02-06 10:04 [PATCH 0/3] Add some missing pkgconfig inherits Jussi Kukkonen
@ 2017-02-06 10:04 ` Jussi Kukkonen
  2017-02-06 10:04 ` [PATCH 2/3] latencytop: " Jussi Kukkonen
  2017-02-06 10:04 ` [PATCH 3/3] qemu: " Jussi Kukkonen
  2 siblings, 0 replies; 4+ messages in thread
From: Jussi Kukkonen @ 2017-02-06 10:04 UTC (permalink / raw)
  To: openembedded-core

The usage of pkg-config is sneakily hidden in do_compile()

Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
---
 meta/recipes-graphics/pong-clock/pong-clock_1.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/pong-clock/pong-clock_1.0.bb b/meta/recipes-graphics/pong-clock/pong-clock_1.0.bb
index 6c3bcd8..cdfe38a 100644
--- a/meta/recipes-graphics/pong-clock/pong-clock_1.0.bb
+++ b/meta/recipes-graphics/pong-clock/pong-clock_1.0.bb
@@ -2,7 +2,7 @@ SUMMARY = "A clock combined with a game of pong"
 LICENSE = "GPLv2+"
 DEPENDS = "virtual/libx11 xdmcp xau"
 
-inherit distro_features_check
+inherit distro_features_check pkgconfig
 # depends on virtual/libx11
 REQUIRED_DISTRO_FEATURES = "x11"
 
-- 
2.1.4



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

* [PATCH 2/3] latencytop: Add missing 'inherit pkgconfig'
  2017-02-06 10:04 [PATCH 0/3] Add some missing pkgconfig inherits Jussi Kukkonen
  2017-02-06 10:04 ` [PATCH 1/3] pong-clock: Add missing 'inherit pkgconfig' Jussi Kukkonen
@ 2017-02-06 10:04 ` Jussi Kukkonen
  2017-02-06 10:04 ` [PATCH 3/3] qemu: " Jussi Kukkonen
  2 siblings, 0 replies; 4+ messages in thread
From: Jussi Kukkonen @ 2017-02-06 10:04 UTC (permalink / raw)
  To: openembedded-core

The Makefile uses pkg-config.

Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
---
 meta/recipes-kernel/latencytop/latencytop_0.5.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-kernel/latencytop/latencytop_0.5.bb b/meta/recipes-kernel/latencytop/latencytop_0.5.bb
index f31f1bb..c38a038 100644
--- a/meta/recipes-kernel/latencytop/latencytop_0.5.bb
+++ b/meta/recipes-kernel/latencytop/latencytop_0.5.bb
@@ -4,6 +4,8 @@ HOMEPAGE = "http://www.latencytop.org/"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://latencytop.c;endline=23;md5=ee9ea9b1415356e5734adad4a87dc7fa"
 
+inherit pkgconfig
+
 DEPENDS = "virtual/libintl ncurses glib-2.0"
 
 PR = "r3"
-- 
2.1.4



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

* [PATCH 3/3] qemu: Add missing 'inherit pkgconfig'
  2017-02-06 10:04 [PATCH 0/3] Add some missing pkgconfig inherits Jussi Kukkonen
  2017-02-06 10:04 ` [PATCH 1/3] pong-clock: Add missing 'inherit pkgconfig' Jussi Kukkonen
  2017-02-06 10:04 ` [PATCH 2/3] latencytop: " Jussi Kukkonen
@ 2017-02-06 10:04 ` Jussi Kukkonen
  2 siblings, 0 replies; 4+ messages in thread
From: Jussi Kukkonen @ 2017-02-06 10:04 UTC (permalink / raw)
  To: openembedded-core

The monster configure file does call pkg-config somewhere in there.

Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
---
 meta/recipes-devtools/qemu/qemu.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc
index e3af5c2..ef5d75c 100644
--- a/meta/recipes-devtools/qemu/qemu.inc
+++ b/meta/recipes-devtools/qemu/qemu.inc
@@ -6,7 +6,7 @@ RDEPENDS_${PN}_class-target += "bash"
 RDEPENDS_${PN}-ptest = "bash make"
 
 require qemu-targets.inc
-inherit autotools ptest
+inherit autotools pkgconfig ptest
 BBCLASSEXTEND = "native nativesdk"
 
 # QEMU_TARGETS is overridable variable
-- 
2.1.4



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

end of thread, other threads:[~2017-02-06 10:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-06 10:04 [PATCH 0/3] Add some missing pkgconfig inherits Jussi Kukkonen
2017-02-06 10:04 ` [PATCH 1/3] pong-clock: Add missing 'inherit pkgconfig' Jussi Kukkonen
2017-02-06 10:04 ` [PATCH 2/3] latencytop: " Jussi Kukkonen
2017-02-06 10:04 ` [PATCH 3/3] qemu: " Jussi Kukkonen

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.