<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/poky.git/meta/recipes-gnome, branch mickledore-next</title>
<subtitle>Mirror of git.yoctoproject.org/poky</subtitle>
<id>https://git.enea.com/cgit/linux/poky.git/atom?h=mickledore-next</id>
<link rel='self' href='https://git.enea.com/cgit/linux/poky.git/atom?h=mickledore-next'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/'/>
<updated>2023-04-04T12:11:50+00:00</updated>
<entry>
<title>libnotify: depend on glib-2.0-native</title>
<updated>2023-04-04T12:11:50+00:00</updated>
<author>
<name>Petr Kubizňák</name>
<email>kubiznak@2n.com</email>
</author>
<published>2023-04-03T11:06:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=3840c0b790aa67feb1700284907fcd1bdd174254'/>
<id>urn:sha1:3840c0b790aa67feb1700284907fcd1bdd174254</id>
<content type='text'>
When gobject-introspection feature is disabled, glib-2.0-native package
dependency is not pulled in but libnotify has a hard dependency on it
(do_configure fails due to missing glib-mkenums).

(From OE-Core rev: 63cc22caf4dfcde1d7a3a8410559bb227ed95c33)

Signed-off-by: Petr Kubizňák &lt;kubiznak@2n.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>gconf: add missing dependencies</title>
<updated>2023-04-04T12:11:50+00:00</updated>
<author>
<name>Petr Kubizňák</name>
<email>kubiznak@2n.com</email>
</author>
<published>2023-04-03T11:06:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=497707c4046cf5733da96b6ef222469089f8d8a9'/>
<id>urn:sha1:497707c4046cf5733da96b6ef222469089f8d8a9</id>
<content type='text'>
When gobject-introspection feature is disabled, glib-2.0-native
and gobject-introspection package dependencies are not pulled in
but gconf has a hard dependency on them (do_configure fails due to
missing introspection.m4 file and glib-gettextize).

(From OE-Core rev: d87bc67fde3c8bc6068cb67708953ce88ac31e3f)

Signed-off-by: Petr Kubizňák &lt;kubiznak@2n.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>libgudev: depend on glib-2.0-native</title>
<updated>2023-04-03T10:39:59+00:00</updated>
<author>
<name>Petr Kubizňák</name>
<email>kubiznak@2n.com</email>
</author>
<published>2023-03-31T11:46:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=ac3ab46c113d2fc71193d1f3848cdbccbedea8b1'/>
<id>urn:sha1:ac3ab46c113d2fc71193d1f3848cdbccbedea8b1</id>
<content type='text'>
When gobject-introspection feature is disabled, glib-2.0-native package
dependency is not pulled in but libgudev has a hard dependency on it
(do_configure fails due to missing glib-mkenums).

(From OE-Core rev: 8fd140011f89ededdfd7feb1c0e3a2d67e06808a)

Signed-off-by: Petr Kubizňák &lt;kubiznak@2n.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>json-glib: depend on glib-2.0-native</title>
<updated>2023-04-03T10:39:59+00:00</updated>
<author>
<name>Petr Kubizňák</name>
<email>kubiznak@2n.com</email>
</author>
<published>2023-03-31T11:46:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=b75dd468ae117bb1ee31f5aa9510a7220cf4a886'/>
<id>urn:sha1:b75dd468ae117bb1ee31f5aa9510a7220cf4a886</id>
<content type='text'>
When gobject-introspection feature is disabled, glib-2.0-native package
dependency is not pulled in but json-glib has a hard dependency on it
(do_configure fails due to missing glib-mkenums).

(From OE-Core rev: 2d67634d778bce9efdad9df75b3fe3e224708d7f)

Signed-off-by: Petr Kubizňák &lt;kubiznak@2n.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>gobject-introspection: inherit python3targetconfig</title>
<updated>2023-03-30T22:26:04+00:00</updated>
<author>
<name>Ovidiu Panait</name>
<email>ovidiu.panait@windriver.com</email>
</author>
<published>2023-03-29T08:38:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=46fda7a1a8e71702264ae478f9add1d06b4a81b2'/>
<id>urn:sha1:46fda7a1a8e71702264ae478f9add1d06b4a81b2</id>
<content type='text'>
When building gobject-introspection for aarch64, the generated giscanner
python module has the wrong "x86_64" suffix:
./usr/lib/gobject-introspection/giscanner/_giscanner.cpython-311-x86_64-linux-gnu.so

The EXT_SUFFIX used by meson to generate the python module is taken
from the native python3 sysconfig instead of the target sysconfig.

Replace the python3native inherit with python3targetconfig to fix this.

(From OE-Core rev: 0a6c46743fa6bf3e5418247d4841ae5ffb530262)

