All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] fix gstreamer and its assoc. fallout
@ 2017-02-15 18:03 Paul Gortmaker
  2017-02-15 18:03 ` [PATCH 1/3] gstreamer: fix dependency issue and un-blacklist it Paul Gortmaker
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Paul Gortmaker @ 2017-02-15 18:03 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-devel

Recently gstreamer was blacklisted due to the build issue here:

http://errors.yoctoproject.org/Errors/Details/130583/

Here, we fix the dependency issue causing the above issue, and
then undo all the blacklisting fallout from things that depended
on gstreamer directly and indirectly.

Paul.
--

Paul Gortmaker (3):
  gstreamer: fix dependency issue and un-blacklist it
  remove blacklist entries against blacklisted gstreamer
  farsight/xfce4-mixer: unblacklist recipes

 meta-gnome/recipes-apps/cheese/cheese_2.30.1.bb                       | 2 --
 meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb                      | 3 ---
 meta-gnome/recipes-support/florence/florence_0.5.4.bb                 | 2 --
 .../recipes-multimedia/gstreamer-0.10/gst-fluendo-mp3_0.10.31.bb      | 2 --
 .../gstreamer-0.10/gst-fluendo-mpegdemux_0.10.85.bb                   | 2 --
 .../recipes-multimedia/gstreamer-0.10/gst-meta-base_0.10.bb           | 2 --
 .../recipes-multimedia/gstreamer-0.10/gst-openmax_0.10.1.bb           | 2 --
 .../recipes-multimedia/gstreamer-0.10/gst-plugins-bad_0.10.23.bb      | 2 --
 .../recipes-multimedia/gstreamer-0.10/gst-plugins-base_0.10.36.bb     | 2 --
 .../recipes-multimedia/gstreamer-0.10/gst-plugins-gl_0.10.3.bb        | 2 --
 .../recipes-multimedia/gstreamer-0.10/gst-plugins-good_0.10.31.bb     | 2 --
 .../recipes-multimedia/gstreamer-0.10/gst-plugins-ugly_0.10.19.bb     | 2 --
 meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-rtsp_0.10.8.bb  | 2 --
 .../recipes-multimedia/gstreamer-0.10/gstreamer_0.10.36.bb            | 4 +---
 meta-oe/recipes-support/farsight/farsight2_0.0.22.bb                  | 4 ----
 meta-oe/recipes-support/farsight/libnice_0.0.13.bb                    | 2 --
 meta-xfce/recipes-apps/xfce4-mixer/xfce4-mixer_4.11.0.bb              | 2 --
 17 files changed, 1 insertion(+), 38 deletions(-)

-- 
2.7.4



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

* [PATCH 1/3] gstreamer: fix dependency issue and un-blacklist it
  2017-02-15 18:03 [PATCH 0/3] fix gstreamer and its assoc. fallout Paul Gortmaker
@ 2017-02-15 18:03 ` Paul Gortmaker
  2017-02-15 18:03 ` [PATCH 2/3] remove blacklist entries against blacklisted gstreamer Paul Gortmaker
  2017-02-15 18:03 ` [PATCH 3/3] farsight/xfce4-mixer: unblacklist recipes Paul Gortmaker
  2 siblings, 0 replies; 9+ messages in thread
From: Paul Gortmaker @ 2017-02-15 18:03 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-devel

In http://errors.yoctoproject.org/Errors/Details/130583/ we see the
following:

  /bin/bash: line 1: glib-mkenums: command not found
  /bin/bash: glib-genmarshal: command not found
  Makefile:1808: recipe for target 'gstenumtypes.h' failed
  make[2]: *** [gstenumtypes.h] Error 127

Most people don't see this because most hosts have these binaries
in /usr/bin -- e.g. libglib2.0-dev in Ubuntu provides them.

However, after making this change, we see the following in the
build for gstreamer:

./recipe-sysroot-native/usr/bin/glib-mkenums
./recipe-sysroot-native/usr/bin/glib-genmarshal

..and hence this change should resolve the above Yocto issue.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
---
 .../recipes-multimedia/gstreamer-0.10/gstreamer_0.10.36.bb            | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gstreamer_0.10.36.bb b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gstreamer_0.10.36.bb
index fa80ddac74f0..5f97a20fd6c6 100644
--- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gstreamer_0.10.36.bb
+++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gstreamer_0.10.36.bb
@@ -7,7 +7,7 @@ SECTION = "multimedia"
 LICENSE = "LGPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605 \
                     file://gst/gst.h;beginline=1;endline=21;md5=8e5fe5e87d33a04479fde862e238eaa4"
-DEPENDS = "glib-2.0 libxml2 bison-native flex-native"
+DEPENDS = "glib-2.0 libxml2 bison-native flex-native glib-2.0-native"
 
 PR = "r2"
 
@@ -51,5 +51,3 @@ RRECOMMENDS_${PN}_qemux86-64 += "kernel-module-snd-ens1370 kernel-module-snd-raw
 FILES_${PN} += " ${libdir}/gstreamer-0.10/*.so"
 FILES_${PN}-dev += " ${libdir}/gstreamer-0.10/*.la ${libdir}/gstreamer-0.10/*.a"
 FILES_${PN}-dbg += " ${libdir}/gstreamer-0.10/.debug/ ${libexecdir}/gstreamer-0.10/.debug/"
-
-PNBLACKLIST[gstreamer] ?= "Fails to build with RSS http://errors.yoctoproject.org/Errors/Details/130583/"
-- 
2.7.4



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

