All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-gnome][PATCH 1/9] tracker: introspection is not valid meson option
@ 2021-11-13 17:45 Khem Raj
  2021-11-13 17:45 ` [meta-gnome][PATCH 2/9] gnome-desktop: " Khem Raj
                   ` (7 more replies)
  0 siblings, 8 replies; 11+ messages in thread
From: Khem Raj @ 2021-11-13 17:45 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Khem Raj

meson 0.60+ errors out on unknown options and -Dintrospection
is not a valid option

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta-gnome/recipes-gnome/tracker/tracker_3.1.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-gnome/recipes-gnome/tracker/tracker_3.1.1.bb b/meta-gnome/recipes-gnome/tracker/tracker_3.1.1.bb
index b16a5a2ea8..28193d8d27 100644
--- a/meta-gnome/recipes-gnome/tracker/tracker_3.1.1.bb
+++ b/meta-gnome/recipes-gnome/tracker/tracker_3.1.1.bb
@@ -25,7 +25,7 @@ SRC_URI[archive.sha256sum] = "4376e2e98454066f44f7a242e45b99b3bfe4c03b67fab19abb
 
 # gobject-introspection is mandatory and cannot be configured
 REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
-UNKNOWN_CONFIGURE_WHITELIST:append = " introspection"
+GIR_MESON_OPTION = ""
 
 # text search is not an option anymore and requires sqlite3 build with
 # PACKAGECONFIG[fts5] set (default)
-- 
2.33.1



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

* [meta-gnome][PATCH 2/9] gnome-desktop: introspection is not valid meson option
  2021-11-13 17:45 [meta-gnome][PATCH 1/9] tracker: introspection is not valid meson option Khem Raj
@ 2021-11-13 17:45 ` Khem Raj
  2021-11-13 17:46 ` [meta-multimedia][PATCH 3/9] libmediaart: " Khem Raj
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Khem Raj @ 2021-11-13 17:45 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Khem Raj

meson 0.60+ errors out on unknown options and -Dintrospection
is not a valid option

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop_41.0.bb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop_41.0.bb b/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop_41.0.bb
index 71ea79f99a..36dab453b1 100644
--- a/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop_41.0.bb
+++ b/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop_41.0.bb
@@ -13,7 +13,8 @@ inherit gnomebase itstool pkgconfig upstream-version-is-even gobject-introspecti
 REQUIRED_DISTRO_FEATURES = "x11"
 # gobject-introspection is mandatory and cannot be configured
 REQUIRED_DISTRO_FEATURES += "gobject-introspection-data"
-UNKNOWN_CONFIGURE_WHITELIST:append = " introspection"
+
+GIR_MESON_OPTION = ""
 
 SRC_URI[archive.sha256sum] = "69cb1d3d9a10700eb66348ef1c0e66a855fc5a97ae62902df97a499da11562d2"
 SRC_URI += " \
-- 
2.33.1



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

