diff options
author | Andreas Müller <schnitzeltony@gmail.com> | 2020-06-01 23:44:42 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-06-03 15:15:42 -0700 |
commit | 987519e2d318ab9ee66f4ee58a6a51655fadcf6b (patch) | |
tree | 76a186cd95326d210fd1fa30f18a78133cce948b /meta-gnome | |
parent | 741cca97e48ab042d9dcaf6c603a7838cacda9d1 (diff) | |
download | meta-openembedded-987519e2d318ab9ee66f4ee58a6a51655fadcf6b.tar.gz |
dconf: upgrade 0.34.0 -> 0.36.0
fix-meson-0.52.patch was applied upstream
Changes in dconf 0.36.0
=======================
- No changes since 0.35.1
Changes in dconf 0.35.1
=======================
- Writer service: avoid writing to disk and emitting changed signals
when write requests do not result in changes to the database (Daniel
Playfair Cal, !3)
- build: Drop redundant `install` key from `configure_file()` (Philip
Withnall, !53)
- build: Update abicheck.sh script to work with GCC 9 (Diego
Escalante Urello, !55)
- build: Update use of link_whole for meson-0.52 (Diego Escalante
Urello, !54)
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-gnome')
-rw-r--r-- | meta-gnome/recipes-gnome/dconf/dconf/fix-meson-0.52.patch | 25 | ||||
-rw-r--r-- | meta-gnome/recipes-gnome/dconf/dconf_0.36.0.bb (renamed from meta-gnome/recipes-gnome/dconf/dconf_0.34.0.bb) | 6 |
2 files changed, 2 insertions, 29 deletions
diff --git a/meta-gnome/recipes-gnome/dconf/dconf/fix-meson-0.52.patch b/meta-gnome/recipes-gnome/dconf/dconf/fix-meson-0.52.patch deleted file mode 100644 index 485c46509..000000000 --- a/meta-gnome/recipes-gnome/dconf/dconf/fix-meson-0.52.patch +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | With meson 0.52 the build fails due to duplicate symbols. There is a fix | ||
2 | to meson but the dconf build also needs tweaking. | ||
3 | |||
4 | https://gitlab.gnome.org/GNOME/dconf/issues/59 | ||
5 | https://github.com/mesonbuild/meson/pull/5936 | ||
6 | |||
7 | Despite the comments there about this being incorrect, libdconf is unchanged | ||
8 | between 0.51 and 0.52 and this patch. | ||
9 | |||
10 | Upstream-Status: Pending [under discussion, see above links] | ||
11 | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> | ||
12 | |||
13 | Index: dconf-0.34.0/client/meson.build | ||
14 | =================================================================== | ||
15 | --- dconf-0.34.0.orig/client/meson.build | ||
16 | +++ dconf-0.34.0/client/meson.build | ||
17 | @@ -28,7 +28,7 @@ libdconf_client = static_library( | ||
18 | |||
19 | libdconf_client_dep = declare_dependency( | ||
20 | dependencies: gio_dep, | ||
21 | - link_whole: libdconf_client, | ||
22 | + link_with: libdconf_client, | ||
23 | ) | ||
24 | |||
25 | libdconf = shared_library( | ||
diff --git a/meta-gnome/recipes-gnome/dconf/dconf_0.34.0.bb b/meta-gnome/recipes-gnome/dconf/dconf_0.36.0.bb index 3c3802f34..914672688 100644 --- a/meta-gnome/recipes-gnome/dconf/dconf_0.34.0.bb +++ b/meta-gnome/recipes-gnome/dconf/dconf_0.36.0.bb | |||
@@ -3,8 +3,8 @@ LICENSE = "LGPLv2.1" | |||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1" | 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1" |
4 | SECTION = "x11/gnome" | 4 | SECTION = "x11/gnome" |
5 | 5 | ||
6 | SRC_URI[archive.md5sum] = "a3ab18ed51a0494a1c8436fef20cc1b0" | 6 | SRC_URI[archive.md5sum] = "1a50c988d9f0206f74a44f7c6d09cead" |
7 | SRC_URI[archive.sha256sum] = "943a94ab16121de5580ceaed2605b87444d1bca1c6cd8beefb778bcb0aa2da52" | 7 | SRC_URI[archive.sha256sum] = "9fe6bb22191fc2a036ad86fd8e7d165e9983c687b9fedccf85d46c799301da2d" |
8 | 8 | ||
9 | DEPENDS = "dbus glib-2.0 intltool-native" | 9 | DEPENDS = "dbus glib-2.0 intltool-native" |
10 | 10 | ||
@@ -12,8 +12,6 @@ GNOMEBASEBUILDCLASS = "meson" | |||
12 | 12 | ||
13 | inherit gnomebase bash-completion vala | 13 | inherit gnomebase bash-completion vala |
14 | 14 | ||
15 | SRC_URI += "file://fix-meson-0.52.patch" | ||
16 | |||
17 | # I/O error : Attempt to load network entity http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl | 15 | # I/O error : Attempt to load network entity http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl |
18 | EXTRA_OEMESON = "-Dman=false" | 16 | EXTRA_OEMESON = "-Dman=false" |
19 | # no bash-completion for native | 17 | # no bash-completion for native |