* Inclusion of `gobject-introspection` breaks several packages.
@ 2010-10-10 11:53 Paul Menzel
2010-10-10 13:06 ` Koen Kooi
2010-10-10 19:23 ` Khem Raj
0 siblings, 2 replies; 4+ messages in thread
From: Paul Menzel @ 2010-10-10 11:53 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1775 bytes --]
Dear OE folks,
`gobject-introspection` got added in 143188 [1] to get `libgee_0.6.0` to
build [2].
As a consequence the configure script of a lot of packages like `gtk+`,
`atk`, `gstreamer` detects the presence of GObject Introspection and
enables it.
$ ./configure --help
[…]
--enable-introspection=[no/auto/yes]
Enable introspection for this build
[…]
Auto detection seems to be the default.
[…]
configure:12206: checking for gobject-introspection
configure:12237: $PKG_CONFIG --exists --print-errors "gobject-introspection-1.0 >= 0.6.7"
configure:12240: $? = 0
configure:12251: result: yes
[…]
Now for example Pango 1.10.0 does not generate a `gir` file, which was
enabled again in a later release [3]. This breaks building for example
`gtk+` [4].
The question is how to proceed.
1. Somehow excluding `gobject-introspection` from images.
2. Would packaging gir-repository [5] help?
3. Pass `--enable-introspection=no` by default to the configure script.
4. Add `--enable-introspection=no` to all relevant packages.
5. Update to new versions supporting GObject Introspection correctly.
What do you think?
Thanks,
Paul
[1] http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=14318872c0063d26c246a35b373dbfaf4f4c6587
[2] http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=64a53b0ab6695b9ec4e327524fb41a916067bbfd
[3] http://git.gnome.org/browse/pango/commit/?id=078300ef69ab0855a7cc39503880cbc8b2e23494
[4] http://lists.linuxtogo.org/pipermail/openembedded-devel/2010-October/025174.html (patch is wrong though)
[5] http://git.gnome.org/browse/gir-repository/tree/
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Inclusion of `gobject-introspection` breaks several packages.
2010-10-10 11:53 Inclusion of `gobject-introspection` breaks several packages Paul Menzel
@ 2010-10-10 13:06 ` Koen Kooi
2010-10-10 19:23 ` Khem Raj
1 sibling, 0 replies; 4+ messages in thread
From: Koen Kooi @ 2010-10-10 13:06 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On 10-10-10 13:53, Paul Menzel wrote:
> Dear OE folks,
>
>
> `gobject-introspection` got added in 143188 [1] to get `libgee_0.6.0` to
> build [2].
>
> As a consequence the configure script of a lot of packages like `gtk+`,
> `atk`, `gstreamer` detects the presence of GObject Introspection and
> enables it.
>
> $ ./configure --help
> […]
> --enable-introspection=[no/auto/yes]
> Enable introspection for this build
> […]
>
> Auto detection seems to be the default.
Last time I looked introspection didn't work in a cross environment, so
we disable it for most packages.
If it does work for cross now, we should consider enabling it, if not,
we should disable it.
There's an open bug in the gnome bugzilla about shipping pregenerated
.gir files with releases, but I haven't seen that happen yet.
regards,
Koen
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
iD8DBQFMsbpCMkyGM64RGpERAt+ZAKCfCXN0KnNJ76mgOOetMg2VKe/LPQCeIFD5
l9YCXtGHtadqlEeSw56ib4c=
=mWyQ
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Inclusion of `gobject-introspection` breaks several packages.
2010-10-10 11:53 Inclusion of `gobject-introspection` breaks several packages Paul Menzel
2010-10-10 13:06 ` Koen Kooi
@ 2010-10-10 19:23 ` Khem Raj
2010-10-10 19:42 ` Paul Menzel
1 sibling, 1 reply; 4+ messages in thread
From: Khem Raj @ 2010-10-10 19:23 UTC (permalink / raw)
To: openembedded-devel
On Sun, Oct 10, 2010 at 4:53 AM, Paul Menzel
<paulepanter@users.sourceforge.net> wrote:
> Dear OE folks,
>
>
> `gobject-introspection` got added in 143188 [1] to get `libgee_0.6.0` to
> build [2].
with my last commit to libgee its no more needed to be in the depends in libgee
so we can remove that from DEPENDS safely.
>
> As a consequence the configure script of a lot of packages like `gtk+`,
> `atk`, `gstreamer` detects the presence of GObject Introspection and
> enables it.
>
> $ ./configure --help
> […]
> --enable-introspection=[no/auto/yes]
> Enable introspection for this build
> […]
>
> Auto detection seems to be the default.
>
> […]
> configure:12206: checking for gobject-introspection
> configure:12237: $PKG_CONFIG --exists --print-errors "gobject-introspection-1.0 >= 0.6.7"
> configure:12240: $? = 0
> configure:12251: result: yes
> […]
>
> Now for example Pango 1.10.0 does not generate a `gir` file, which was
> enabled again in a later release [3]. This breaks building for example
> `gtk+` [4].
>
> The question is how to proceed.
>
> 1. Somehow excluding `gobject-introspection` from images.
> 2. Would packaging gir-repository [5] help?
> 3. Pass `--enable-introspection=no` by default to the configure script.
> 4. Add `--enable-introspection=no` to all relevant packages.
> 5. Update to new versions supporting GObject Introspection correctly.
>
> What do you think?
>
>
> Thanks,
>
> Paul
>
>
> [1] http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=14318872c0063d26c246a35b373dbfaf4f4c6587
> [2] http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=64a53b0ab6695b9ec4e327524fb41a916067bbfd
> [3] http://git.gnome.org/browse/pango/commit/?id=078300ef69ab0855a7cc39503880cbc8b2e23494
> [4] http://lists.linuxtogo.org/pipermail/openembedded-devel/2010-October/025174.html (patch is wrong though)
> [5] http://git.gnome.org/browse/gir-repository/tree/
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Inclusion of `gobject-introspection` breaks several packages.
2010-10-10 19:23 ` Khem Raj
@ 2010-10-10 19:42 ` Paul Menzel
0 siblings, 0 replies; 4+ messages in thread
From: Paul Menzel @ 2010-10-10 19:42 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 537 bytes --]
Am Sonntag, den 10.10.2010, 12:23 -0700 schrieb Khem Raj:
> On Sun, Oct 10, 2010 at 4:53 AM, Paul Menzel wrote:
> > `gobject-introspection` got added in 143188 [1] to get `libgee_0.6.0` to
> > build [2].
>
> with my last commit to libgee its no more needed to be in the depends in libgee
> so we can remove that from DEPENDS safely.
I will test that and prepare a patch.
[…]
Thanks,
Paul
> > [1] http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=14318872c0063d26c246a35b373dbfaf4f4c6587
[…]
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-10-10 19:43 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-10 11:53 Inclusion of `gobject-introspection` breaks several packages Paul Menzel
2010-10-10 13:06 ` Koen Kooi
2010-10-10 19:23 ` Khem Raj
2010-10-10 19:42 ` Paul Menzel
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.