* [meta-multimedia][PATCH 3/9] libmediaart: introspection is not valid meson option
  2021-11-13 17:45 [meta-gnome][PATCH 1/9] tracker: introspection is not valid meson option Khem Raj
  2021-11-13 17:45 ` [meta-gnome][PATCH 2/9] gnome-desktop: " Khem Raj
@ 2021-11-13 17:46 ` Khem Raj
  2021-11-14  1:50   ` [oe] " Tim Orling
  2021-11-13 17:46 ` [meta-gnome][PATCH 4/9] libgweather: " Khem Raj
                   ` (5 subsequent siblings)
  7 siblings, 1 reply; 11+ messages in thread
From: Khem Raj @ 2021-11-13 17:46 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Khem Raj

meson 0.60+ errors out on unknown options and -Dintrospection
is not a valid option

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../recipes-support/libmediaart/libmediaart-2.0_1.9.5.bb        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-multimedia/recipes-support/libmediaart/libmediaart-2.0_1.9.5.bb b/meta-multimedia/recipes-support/libmediaart/libmediaart-2.0_1.9.5.bb
index 31fe43bfa7..ffedb2625e 100644
--- a/meta-multimedia/recipes-support/libmediaart/libmediaart-2.0_1.9.5.bb
+++ b/meta-multimedia/recipes-support/libmediaart/libmediaart-2.0_1.9.5.bb
@@ -18,6 +18,6 @@ S = "${WORKDIR}/libmediaart-${PV}"
 
 # gobject-introspection is mandatory and cannot be configured
 REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
-UNKNOWN_CONFIGURE_WHITELIST = "introspection"
+GIR_MESON_OPTION = ""
 
 EXTRA_OEMESON = "-Dimage_library=gdk-pixbuf"
-- 
2.33.1



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

* [meta-gnome][PATCH 4/9] libgweather: introspection is not valid meson option
  2021-11-13 17:45 [meta-gnome][PATCH 1/9] tracker: introspection is not valid meson option Khem Raj
  2021-11-13 17:45 ` [meta-gnome][PATCH 2/9] gnome-desktop: " Khem Raj
  2021-11-13 17:46 ` [meta-multimedia][PATCH 3/9] libmediaart: " Khem Raj
@ 2021-11-13 17:46 ` Khem Raj
  2021-11-13 17:46 ` [meta-gnome][PATCH 5/9] tepl: " Khem Raj
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Khem Raj @ 2021-11-13 17:46 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Khem Raj

meson 0.60+ errors out on unknown options and -Dintrospection
is not a valid option

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta-gnome/recipes-gnome/libgweather/libgweather_40.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-gnome/recipes-gnome/libgweather/libgweather_40.0.bb b/meta-gnome/recipes-gnome/libgweather/libgweather_40.0.bb
index 1d9daac1f0..49493b17b2 100644
--- a/meta-gnome/recipes-gnome/libgweather/libgweather_40.0.bb
+++ b/meta-gnome/recipes-gnome/libgweather/libgweather_40.0.bb
@@ -11,7 +11,7 @@ SRC_URI[archive.sha256sum] = "ca4e8f2a4baaa9fc6d75d8856adb57056ef1cd6e55c775ba87
 
 # gobject-introspection is mandatory and cannot be configured
 REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
-UNKNOWN_CONFIGURE_WHITELIST:append = " introspection"
+GIR_MESON_OPTION = ""
 
 GTKDOC_MESON_OPTION = "gtk_doc"
 
-- 
2.33.1



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

* [meta-gnome][PATCH 5/9] tepl: introspection is not valid meson option
  2021-11-13 17:45 [meta-gnome][PATCH 1/9] tracker: introspection is not valid meson option Khem Raj
                   ` (2 preceding siblings ...)
  2021-11-13 17:46 ` [meta-gnome][PATCH 4/9] libgweather: " Khem Raj
@ 2021-11-13 17:46 ` Khem Raj
  2021-11-13 17:46 ` [meta-gnome][PATCH 6/9] gjs: " Khem Raj
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Khem Raj @ 2021-11-13 17:46 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Khem Raj

meson 0.60+ errors out on unknown options and -Dintrospection
is not a valid option

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta-gnome/recipes-gnome/tepl/tepl_6.00.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-gnome/recipes-gnome/tepl/tepl_6.00.0.bb b/meta-gnome/recipes-gnome/tepl/tepl_6.00.0.bb
index 755cb964c3..0ac7e3693d 100644
--- a/meta-gnome/recipes-gnome/tepl/tepl_6.00.0.bb
+++ b/meta-gnome/recipes-gnome/tepl/tepl_6.00.0.bb
@@ -19,6 +19,6 @@ SRC_URI[archive.sha256sum] = "a86397a895dca9c0de7a5ccb063bda8f7ef691cccb950ce2cf
 
 # gobject-introspection is mandatory and cannot be configured
 REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
-UNKNOWN_CONFIGURE_WHITELIST:append = " introspection"
+GIR_MESON_OPTION = ""
 
 GTKDOC_MESON_OPTION = "gtk_doc"
-- 
2.33.1



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

* [meta-gnome][PATCH 6/9] gjs: introspection is not valid meson option
  2021-11-13 17:45 [meta-gnome][PATCH 1/9] tracker: introspection is not valid meson option Khem Raj
                   ` (3 preceding siblings ...)
  2021-11-13 17:46 ` [meta-gnome][PATCH 5/9] tepl: " Khem Raj
@ 2021-11-13 17:46 ` Khem Raj
  2021-11-13 17:46 ` [meta-gnome][PATCH 7/9] tracker-miners: " Khem Raj
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Khem Raj @ 2021-11-13 17:46 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Khem Raj

meson 0.60+ errors out on unknown options and -Dintrospection
is not a valid option

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta-gnome/recipes-gnome/gjs/gjs_1.70.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-gnome/recipes-gnome/gjs/gjs_1.70.0.bb b/meta-gnome/recipes-gnome/gjs/gjs_1.70.0.bb
index 92f14e0846..f6878d1f22 100644
--- a/meta-gnome/recipes-gnome/gjs/gjs_1.70.0.bb
+++ b/meta-gnome/recipes-gnome/gjs/gjs_1.70.0.bb
@@ -16,7 +16,7 @@ SRC_URI += " \
 
 # gobject-introspection is mandatory and cannot be configured
 REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
-UNKNOWN_CONFIGURE_WHITELIST:append = " introspection"
+GIR_MESON_OPTION = ""
 
 EXTRA_OEMESON = " \
     -Dinstalled_tests=false \
-- 
2.33.1



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

* [meta-gnome][PATCH 7/9] tracker-miners: introspection is not valid meson option
  2021-11-13 17:45 [meta-gnome][PATCH 1/9] tracker: introspection is not valid meson option Khem Raj
                   ` (4 preceding siblings ...)
  2021-11-13 17:46 ` [meta-gnome][PATCH 6/9] gjs: " Khem Raj
@ 2021-11-13 17:46 ` Khem Raj
  2021-11-14 21:11   ` [oe] " Andreas Müller
  2021-11-13 17:46 ` [meta-gnome][PATCH 8/9] gedit: " Khem Raj
  2021-11-13 17:46 ` [meta-gnome][PATCH 9/9] tracker,tracker-miners: Upgrade to 3.2.1 Khem Raj
  7 siblings, 1 reply; 11+ messages in thread
From: Khem Raj @ 2021-11-13 17:46 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Khem Raj

meson 0.60+ errors out on unknown options and -Dintrospection
is not a valid option

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta-gnome/recipes-gnome/tracker/tracker-miners_3.1.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-gnome/recipes-gnome/tracker/tracker-miners_3.1.1.bb b/meta-gnome/recipes-gnome/tracker/tracker-miners_3.1.1.bb
index c2de723ac9..78d4b6203d 100644
--- a/meta-gnome/recipes-gnome/tracker/tracker-miners_3.1.1.bb
+++ b/meta-gnome/recipes-gnome/tracker/tracker-miners_3.1.1.bb
@@ -20,7 +20,7 @@ SRC_URI += "file://0001-meson.build-Just-warn-if-we-build-without-libseccomp.pat
 
 # gobject-introspection is mandatory and cannot be configured
 REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
-UNKNOWN_CONFIGURE_WHITELIST:append = " introspection"
+GIR_MESON_OPTION = ""
 
 PACKAGECONFIG ??= " \
     ${@bb.utils.contains("LICENSE_FLAGS_WHITELIST", "commercial", "ffmpeg", "", d)} \
-- 
2.33.1



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

* [meta-gnome][PATCH 8/9] gedit: introspection is not valid meson option
  2021-11-13 17:45 [meta-gnome][PATCH 1/9] tracker: introspection is not valid meson option Khem Raj
                   ` (5 preceding siblings ...)
  2021-11-13 17:46 ` [meta-gnome][PATCH 7/9] tracker-miners: " Khem Raj
@ 2021-11-13 17:46 ` Khem Raj
  2021-11-13 17:46 ` [meta-gnome][PATCH 9/9] tracker,tracker-miners: Upgrade to 3.2.1 Khem Raj
  7 siblings, 0 replies; 11+ messages in thread
From: Khem Raj @ 2021-11-13 17:46 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Khem Raj

meson 0.60+ errors out on unknown options and -Dintrospection
is not a valid option

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta-gnome/recipes-gnome/gedit/gedit_40.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-gnome/recipes-gnome/gedit/gedit_40.1.bb b/meta-gnome/recipes-gnome/gedit/gedit_40.1.bb
index 035f5d1a83..5a9c499764 100644
--- a/meta-gnome/recipes-gnome/gedit/gedit_40.1.bb
+++ b/meta-gnome/recipes-gnome/gedit/gedit_40.1.bb
@@ -27,7 +27,7 @@ SRC_URI[archive.sha256sum] = "55e394a82cb65678b1ab49526cf5bd43f00d8fba21476a4849
 
 # gobject-introspection is mandatory and cannot be configured
 REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
-UNKNOWN_CONFIGURE_WHITELIST:append = " introspection"
+GIR_MESON_OPTION = ""
 
 GTKDOC_MESON_OPTION = "gtk_doc"
 
-- 
2.33.1



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

* [meta-gnome][PATCH 9/9] tracker,tracker-miners: Upgrade to 3.2.1
  2021-11-13 17:45 [meta-gnome][PATCH 1/9] tracker: introspection is not valid meson option Khem Raj
                   ` (6 preceding siblings ...)
  2021-11-13 17:46 ` [meta-gnome][PATCH 8/9] gedit: " Khem Raj
@ 2021-11-13 17:46 ` Khem Raj
  7 siblings, 0 replies; 11+ messages in thread
