All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] gstreamer1.0-python: Remove --enable-introspection
@ 2019-04-06 16:19 Khem Raj
  2019-04-06 18:27 ` Andreas Müller
  0 siblings, 1 reply; 4+ messages in thread
From: Khem Raj @ 2019-04-06 16:19 UTC (permalink / raw)
  To: openembedded-core

This option is not available and recently it is reported as error

do_configure: QA Issue: gstreamer1.0-python: configur
e was passed unrecognised options: --enable-introspection [unknown-configure-option]

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.14.4.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.14.4.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.14.4.bb
index 8d45ca2668..3358352128 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.14.4.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.14.4.bb
@@ -18,6 +18,7 @@ S = "${WORKDIR}/${PNREAL}-${PV}"
 
 inherit autotools pkgconfig distutils3-base upstream-version-is-even gobject-introspection
 
+EXTRA_OECONF_remove = "--enable-introspection"
 do_install_append() {
     # gstpythonplugin hardcodes the location of the libpython from the build
     # workspace and then fails at runtime. We can override it using
-- 
2.21.0



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

* Re: [PATCH] gstreamer1.0-python: Remove --enable-introspection
  2019-04-06 16:19 [PATCH] gstreamer1.0-python: Remove --enable-introspection Khem Raj
@ 2019-04-06 18:27 ` Andreas Müller
  2019-04-06 18:45   ` Andreas Müller
  2019-04-06 19:04   ` Khem Raj
  0 siblings, 2 replies; 4+ messages in thread
From: Andreas Müller @ 2019-04-06 18:27 UTC (permalink / raw)
  To: Khem Raj; +Cc: Patches and discussions about the oe-core layer

On Sat, Apr 6, 2019 at 6:20 PM Khem Raj <raj.khem@gmail.com> wrote:
>
> This option is not available and recently it is reported as error
>
> do_configure: QA Issue: gstreamer1.0-python: configur
> e was passed unrecognised options: --enable-introspection [unknown-configure-option]
>
Send out a patch already addressing [1] but honestly I parts of this
parts more: remove option instead of ignoring.

Cann you add:

-inherit autotools pkgconfig distutils3-base upstream-version-is-even
gobject-introspection
+inherit autotools pkgconfig distutils3-base upstream-version-is-even
gobject-introspection distro_features_check
+# gobject-introspection is mandatory and cannot be configured
+REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"

or shall I send V3?

[1] http://lists.openembedded.org/pipermail/openembedded-core/2019-April/280958.html

Andreas


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

* Re: [PATCH] gstreamer1.0-python: Remove --enable-introspection
  2019-04-06 18:27 ` Andreas Müller
@ 2019-04-06 18:45   ` Andreas Müller
  2019-04-06 19:04   ` Khem Raj
  1 sibling, 0 replies; 4+ messages in thread
From: Andreas Müller @ 2019-04-06 18:45 UTC (permalink / raw)
  To: Khem Raj; +Cc: Patches and discussions about the oe-core layer

On Sat, Apr 6, 2019 at 8:27 PM Andreas Müller <schnitzeltony@gmail.com> wrote:
AArgh recent comment went out way too early.

This patch won't work if gobject-introspection-data is not in distro
features. Then there would be unknown configure option
--disable-introspection.

So what do others think: ignore unknown options (then my patch is OK) or remove?

Andreas
>
> On Sat, Apr 6, 2019 at 6:20 PM Khem Raj <raj.khem@gmail.com> wrote:
> >
> > This option is not available and recently it is reported as error
> >
> > do_configure: QA Issue: gstreamer1.0-python: configur
> > e was passed unrecognised options: --enable-introspection [unknown-configure-option]
> >
> Send out a patch already addressing [1] but honestly I parts of this
> parts more: remove option instead of ignoring.
>
> Cann you add:
>
> -inherit autotools pkgconfig distutils3-base upstream-version-is-even
> gobject-introspection
> +inherit autotools pkgconfig distutils3-base upstream-version-is-even
> gobject-introspection distro_features_check
> +# gobject-introspection is mandatory and cannot be configured
> +REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
>
> or shall I send V3?
>
> [1] http://lists.openembedded.org/pipermail/openembedded-core/2019-April/280958.html
>
> Andreas


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

* Re: [PATCH] gstreamer1.0-python: Remove --enable-introspection
  2019-04-06 18:27 ` Andreas Müller
  2019-04-06 18:45   ` Andreas Müller
@ 2019-04-06 19:04   ` Khem Raj
  1 sibling, 0 replies; 4+ messages in thread
From: Khem Raj @ 2019-04-06 19:04 UTC (permalink / raw)
  To: Andreas Müller; +Cc: Patches and discussions about the oe-core layer

On Sat, Apr 6, 2019 at 11:27 AM Andreas Müller <schnitzeltony@gmail.com> wrote:
>
> On Sat, Apr 6, 2019 at 6:20 PM Khem Raj <raj.khem@gmail.com> wrote:
> >
> > This option is not available and recently it is reported as error
> >
> > do_configure: QA Issue: gstreamer1.0-python: configur
> > e was passed unrecognised options: --enable-introspection [unknown-configure-option]
> >
> Send out a patch already addressing [1] but honestly I parts of this
> parts more: remove option instead of ignoring.
>
> Cann you add:
>
> -inherit autotools pkgconfig distutils3-base upstream-version-is-even
> gobject-introspection
> +inherit autotools pkgconfig distutils3-base upstream-version-is-even
> gobject-introspection distro_features_check
> +# gobject-introspection is mandatory and cannot be configured
> +REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
>
> or shall I send V3?

seems better please do

>
> [1] http://lists.openembedded.org/pipermail/openembedded-core/2019-April/280958.html
>
> Andreas


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

end of thread, other threads:[~2019-04-06 19:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-06 16:19 [PATCH] gstreamer1.0-python: Remove --enable-introspection Khem Raj
2019-04-06 18:27 ` Andreas Müller
2019-04-06 18:45   ` Andreas Müller
2019-04-06 19:04   ` 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.