* [PATCH 2/3] remove blacklist entries against blacklisted gstreamer
  2017-02-15 18:03 [PATCH 0/3] fix gstreamer and its assoc. fallout Paul Gortmaker
  2017-02-15 18:03 ` [PATCH 1/3] gstreamer: fix dependency issue and un-blacklist it Paul Gortmaker
@ 2017-02-15 18:03 ` Paul Gortmaker
  2017-02-19 19:59   ` Martin Jansa
  2017-02-15 18:03 ` [PATCH 3/3] farsight/xfce4-mixer: unblacklist recipes Paul Gortmaker
  2 siblings, 1 reply; 9+ messages in thread
From: Paul Gortmaker @ 2017-02-15 18:03 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-devel

With gstreamer now fixed, we can remove all the blacklist entries
against it.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
---
 meta-gnome/recipes-apps/cheese/cheese_2.30.1.bb                        | 2 --
 meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb                       | 3 ---
 meta-gnome/recipes-support/florence/florence_0.5.4.bb                  | 2 --
 .../recipes-multimedia/gstreamer-0.10/gst-fluendo-mp3_0.10.31.bb       | 2 --
 .../recipes-multimedia/gstreamer-0.10/gst-fluendo-mpegdemux_0.10.85.bb | 2 --
 .../recipes-multimedia/gstreamer-0.10/gst-meta-base_0.10.bb            | 2 --
 .../recipes-multimedia/gstreamer-0.10/gst-openmax_0.10.1.bb            | 2 --
 .../recipes-multimedia/gstreamer-0.10/gst-plugins-bad_0.10.23.bb       | 2 --
 .../recipes-multimedia/gstreamer-0.10/gst-plugins-base_0.10.36.bb      | 2 --
 .../recipes-multimedia/gstreamer-0.10/gst-plugins-gl_0.10.3.bb         | 2 --
 .../recipes-multimedia/gstreamer-0.10/gst-plugins-good_0.10.31.bb      | 2 --
 .../recipes-multimedia/gstreamer-0.10/gst-plugins-ugly_0.10.19.bb      | 2 --
 meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-rtsp_0.10.8.bb   | 2 --
 meta-oe/recipes-support/farsight/farsight2_0.0.22.bb                   | 1 -
 meta-oe/recipes-support/farsight/libnice_0.0.13.bb                     | 2 --
 15 files changed, 30 deletions(-)

diff --git a/meta-gnome/recipes-apps/cheese/cheese_2.30.1.bb b/meta-gnome/recipes-apps/cheese/cheese_2.30.1.bb
index 682c6fa26f6b..4be29ac67934 100644
--- a/meta-gnome/recipes-apps/cheese/cheese_2.30.1.bb
+++ b/meta-gnome/recipes-apps/cheese/cheese_2.30.1.bb
@@ -21,6 +21,4 @@ do_configure_prepend() {
     sed -i -e "s: help : :g" ${S}/Makefile.am
 }
 
-PNBLACKLIST[cheese] ?= "Depends on blacklisted gstreamer"
-
 PNBLACKLIST[cheese] ?= "Depends on blacklisted gnome-desktop"
diff --git a/meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb b/meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb
index 94a14c818f10..4a1313c544c2 100644
--- a/meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb
+++ b/meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb
@@ -30,6 +30,3 @@ FILES_${PN} += "${libdir}/${BPN}/extensions/*.so \
                 ${libdir}/${BPN}/extensions/*.extension"
 FILES_${PN}-dev += "${libdir}/${BPN}/extensions/*.la"
 FILES_${PN}-dbg += "${libdir}/${BPN}/extensions/.debug/"
-
-
-PNBLACKLIST[gthumb] ?= "Depends on blacklisted gstreamer"
diff --git a/meta-gnome/recipes-support/florence/florence_0.5.4.bb b/meta-gnome/recipes-support/florence/florence_0.5.4.bb
index d7e5b095944d..dfdb6bdb8c4d 100644
--- a/meta-gnome/recipes-support/florence/florence_0.5.4.bb
+++ b/meta-gnome/recipes-support/florence/florence_0.5.4.bb
@@ -18,5 +18,3 @@ SRC_URI[sha256sum] = "26d33aa20d5fbf34ceeded4c41cb922d2988b6082e33d9acc46dd7bfe5
 inherit gettext autotools gconf pkgconfig
 
 EXTRA_OECONF = "--disable-scrollkeeper --without-docs --without-at-spi --without-panelapplet --without-xrecord"
-
-PNBLACKLIST[florence] ?= "Depends on blacklisted gstreamer"
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-fluendo-mp3_0.10.31.bb b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-fluendo-mp3_0.10.31.bb
index e7c7c21dac9f..1e2cd2a4ab79 100644
--- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-fluendo-mp3_0.10.31.bb
+++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-fluendo-mp3_0.10.31.bb
@@ -12,5 +12,3 @@ acpaths = "-I ${S}/common/m4 -I ${S}/m4"
 
 SRC_URI[md5sum] = "adf0390f3416bb72f91c358528be0c38"
 SRC_URI[sha256sum] = "dae0d0559a4e159c0dd92b7e18de059a5783f8d038904c7de4ca6393f7d55c7d"
-
-PNBLACKLIST[gst-fluendo-mp3] ?= "Depends on blacklisted gstreamer"
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-fluendo-mpegdemux_0.10.85.bb b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-fluendo-mpegdemux_0.10.85.bb
index 9787dbae724a..7bba41a34165 100644
--- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-fluendo-mpegdemux_0.10.85.bb
+++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-fluendo-mpegdemux_0.10.85.bb
@@ -10,5 +10,3 @@ acpaths = "-I ${S}/common/m4 -I ${S}/m4"
 
 SRC_URI[md5sum] = "7c4fb993f80b9ae631b11897733f0970"
 SRC_URI[sha256sum] = "df04c91cc8e5d9a892c2492ed989974b4547beaa2a3647649e85113317897424"