From: Khem Raj @ 2021-11-13 17:46 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Khem Raj

This is latest release for tracker components

Release Notes [1] [2]

[1] https://gitlab.gnome.org/GNOME/tracker/-/commit/bcf1347a9eea300d11c95a78f8f74f38131bb560
[2] https://gitlab.gnome.org/GNOME/tracker-miners/-/commit/1e1a9e701faae73148fc05613b7e237715ad0cc9

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../{tracker-miners_3.1.1.bb => tracker-miners_3.2.1.bb}     | 2 +-
 .../tracker/{tracker_3.1.1.bb => tracker_3.2.1.bb}           | 5 +++--
 2 files changed, 4 insertions(+), 3 deletions(-)
 rename meta-gnome/recipes-gnome/tracker/{tracker-miners_3.1.1.bb => tracker-miners_3.2.1.bb} (96%)
 rename meta-gnome/recipes-gnome/tracker/{tracker_3.1.1.bb => tracker_3.2.1.bb} (88%)

diff --git a/meta-gnome/recipes-gnome/tracker/tracker-miners_3.1.1.bb b/meta-gnome/recipes-gnome/tracker/tracker-miners_3.2.1.bb
similarity index 96%
rename from meta-gnome/recipes-gnome/tracker/tracker-miners_3.1.1.bb
rename to meta-gnome/recipes-gnome/tracker/tracker-miners_3.2.1.bb
index 78d4b6203d..a9c96a53d7 100644
--- a/meta-gnome/recipes-gnome/tracker/tracker-miners_3.1.1.bb
+++ b/meta-gnome/recipes-gnome/tracker/tracker-miners_3.2.1.bb
@@ -15,8 +15,8 @@ GNOMEBASEBUILDCLASS = "meson"
 
 inherit gnomebase gsettings gobject-introspection vala bash-completion features_check
 