Signed-off-by: Ovidiu Panait &lt;ovidiu.panait@windriver.com&gt;
Signed-off-by: Alexandre Belloni &lt;alexandre.belloni@bootlin.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>libnotify: upgrade 0.8.1 -&gt; 0.8.2</title>
<updated>2023-03-11T00:08:41+00:00</updated>
<author>
<name>Alexander Kanavin</name>
<email>alex.kanavin@gmail.com</email>
</author>
<published>2023-03-09T15:19:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=528bdf89406c5d3f5b9036e6aa51ae4048b14752'/>
<id>urn:sha1:528bdf89406c5d3f5b9036e6aa51ae4048b14752</id>
<content type='text'>
(From OE-Core rev: 48160a7807fb5547c7c1dfd8af5cbb33ccf46200)

Signed-off-by: Alexander Kanavin &lt;alex@linutronix.de&gt;
Signed-off-by: Alexandre Belloni &lt;alexandre.belloni@bootlin.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>epiphany: upgrade to 43.1</title>
<updated>2023-03-07T10:45:25+00:00</updated>
<author>
<name>Ross Burton</name>
<email>ross.burton@arm.com</email>
</author>
<published>2023-03-06T15:17:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=248e7ef170f5e2033198e65ba7819bb20f096f0e'/>
<id>urn:sha1:248e7ef170f5e2033198e65ba7819bb20f096f0e</id>
<content type='text'>
This fixes CVE-2023-26081.

(From OE-Core rev: 706d325ec9969d1525743e2de9a1f1d61b4c09b9)

Signed-off-by: Ross Burton &lt;ross.burton@arm.com&gt;
Signed-off-by: Alexandre Belloni &lt;alexandre.belloni@bootlin.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>gtk4: update 4.8.3 -&gt; 4.10.0</title>
<updated>2023-03-06T09:52:16+00:00</updated>
<author>
<name>Markus Volk</name>
<email>f_l_k@t-online.de</email>
</author>
<published>2023-03-05T17:28:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=208ee35b8c7a26a65e2292e133831693a65f9f51'/>
<id>urn:sha1:208ee35b8c7a26a65e2292e133831693a65f9f51</id>
<content type='text'>
A testsuite was added that breaks musl build -&gt; disable by default

Overview of Changes in 4.10.0, 04-03-2023
=========================================
* GtkTextView
 - Document hanging indentation
* GtkListView
 - Fix a size allocation problem
* GtkFileChooser
 - Fix paned behavior
 - Fix a crash
* GtkText
 - Fix various problems with undo
* Accessibility
 - Make some getters transfer-full
 - Allow setting accessible parents and siblings
 - Add a role for toggle buttons
 - Miscellaneous property fixes and improvements
* gtk
 - Improve the handling resize-during-size-allocate
* gdk
 - Introduce GdkTextureDownloader and use it
 - Make gdk_texture_get_format public
* gsk
 - Make mask nodes more versatile
 - Improve the GL implementation for texture scale nodes
* X11
 - Fix key handling during DND
* Tools
 - gtk-builder-tool: Try harder to handle templates
 - gtk-builder-tool: Prefer properties over &lt;child&gt;

* Translation updates
 Basque
 Belarusian
 Bulgarian
 Indonesian
 Galician
 Georgian
 German
 Hebrew
 Lithuanian
 Portuguese
 Spanish
 Swedish
 Turkish
 Ukrainian

(From OE-Core rev: 36041cacbc5f019e823a674b3988d88773c87d83)

Signed-off-by: Markus Volk &lt;f_l_k@t-online.de&gt;
Signed-off-by: Alexandre Belloni &lt;alexandre.belloni@bootlin.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>gcr: correctly configure vala against introspection data</title>
<updated>2023-02-25T14:03:03+00:00</updated>
<author>
<name>Alexander Kanavin</name>
<email>alex.kanavin@gmail.com</email>
</author>
<published>2023-02-24T09:40:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=454c93d153bddab82073de3098db3416398c11b2'/>
<id>urn:sha1:454c93d153bddab82073de3098db3416398c11b2</id>
<content type='text'>
GI_DATA_ENABLED is the right source for making that decision
as it additionally factors in presence of qemu-usermode in
MACHINE_FEATURES.

(From OE-Core rev: b32bb078d73ab9fd636d059cf70b5530a2f94cb4)

Signed-off-by: Alexander Kanavin &lt;alex@linutronix.de&gt;
Signed-off-by: Alexandre Belloni &lt;alexandre.belloni@bootlin.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>libportal: allow to build without gtk4 backend</title>
<updated>2023-02-24T13:31:45+00:00</updated>
<author>
<name>Markus Volk</name>
<email>f_l_k@t-online.de</email>
</author>
<published>2023-02-20T14:11:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=f13071decfc1525a9429c3c20e5b589b923bfa18'/>
<id>urn:sha1:f13071decfc1525a9429c3c20e5b589b923bfa18</id>
<content type='text'>
This allows to build libportal for platforms without opengl support

(From OE-Core rev: 3678dd56f800f22c9f81aa4afe060420f19c78f9)

Signed-off-by: Markus Volk &lt;f_l_k@t-online.de&gt;
Signed-off-by: Alexandre Belloni &lt;alexandre.belloni@bootlin.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
</feed>