-
-PNBLACKLIST[gst-fluendo-mpegdemux] ?= "Depends on blacklisted gstreamer"
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-meta-base_0.10.bb b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-meta-base_0.10.bb
index afd6a58a8c93..039abe14fa0f 100644
--- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-meta-base_0.10.bb
+++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-meta-base_0.10.bb
@@ -71,5 +71,3 @@ RDEPENDS_gst-meta-video = "\
 
 RRECOMMENDS_gst-meta-video = "\
     gst-meta-audio"
-
-PNBLACKLIST[gst-meta-base] ?= "Depends on blacklisted gstreamer"
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-openmax_0.10.1.bb b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-openmax_0.10.1.bb
index 8b2bf752412f..2e015795695f 100644
--- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-openmax_0.10.1.bb
+++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-openmax_0.10.1.bb
@@ -33,5 +33,3 @@ FILES_${PN}-dbg += "${libdir}/gstreamer-0.10/.debug/"
 
 SRC_URI[md5sum] = "4d0370bfe99dea20918c84347abadb4e"
 SRC_URI[sha256sum] = "9074d5a0591995133d19cfb15144f19664f902c1623f996595695cf2c2070e1f"
-
-PNBLACKLIST[gst-openmax] ?= "Depends on blacklisted gstreamer"
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-bad_0.10.23.bb b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-bad_0.10.23.bb
index 8abd63a142cc..38fccc8d01bb 100644
--- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-bad_0.10.23.bb
+++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-bad_0.10.23.bb
@@ -59,5 +59,3 @@ do_configure_prepend() {
 
 SRC_URI[md5sum] = "fcb09798114461955260e4d940db5987"
 SRC_URI[sha256sum] = "0eae7d1a1357ae8377fded6a1b42e663887beabe0e6cc336e2ef9ada42e11491"
-
-PNBLACKLIST[gst-plugins-bad] ?= "Depends on blacklisted gstreamer"
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-base_0.10.36.bb b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-base_0.10.36.bb
index 02252bfb62d8..eefd993e1655 100644
--- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-base_0.10.36.bb
+++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-base_0.10.36.bb
@@ -42,5 +42,3 @@ CACHED_CONFIGUREVARS_append_x86 = " ac_cv_header_emmintrin_h=no ac_cv_header_xmm
 
 # /usr/bin/gst-visualise-0.10 is a perl script.
 RDEPENDS_${PN}-apps += "perl"
-
-PNBLACKLIST[gst-plugins-base] ?= "Depends on blacklisted gstreamer"
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-gl_0.10.3.bb b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-gl_0.10.3.bb
index 62a6754464cf..6859f338e703 100644
--- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-gl_0.10.3.bb
+++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-gl_0.10.3.bb
@@ -23,5 +23,3 @@ EXTRA_OECONF += "ac_cv_header_GL_gl_h=no"
 ALLOW_EMPTY_${PN} = "1"
 ALLOW_EMPTY_${PN}-apps = "1"
 ALLOW_EMPTY_${PN}-glib = "1"
-
-PNBLACKLIST[gst-plugins-gl] ?= "Depends on blacklisted gstreamer"
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-good_0.10.31.bb b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-good_0.10.31.bb
index cabbca548ba0..7e4a5256785f 100644
--- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-good_0.10.31.bb
+++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-good_0.10.31.bb
@@ -46,5 +46,3 @@ SRC_URI[sha256sum] = "7e27840e40a7932ef2dc032d7201f9f41afcaf0b437daf5d1d44dc96d9
 
 FILES_${PN}-gconfelements += "${sysconfdir}/gconf/schemas/gstreamer-0.10.schemas"
 FILES_${PN}-equalizer += "${datadir}/gstreamer-0.10/presets/*.prs"
-
-PNBLACKLIST[gst-plugins-good] ?= "Depends on blacklisted gstreamer"
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-ugly_0.10.19.bb b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-ugly_0.10.19.bb
index d8a8fd5bcf82..199b47d76242 100644
--- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-ugly_0.10.19.bb
+++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-ugly_0.10.19.bb
@@ -33,5 +33,3 @@ SRC_URI += "file://0001-cdio-compensate-for-libcdio-s-recent-cd-text-api-cha.pat
             file://0002-Fix-opencore-include-paths.patch"
 
 FILES_${PN}-amrnb += "${datadir}/gstreamer-0.10/presets/GstAmrnbEnc.prs"
-
-PNBLACKLIST[gst-plugins-ugly] ?= "Depends on blacklisted gstreamer"
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-rtsp_0.10.8.bb b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-rtsp_0.10.8.bb
index b31a7ee18fc3..b78bcaf5ac99 100644
--- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-rtsp_0.10.8.bb
+++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-rtsp_0.10.8.bb
@@ -16,5 +16,3 @@ EXTRA_OECONF = "--disable-introspection"
 inherit autotools pythonnative gettext
 
 FILES_${PN}-dev += "${datadir}/vala/vapi/"
-
-PNBLACKLIST[gst-rtsp] ?= "Depends on blacklisted gstreamer"
diff --git a/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb b/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb
index a9ed0919a6bb..8c783a9f4770 100644
--- a/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb
+++ b/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb
@@ -29,6 +29,5 @@ FILES_${PN}-dbg += "${libdir}/*/.debug"
 SRC_URI[md5sum] = "e1f540cf3ebab06c3d7db1f46b44ac88"
 SRC_URI[sha256sum] = "3ae59aa61a8071c9fad111e5fd606aabc27961eb4192f8729987a27dae6b3974"
 
-PNBLACKLIST[farsight2] ?= "Depends on blacklisted gstreamer"
 PNBLACKLIST[farsight2] ?= "Depends on blacklisted libnice"
 PNBLACKLIST[farsight2] ?= "Depends on blacklisted gst-plugins-base"
diff --git a/meta-oe/recipes-support/farsight/libnice_0.0.13.bb b/meta-oe/recipes-support/farsight/libnice_0.0.13.bb
index c4d4cd2b8ecb..3c2a054ef057 100644
--- a/meta-oe/recipes-support/farsight/libnice_0.0.13.bb
+++ b/meta-oe/recipes-support/farsight/libnice_0.0.13.bb
@@ -40,5 +40,3 @@ do_compile_append() {
 
 SRC_URI[md5sum] = "e5b9f799a57cb939ea2658ec35253ab9"
 SRC_URI[sha256sum] = "d8dd260c486a470a6052a5323920878a084e44a19df09b15728b85c9e3d6edf0"
-
-PNBLACKLIST[libnice] ?= "Depends on blacklisted gstreamer"
-- 
2.7.4



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

* [PATCH 3/3] farsight/xfce4-mixer: unblacklist recipes
  2017-02-15 18:03 [PATCH 0/3] fix gstreamer and its assoc. fallout Paul Gortmaker
  2017-02-15 18:03 ` [PATCH 1/3] gstreamer: fix dependency issue and un-blacklist it Paul Gortmaker
  2017-02-15 18:03 ` [PATCH 2/3] remove blacklist entries against blacklisted gstreamer Paul Gortmaker
@ 2017-02-15 18:03 ` Paul Gortmaker
  2017-02-19 19:58   ` Martin Jansa
  2 siblings, 1 reply; 9+ messages in thread
From: Paul Gortmaker @ 2017-02-15 18:03 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-devel

These were 3rd level fallout from gstreamer being blacklisted, as
they depended on packages that depended on gstreamer.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
---
 meta-oe/recipes-support/farsight/farsight2_0.0.22.bb     | 3 ---
 meta-xfce/recipes-apps/xfce4-mixer/xfce4-mixer_4.11.0.bb | 2 --
 2 files changed, 5 deletions(-)

diff --git a/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb b/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb
index 8c783a9f4770..2989850e9875 100644
--- a/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb
+++ b/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb
@@ -28,6 +28,3 @@ FILES_${PN}-dbg += "${libdir}/*/.debug"
 
 SRC_URI[md5sum] = "e1f540cf3ebab06c3d7db1f46b44ac88"
 SRC_URI[sha256sum] = "3ae59aa61a8071c9fad111e5fd606aabc27961eb4192f8729987a27dae6b3974"
-
-PNBLACKLIST[farsight2] ?= "Depends on blacklisted libnice"
-PNBLACKLIST[farsight2] ?= "Depends on blacklisted gst-plugins-base"
diff --git a/meta-xfce/recipes-apps/xfce4-mixer/xfce4-mixer_4.11.0.bb b/meta-xfce/recipes-apps/xfce4-mixer/xfce4-mixer_4.11.0.bb
index 2c91fa9b930e..bdbec458bc47 100644
--- a/meta-xfce/recipes-apps/xfce4-mixer/xfce4-mixer_4.11.0.bb
+++ b/meta-xfce/recipes-apps/xfce4-mixer/xfce4-mixer_4.11.0.bb
@@ -12,5 +12,3 @@ SRC_URI[md5sum] = "1b3753b91224867a3a2dfddda239c28d"
 SRC_URI[sha256sum] = "fb0c1df201ed1130f54f15b914cbe5a59286e994a137acda5609570c57112de2"
 
 RDEPENDS_${PN} = "gst-meta-audio"
-
-PNBLACKLIST[xfce4-mixer] ?= "Depends on blacklisted gst-plugins-base"
-- 
2.7.4



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

* Re: [PATCH 3/3] farsight/xfce4-mixer: unblacklist recipes
  2017-02-15 18:03 ` [PATCH 3/3] farsight/xfce4-mixer: unblacklist recipes Paul Gortmaker
@ 2017-02-19 19:58   ` Martin Jansa
  2017-02-20 18:24     ` [PATCH] farsight: fix implicit pkgconfig dependency causing configure fail Paul Gortmaker
  0 siblings, 1 reply; 9+ messages in thread
From: Martin Jansa @ 2017-02-19 19:58 UTC (permalink / raw)
  To: Paul Gortmaker; +Cc: openembedded-devel

farsight2 is still failing:
http://lists.openembedded.org/pipermail/openembedded-core/2017-February/132936.html

On Wed, Feb 15, 2017 at 7:03 PM, Paul Gortmaker <
paul.gortmaker@windriver.com> wrote:

> These were 3rd level fallout from gstreamer being blacklisted, as
> they depended on packages that depended on gstreamer.
>
> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
> ---
>  meta-oe/recipes-support/farsight/farsight2_0.0.22.bb     | 3 ---
>  meta-xfce/recipes-apps/xfce4-mixer/xfce4-mixer_4.11.0.bb | 2 --
>  2 files changed, 5 deletions(-)
>
> diff --git a/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb
> b/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb
> index 8c783a9f4770..2989850e9875 100644
> --- a/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb
> +++ b/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb
> @@ -28,6 +28,3 @@ FILES_${PN}-dbg += "${libdir}/*/.debug"
>
>  SRC_URI[md5sum] = "e1f540cf3ebab06c3d7db1f46b44ac88"
>  SRC_URI[sha256sum] = "3ae59aa61a8071c9fad111e5fd606a
> abc27961eb4192f8729987a27dae6b3974"
> -
> -PNBLACKLIST[farsight2] ?= "Depends on blacklisted libnice"
> -PNBLACKLIST[farsight2] ?= "Depends on blacklisted gst-plugins-base"
> diff --git a/meta-xfce/recipes-apps/xfce4-mixer/xfce4-mixer_4.11.0.bb
> b/meta-xfce/recipes-apps/xfce4-mixer/xfce4-mixer_4.11.0.bb
> index 2c91fa9b930e..bdbec458bc47 100644
> --- a/meta-xfce/recipes-apps/xfce4-mixer/xfce4-mixer_4.11.0.bb
> +++ b/meta-xfce/recipes-apps/xfce4-mixer/xfce4-mixer_4.11.0.bb
> @@ -12,5 +12,3 @@ SRC_URI[md5sum] = "1b3753b91224867a3a2dfddda239c28d"
>  SRC_URI[sha256sum] = "fb0c1df201ed1130f54f15b914cbe5
> a59286e994a137acda5609570c57112de2"
>
>  RDEPENDS_${PN} = "gst-meta-audio"
> -
> -PNBLACKLIST[xfce4-mixer] ?= "Depends on blacklisted gst-plugins-base"
> --
> 2.7.4
>
>


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

* Re: [PATCH 2/3] remove blacklist entries against blacklisted gstreamer
  2017-02-15 18:03 ` [PATCH 2/3] remove blacklist entries against blacklisted gstreamer Paul Gortmaker
@ 2017-02-19 19:59   ` Martin Jansa
  2017-02-20 19:16     ` [PATCH] florence: add explicit dependency on gconf-native to fix install error Paul Gortmaker
  2017-02-20 19:17     ` [PATCH] gthumb: fix implict dependency on gconf causing configure fail Paul Gortmaker
  0 siblings, 2 replies; 9+ messages in thread
From: Martin Jansa @ 2017-02-19 19:59 UTC (permalink / raw)
  To: Paul Gortmaker; +Cc: openembedded-devel

florence, gthumb, farsight2 are failing:

http://lists.openembedded.org/pipermail/openembedded-core/2017-February/132936.html

On Wed, Feb 15, 2017 at 7:03 PM, Paul Gortmaker <
paul.gortmaker@windriver.com> wrote:

> With gstreamer now fixed, we can remove all the blacklist entries
> against it.
>
> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
> ---
>  meta-gnome/recipes-apps/cheese/cheese_2.30.1.bb                        |
> 2 --
>  meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb                       |
> 3 ---
>  meta-gnome/recipes-support/florence/florence_0.5.4.bb                  |
> 2 --
>  .../recipes-multimedia/gstreamer-0.10/gst-fluendo-mp3_0.10.31.bb       |
> 2 --
>  .../recipes-multimedia/gstreamer-0.10/gst-fluendo-mpegdemux_0.10.85.bb |
> 2 --
>  .../recipes-multimedia/gstreamer-0.10/gst-meta-base_0.10.bb            |
> 2 --
>  .../recipes-multimedia/gstreamer-0.10/gst-openmax_0.10.1.bb            |
> 2 --
>  .../recipes-multimedia/gstreamer-0.10/gst-plugins-bad_0.10.23.bb       |
> 2 --
>  .../recipes-multimedia/gstreamer-0.10/gst-plugins-base_0.10.36.bb      |
> 2 --
>  .../recipes-multimedia/gstreamer-0.10/gst-plugins-gl_0.10.3.bb         |
> 2 --
>  .../recipes-multimedia/gstreamer-0.10/gst-plugins-good_0.10.31.bb      |
> 2 --
>  .../recipes-multimedia/gstreamer-0.10/gst-plugins-ugly_0.10.19.bb      |
> 2 --
>  meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-rtsp_0.10.8.bb   |
> 2 --
>  meta-oe/recipes-support/farsight/farsight2_0.0.22.bb                   |
> 1 -
>  meta-oe/recipes-support/farsight/libnice_0.0.13.bb                     |
> 2 --
>  15 files changed, 30 deletions(-)
>
> diff --git a/meta-gnome/recipes-apps/cheese/cheese_2.30.1.bb
> b/meta-gnome/recipes-apps/cheese/cheese_2.30.1.bb
> index 682c6fa26f6b..4be29ac67934 100644
> --- a/meta-gnome/recipes-apps/cheese/cheese_2.30.1.bb
> +++ b/meta-gnome/recipes-apps/cheese/cheese_2.30.1.bb
> @@ -21,6 +21,4 @@ do_configure_prepend() {
>      sed -i -e "s: help : :g" ${S}/Makefile.am
>  }
>
> -PNBLACKLIST[cheese] ?= "Depends on blacklisted gstreamer"
> -
>  PNBLACKLIST[cheese] ?= "Depends on blacklisted gnome-desktop"
> diff --git a/meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb
> b/meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb
> index 94a14c818f10..4a1313c544c2 100644
> --- a/meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb
> +++ b/meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb
> @@ -30,6 +30,3 @@ FILES_${PN} += "${libdir}/${BPN}/extensions/*.so \
>                  ${libdir}/${BPN}/extensions/*.extension"
>  FILES_${PN}-dev += "${libdir}/${BPN}/extensions/*.la"
>  FILES_${PN}-dbg += "${libdir}/${BPN}/extensions/.debug/"
> -
> -
> -PNBLACKLIST[gthumb] ?= "Depends on blacklisted gstreamer"
> diff --git a/meta-gnome/recipes-support/florence/florence_0.5.4.bb
> b/meta-gnome/recipes-support/florence/florence_0.5.4.bb
> index d7e5b095944d..dfdb6bdb8c4d 100644
> --- a/meta-gnome/recipes-support/florence/florence_0.5.4.bb
> +++ b/meta-gnome/recipes-support/florence/florence_0.5.4.bb
> @@ -18,5 +18,3 @@ SRC_URI[sha256sum] = "26d33aa20d5fbf34ceeded4c41cb92
> 2d2988b6082e33d9acc46dd7bfe5
>  inherit gettext autotools gconf pkgconfig
>
>  EXTRA_OECONF = "--disable-scrollkeeper --without-docs --without-at-spi
> --without-panelapplet --without-xrecord"
> -
> -PNBLACKLIST[florence] ?= "Depends on blacklisted gstreamer"
> diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> fluendo-mp3_0.10.31.bb b/meta-multimedia/recipes-
> multimedia/gstreamer-0.10/gst-fluendo-mp3_0.10.31.bb
> index e7c7c21dac9f..1e2cd2a4ab79 100644
> --- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> fluendo-mp3_0.10.31.bb
> +++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> fluendo-mp3_0.10.31.bb
> @@ -12,5 +12,3 @@ acpaths = "-I ${S}/common/m4 -I ${S}/m4"
>
>  SRC_URI[md5sum] = "adf0390f3416bb72f91c358528be0c38"
>  SRC_URI[sha256sum] = "dae0d0559a4e159c0dd92b7e18de05
> 9a5783f8d038904c7de4ca6393f7d55c7d"
> -
> -PNBLACKLIST[gst-fluendo-mp3] ?= "Depends on blacklisted gstreamer"
> diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> fluendo-mpegdemux_0.10.85.bb b/meta-multimedia/recipes-
> multimedia/gstreamer-0.10/gst-fluendo-mpegdemux_0.10.85.bb
> index 9787dbae724a..7bba41a34165 100644
> --- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> fluendo-mpegdemux_0.10.85.bb
> +++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> fluendo-mpegdemux_0.10.85.bb
> @@ -10,5 +10,3 @@ acpaths = "-I ${S}/common/m4 -I ${S}/m4"
>
>  SRC_URI[md5sum] = "7c4fb993f80b9ae631b11897733f0970"
>  SRC_URI[sha256sum] = "df04c91cc8e5d9a892c2492ed98997
> 4b4547beaa2a3647649e85113317897424"
> -
> -PNBLACKLIST[gst-fluendo-mpegdemux] ?= "Depends on blacklisted gstreamer"
> diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> meta-base_0.10.bb b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> meta-base_0.10.bb
> index afd6a58a8c93..039abe14fa0f 100644
> --- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> meta-base_0.10.bb
> +++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> meta-base_0.10.bb
> @@ -71,5 +71,3 @@ RDEPENDS_gst-meta-video = "\
>
>  RRECOMMENDS_gst-meta-video = "\
>      gst-meta-audio"
> -
> -PNBLACKLIST[gst-meta-base] ?= "Depends on blacklisted gstreamer"
> diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> openmax_0.10.1.bb b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> openmax_0.10.1.bb
> index 8b2bf752412f..2e015795695f 100644
> --- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> openmax_0.10.1.bb
> +++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> openmax_0.10.1.bb
> @@ -33,5 +33,3 @@ FILES_${PN}-dbg += "${libdir}/gstreamer-0.10/.debug/"
>
>  SRC_URI[md5sum] = "4d0370bfe99dea20918c84347abadb4e"
>  SRC_URI[sha256sum] = "9074d5a0591995133d19cfb15144f1
> 9664f902c1623f996595695cf2c2070e1f"
> -
> -PNBLACKLIST[gst-openmax] ?= "Depends on blacklisted gstreamer"
> diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> plugins-bad_0.10.23.bb b/meta-multimedia/recipes-
> multimedia/gstreamer-0.10/gst-plugins-bad_0.10.23.bb
> index 8abd63a142cc..38fccc8d01bb 100644
> --- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> plugins-bad_0.10.23.bb
> +++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> plugins-bad_0.10.23.bb
> @@ -59,5 +59,3 @@ do_configure_prepend() {
>
>  SRC_URI[md5sum] = "fcb09798114461955260e4d940db5987"
>  SRC_URI[sha256sum] = "0eae7d1a1357ae8377fded6a1b42e6
> 63887beabe0e6cc336e2ef9ada42e11491"
> -
> -PNBLACKLIST[gst-plugins-bad] ?= "Depends on blacklisted gstreamer"
> diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> plugins-base_0.10.36.bb b/meta-multimedia/recipes-
> multimedia/gstreamer-0.10/gst-plugins-base_0.10.36.bb
> index 02252bfb62d8..eefd993e1655 100644
> --- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> plugins-base_0.10.36.bb
> +++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> plugins-base_0.10.36.bb
> @@ -42,5 +42,3 @@ CACHED_CONFIGUREVARS_append_x86 = "
> ac_cv_header_emmintrin_h=no ac_cv_header_xmm
>
>  # /usr/bin/gst-visualise-0.10 is a perl script.
>  RDEPENDS_${PN}-apps += "perl"
> -
> -PNBLACKLIST[gst-plugins-base] ?= "Depends on blacklisted gstreamer"
> diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> plugins-gl_0.10.3.bb b/meta-multimedia/recipes-multimedia/gstreamer-0.10/
> gst-plugins-gl_0.10.3.bb
> index 62a6754464cf..6859f338e703 100644
> --- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> plugins-gl_0.10.3.bb
> +++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> plugins-gl_0.10.3.bb
> @@ -23,5 +23,3 @@ EXTRA_OECONF += "ac_cv_header_GL_gl_h=no"
>  ALLOW_EMPTY_${PN} = "1"
>  ALLOW_EMPTY_${PN}-apps = "1"
>  ALLOW_EMPTY_${PN}-glib = "1"
> -
> -PNBLACKLIST[gst-plugins-gl] ?= "Depends on blacklisted gstreamer"
> diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> plugins-good_0.10.31.bb b/meta-multimedia/recipes-
> multimedia/gstreamer-0.10/gst-plugins-good_0.10.31.bb
> index cabbca548ba0..7e4a5256785f 100644
> --- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> plugins-good_0.10.31.bb
> +++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> plugins-good_0.10.31.bb
> @@ -46,5 +46,3 @@ SRC_URI[sha256sum] = "7e27840e40a7932ef2dc032d7201f9
> f41afcaf0b437daf5d1d44dc96d9
>
>  FILES_${PN}-gconfelements += "${sysconfdir}/gconf/schemas/
> gstreamer-0.10.schemas"
>  FILES_${PN}-equalizer += "${datadir}/gstreamer-0.10/presets/*.prs"
> -
> -PNBLACKLIST[gst-plugins-good] ?= "Depends on blacklisted gstreamer"
> diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> plugins-ugly_0.10.19.bb b/meta-multimedia/recipes-
> multimedia/gstreamer-0.10/gst-plugins-ugly_0.10.19.bb
> index d8a8fd5bcf82..199b47d76242 100644
> --- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> plugins-ugly_0.10.19.bb
> +++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> plugins-ugly_0.10.19.bb
> @@ -33,5 +33,3 @@ SRC_URI += "file://0001-cdio-compensate-
> for-libcdio-s-recent-cd-text-api-cha.pat
>              file://0002-Fix-opencore-include-paths.patch"
>
>  FILES_${PN}-amrnb += "${datadir}/gstreamer-0.10/presets/GstAmrnbEnc.prs"
> -
> -PNBLACKLIST[gst-plugins-ugly] ?= "Depends on blacklisted gstreamer"
> diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> rtsp_0.10.8.bb b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-
> rtsp_0.10.8.bb
> index b31a7ee18fc3..b78bcaf5ac99 100644
> --- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-rtsp_0.10.8.bb
> +++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-rtsp_0.10.8.bb
> @@ -16,5 +16,3 @@ EXTRA_OECONF = "--disable-introspection"
>  inherit autotools pythonnative gettext
>
>  FILES_${PN}-dev += "${datadir}/vala/vapi/"
> -
> -PNBLACKLIST[gst-rtsp] ?= "Depends on blacklisted gstreamer"
> diff --git a/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb
> b/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb
> index a9ed0919a6bb..8c783a9f4770 100644
> --- a/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb
> +++ b/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb
> @@ -29,6 +29,5 @@ FILES_${PN}-dbg += "${libdir}/*/.debug"
>  SRC_URI[md5sum] = "e1f540cf3ebab06c3d7db1f46b44ac88"
>  SRC_URI[sha256sum] = "3ae59aa61a8071c9fad111e5fd606a
> abc27961eb4192f8729987a27dae6b3974"
>
> -PNBLACKLIST[farsight2] ?= "Depends on blacklisted gstreamer"
>  PNBLACKLIST[farsight2] ?= "Depends on blacklisted libnice"
>  PNBLACKLIST[farsight2] ?= "Depends on blacklisted gst-plugins-base"
> diff --git a/meta-oe/recipes-support/farsight/libnice_0.0.13.bb
> b/meta-oe/recipes-support/farsight/libnice_0.0.13.bb
> index c4d4cd2b8ecb..3c2a054ef057 100644
> --- a/meta-oe/recipes-support/farsight/libnice_0.0.13.bb
> +++ b/meta-oe/recipes-support/farsight/libnice_0.0.13.bb
> @@ -40,5 +40,3 @@ do_compile_append() {
>
>  SRC_URI[md5sum] = "e5b9f799a57cb939ea2658ec35253ab9"
>  SRC_URI[sha256sum] = "d8dd260c486a470a6052a532392087
> 8a084e44a19df09b15728b85c9e3d6edf0"
> -
> -PNBLACKLIST[libnice] ?= "Depends on blacklisted gstreamer"
> --
> 2.7.4
>
>


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

* [PATCH] farsight: fix implicit pkgconfig dependency causing configure fail
  2017-02-19 19:58   ` Martin Jansa
@ 2017-02-20 18:24     ` Paul Gortmaker
  0 siblings, 0 replies; 9+ messages in thread
From: Paul Gortmaker @ 2017-02-20 18:24 UTC (permalink / raw)
  To: openembedded-devel

In the config log we see:

  configure:12277: checking whether to build static libraries
  configure:12281: result: yes
  configure:12419: checking for x86_64-overc-linux-pkg-config
  configure:12452: result: no
  configure:12462: checking for pkg-config
  configure:12495: result: no
  configure:12801: Using Farsight2 source release as package name
  configure:12825: Using Unknown package origin as package origin
  configure:12879: Using /usr/libexec/gst-install-plugins-helper as plugin install helper
  configure:12953: checking for NICE
  configure:13022: error: Need libnice >= 0.0.9

While it libnice that fails configure, it is the absence of pkg-config
several lines above that causes the failure, as libnice is in the sysroot.

For most build hosts, you'll have to remove the default binary that
lives in /usr/bin/pkg-config in order to see this failure.

Cc: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>

diff --git a/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb b/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb
index 2989850e9875..7d88b5405e16 100644
--- a/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb
+++ b/meta-oe/recipes-support/farsight/farsight2_0.0.22.bb
@@ -9,7 +9,7 @@ PR = "r3"
 
 DEPENDS = "libnice glib-2.0 libxml2 zlib dbus gstreamer gst-plugins-base"
 
-inherit autotools
+inherit autotools pkgconfig
 
 PACKAGECONFIG ??= ""
 PACKAGECONFIG[gupnp] = "--enable-gupnp,--disable-gupnp,gupnp-igd"
-- 
2.7.4



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

* [PATCH] florence: add explicit dependency on gconf-native to fix install error
  2017-02-19 19:59   ` Martin Jansa
@ 2017-02-20 19:16     ` Paul Gortmaker
  2017-02-20 19:17     ` [PATCH] gthumb: fix implict dependency on gconf causing configure fail Paul Gortmaker
  1 sibling, 0 replies; 9+ messages in thread
From: Paul Gortmaker @ 2017-02-20 19:16 UTC (permalink / raw)
  To: openembedded-devel

We currently see:

  | /bin/bash: gconftool-2: command not found
  | Makefile:841: recipe for target 'install-data-local' failed
  | make[3]: *** [install-data-local] Error 127

Presumably this now happens more regularly with demise of the shared
sysroot.  Adding gconf-native to the dependency list fixes it.

Cc: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>

diff --git a/meta-gnome/recipes-support/florence/florence_0.5.4.bb b/meta-gnome/recipes-support/florence/florence_0.5.4.bb
index dfdb6bdb8c4d..8ce85c9670fe 100644
--- a/meta-gnome/recipes-support/florence/florence_0.5.4.bb
+++ b/meta-gnome/recipes-support/florence/florence_0.5.4.bb
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
 
 PR = "r1"
 
-DEPENDS = "gtk+ libxml2 libglade librsvg libxtst gconf cairo intltool-native gnome-doc-utils libnotify gstreamer"
+DEPENDS = "gtk+ libxml2 libglade librsvg libxtst gconf gconf-native cairo intltool-native gnome-doc-utils libnotify gstreamer"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/florence/florence/${PV}-gtk2/florence-${PV}.tar.bz2 \
            file://fix-no-atspi-compile.patch"
-- 
2.7.4



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

* [PATCH] gthumb: fix implict dependency on gconf causing configure fail
  2017-02-19 19:59   ` Martin Jansa
  2017-02-20 19:16     ` [PATCH] florence: add explicit dependency on gconf-native to fix install error Paul Gortmaker
@ 2017-02-20 19:17     ` Paul Gortmaker
  1 sibling, 0 replies; 9+ messages in thread
From: Paul Gortmaker @ 2017-02-20 19:17 UTC (permalink / raw)
  To: openembedded-devel

Currently we see:

  | checking for gconftool-2... no
  | configure: error: gconftool-2 executable not found in your path - should be installed with GConf
  | ERROR: Function failed: do_configure (log file is located at gthumb/2.12.4-r4/temp/log.do_configure.5243)
  ERROR: Task (meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb:do_configure) failed with exit code '1'

Presumably this now happens more regularly with demise of the shared
sysroot.  Adding gconf-native to the dependency list fixes it.

Cc: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>

diff --git a/meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb b/meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb
index 4a1313c544c2..62bbc5bd1ccb 100644
--- a/meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb
+++ b/meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb
@@ -2,7 +2,7 @@ SUMMARY = "gThumb is an image viewer and browser for the GNOME Desktop"
 SECTION = "x11/gnome"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
-DEPENDS = "gnome-common-native glib-2.0 gtk+ libxml2 gnome-doc-utils libunique gconf libpng gstreamer jpeg tiff gst-plugins-base intltool-native"
+DEPENDS = "gnome-common-native glib-2.0 gtk+ libxml2 gnome-doc-utils libunique gconf libpng gstreamer jpeg tiff gst-plugins-base intltool-native gconf-native"
 
 PR = "r4"
 
-- 
2.7.4



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

end of thread, other threads:[~2017-02-20 19:17 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-15 18:03 [PATCH 0/3] fix gstreamer and its assoc. fallout Paul Gortmaker
2017-02-15 18:03 ` [PATCH 1/3] gstreamer: fix dependency issue and un-blacklist it Paul Gortmaker
2017-02-15 18:03 ` [PATCH 2/3] remove blacklist entries against blacklisted gstreamer Paul Gortmaker
2017-02-19 19:59   ` Martin Jansa
2017-02-20 19:16     ` [PATCH] florence: add explicit dependency on gconf-native to fix install error Paul Gortmaker
2017-02-20 19:17     ` [PATCH] gthumb: fix implict dependency on gconf causing configure fail Paul Gortmaker
2017-02-15 18:03 ` [PATCH 3/3] farsight/xfce4-mixer: unblacklist recipes Paul Gortmaker
2017-02-19 19:58   ` Martin Jansa
2017-02-20 18:24     ` [PATCH] farsight: fix implicit pkgconfig dependency causing configure fail Paul Gortmaker

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.