-SRC_URI[archive.sha256sum] = "e4d361351b156f2862a524415fbebf0539c781cd87c6629662f0265b4803b8b8"
 SRC_URI += "file://0001-meson.build-Just-warn-if-we-build-without-libseccomp.patch"
+SRC_URI[archive.sha256sum] = "44369f53e2edef41437406dbeecd477a97f8a9afdd9134832ea45d1ba2aa2c47"
 
 # gobject-introspection is mandatory and cannot be configured
 REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
diff --git a/meta-gnome/recipes-gnome/tracker/tracker_3.1.1.bb b/meta-gnome/recipes-gnome/tracker/tracker_3.2.1.bb
similarity index 88%
rename from meta-gnome/recipes-gnome/tracker/tracker_3.1.1.bb
rename to meta-gnome/recipes-gnome/tracker/tracker_3.2.1.bb
index 28193d8d27..1c18efbcef 100644
--- a/meta-gnome/recipes-gnome/tracker/tracker_3.1.1.bb
+++ b/meta-gnome/recipes-gnome/tracker/tracker_3.2.1.bb
@@ -7,6 +7,7 @@ LIC_FILES_CHKSUM = " \
 
 DEPENDS = " \
     dbus-native \
+    python3-pygobject-native \
     glib-2.0 \
     sqlite3 \
     libarchive \
@@ -19,9 +20,9 @@ DEPENDS = " \
 
 GNOMEBASEBUILDCLASS = "meson"
 
-inherit gnomebase gsettings gobject-introspection vala gtk-doc manpages bash-completion features_check
+inherit gnomebase gsettings gobject-introspection vala gtk-doc manpages bash-completion features_check python3native
 
-SRC_URI[archive.sha256sum] = "4376e2e98454066f44f7a242e45b99b3bfe4c03b67fab19abb0ed586ca748ae7"
+SRC_URI[archive.sha256sum] = "1847e08b39e6e61d848735aa1f97f7d96c038201653fa0d7cb9e81b37eb9c03a"
 
 # gobject-introspection is mandatory and cannot be configured
 REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
-- 
2.33.1



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

* Re: [oe] [meta-multimedia][PATCH 3/9] libmediaart: introspection is not valid meson option
  2021-11-13 17:46 ` [meta-multimedia][PATCH 3/9] libmediaart: " Khem Raj
@ 2021-11-14  1:50   ` Tim Orling
  0 siblings, 0 replies; 11+ messages in thread
From: Tim Orling @ 2021-11-14  1:50 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1612 bytes --]

On Sat, Nov 13, 2021 at 9:46 AM Khem Raj <raj.khem@gmail.com> wrote:

> meson 0.60+ errors out on unknown options and -Dintrospection
> is not a valid option
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
>
Acked-by: Tim Orling <ticotimo@gmail.com>

Thank you for this series. I wasn’t sure what the proper solution was.

---
>  .../recipes-support/libmediaart/libmediaart-2.0_1.9.5.bb        | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta-multimedia/recipes-support/libmediaart/
> libmediaart-2.0_1.9.5.bb b/meta-multimedia/recipes-support/libmediaart/
> libmediaart-2.0_1.9.5.bb
> index 31fe43bfa7..ffedb2625e 100644
> --- a/meta-multimedia/recipes-support/libmediaart/libmediaart-2.0_1.9.5.bb
> +++ b/meta-multimedia/recipes-support/libmediaart/libmediaart-2.0_1.9.5.bb
> @@ -18,6 +18,6 @@ S = "${WORKDIR}/libmediaart-${PV}"
>
>  # gobject-introspection is mandatory and cannot be configured
>  REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
> -UNKNOWN_CONFIGURE_WHITELIST = "introspection"
> +GIR_MESON_OPTION = ""
>
>  EXTRA_OEMESON = "-Dimage_library=gdk-pixbuf"
> --
> 2.33.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#93932):
> https://lists.openembedded.org/g/openembedded-devel/message/93932
> Mute This Topic: https://lists.openembedded.org/mt/87032482/924729
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [
> ticotimo@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
>

[-- Attachment #2: Type: text/html, Size: 3164 bytes --]

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

* Re: [oe] [meta-gnome][PATCH 7/9] tracker-miners: introspection is not valid meson option
  2021-11-13 17:46 ` [meta-gnome][PATCH 7/9] tracker-miners: " Khem Raj
@ 2021-11-14 21:11   ` Andreas Müller
  0 siblings, 0 replies; 11+ messages in thread
From: Andreas Müller @ 2021-11-14 21:11 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

On Sat, Nov 13, 2021 at 6:46 PM Khem Raj <raj.khem@gmail.com> wrote:
>
> meson 0.60+ errors out on unknown options and -Dintrospection
> is not a valid option
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
>  meta-gnome/recipes-gnome/tracker/tracker-miners_3.1.1.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta-gnome/recipes-gnome/tracker/tracker-miners_3.1.1.bb b/meta-gnome/recipes-gnome/tracker/tracker-miners_3.1.1.bb
> index c2de723ac9..78d4b6203d 100644
> --- a/meta-gnome/recipes-gnome/tracker/tracker-miners_3.1.1.bb
> +++ b/meta-gnome/recipes-gnome/tracker/tracker-miners_3.1.1.bb
> @@ -20,7 +20,7 @@ SRC_URI += "file://0001-meson.build-Just-warn-if-we-build-without-libseccomp.pat
>
>  # gobject-introspection is mandatory and cannot be configured
>  REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
> -UNKNOWN_CONFIGURE_WHITELIST:append = " introspection"
> +GIR_MESON_OPTION = ""
Makes sense - thanks for taking care

Andreas
>
>  PACKAGECONFIG ??= " \
>      ${@bb.utils.contains("LICENSE_FLAGS_WHITELIST", "commercial", "ffmpeg", "", d)} \
> --
> 2.33.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#93936): https://lists.openembedded.org/g/openembedded-devel/message/93936
> Mute This Topic: https://lists.openembedded.org/mt/87032487/3617609
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [schnitzeltony@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

end of thread, other threads:[~2021-11-14 21:11 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-13 17:45 [meta-gnome][PATCH 1/9] tracker: introspection is not valid meson option Khem Raj
2021-11-13 17:45 ` [meta-gnome][PATCH 2/9] gnome-desktop: " Khem Raj
2021-11-13 17:46 ` [meta-multimedia][PATCH 3/9] libmediaart: " Khem Raj
2021-11-14  1:50   ` [oe] " Tim Orling
2021-11-13 17:46 ` [meta-gnome][PATCH 4/9] libgweather: " Khem Raj
2021-11-13 17:46 ` [meta-gnome][PATCH 5/9] tepl: " Khem Raj
2021-11-13 17:46 ` [meta-gnome][PATCH 6/9] gjs: " Khem Raj
2021-11-13 17:46 ` [meta-gnome][PATCH 7/9] tracker-miners: " Khem Raj
2021-11-14 21:11   ` [oe] " Andreas Müller
2021-11-13 17:46 ` [meta-gnome][PATCH 8/9] gedit: " Khem Raj
2021-11-13 17:46 ` [meta-gnome][PATCH 9/9] tracker,tracker-miners: Upgrade to 3.2.1 Khem Raj

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.