diff options
| -rw-r--r-- | meta-oe/recipes-extended/flatpak/flatpak/0001-meson.build-require-for-native-wayland-scanner.patch | 28 | ||||
| -rw-r--r-- | meta-oe/recipes-extended/flatpak/flatpak/0001-meson.build-require-native-gtkdoc.patch | 33 | ||||
| -rw-r--r-- | meta-oe/recipes-extended/flatpak/flatpak_1.15.8.bb (renamed from meta-oe/recipes-extended/flatpak/flatpak_1.15.6.bb) | 6 |
3 files changed, 3 insertions, 64 deletions
diff --git a/meta-oe/recipes-extended/flatpak/flatpak/0001-meson.build-require-for-native-wayland-scanner.patch b/meta-oe/recipes-extended/flatpak/flatpak/0001-meson.build-require-for-native-wayland-scanner.patch deleted file mode 100644 index b076a3fffd..0000000000 --- a/meta-oe/recipes-extended/flatpak/flatpak/0001-meson.build-require-for-native-wayland-scanner.patch +++ /dev/null | |||
| @@ -1,28 +0,0 @@ | |||
| 1 | From ced2e933cf647874da4baff002e0987b9bfe5fac Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Markus Volk <f_l_k@t-online.de> | ||
| 3 | Date: Sat, 18 Nov 2023 15:07:49 +0100 | ||
| 4 | Subject: [PATCH] meson.build: require for native wayland-scanner | ||
| 5 | |||
| 6 | Signed-off-by: Markus Volk <f_l_k@t-online.de> | ||
| 7 | |||
| 8 | Upstream-Status: Submitted [https://github.com/flatpak/flatpak/pull/5596] | ||
| 9 | --- | ||
| 10 | meson.build | 4 ++-- | ||
| 11 | 1 file changed, 1 insertions(+), 1 deletions(-) | ||
| 12 | |||
| 13 | diff --git a/meson.build b/meson.build | ||
| 14 | index f4e5b3a3..5d2f9eba 100644 | ||
| 15 | --- a/meson.build | ||
| 16 | +++ b/meson.build | ||
| 17 | @@ -207,7 +207,7 @@ gtkdoc_dep = dependency('gtk-doc', required : get_option('gtkdoc')) | ||
| 18 | build_gtk_doc = gtkdoc_dep.found() | ||
| 19 | |||
| 20 | wayland_client = dependency('wayland-client', required : get_option('wayland_security_context')) | ||
| 21 | -wayland_scanner = dependency('wayland-scanner', version : '>= 1.15', required : get_option('wayland_security_context')) | ||
| 22 | +wayland_scanner = dependency('wayland-scanner', version : '>= 1.15', required : get_option('wayland_security_context'), native : true) | ||
| 23 | wayland_protocols = dependency('wayland-protocols', version : '>= 1.32', required : get_option('wayland_security_context')) | ||
| 24 | build_wayland_security_context = wayland_client.found() and wayland_scanner.found() and wayland_protocols.found() | ||
| 25 | |||
| 26 | -- | ||
| 27 | 2.42.0 | ||
| 28 | |||
diff --git a/meta-oe/recipes-extended/flatpak/flatpak/0001-meson.build-require-native-gtkdoc.patch b/meta-oe/recipes-extended/flatpak/flatpak/0001-meson.build-require-native-gtkdoc.patch deleted file mode 100644 index 77b60ec98c..0000000000 --- a/meta-oe/recipes-extended/flatpak/flatpak/0001-meson.build-require-native-gtkdoc.patch +++ /dev/null | |||
| @@ -1,33 +0,0 @@ | |||
| 1 | From 49737b1e4a74c77a8cd7ae727974d68503da087f Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Markus Volk <f_l_k@t-online.de> | ||
| 3 | Date: Fri, 12 Jan 2024 13:52:08 +0100 | ||
| 4 | Subject: [PATCH] meson.build: require native gtkdoc | ||
| 5 | |||
| 6 | this fixes: | ||
| 7 | | Run-time dependency gtk-doc found: NO (tried pkgconfig) | ||
| 8 | | | ||
| 9 | | ../git/meson.build:206:13: ERROR: Dependency "gtk-doc" not found, tried pkgconfig | ||
| 10 | |||
| 11 | Upstream-Status: Submitted [https://github.com/flatpak/flatpak/pull/5650/commits/e5de3e46b917f830d7f81e9db6ed2a9b7d7db942] | ||
| 12 | |||
| 13 | Signed-off-by: Markus Volk <f_l_k@t-online.de> | ||
| 14 | --- | ||
| 15 | meson.build | 2 +- | ||
| 16 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 17 | |||
| 18 | diff --git a/meson.build b/meson.build | ||
| 19 | index f7f9372d..dccc3eb4 100644 | ||
| 20 | --- a/meson.build | ||
| 21 | +++ b/meson.build | ||
| 22 | @@ -203,7 +203,7 @@ appstream_dep = dependency('appstream', version : '>=0.12.0') | ||
| 23 | gdk_pixbuf_dep = dependency('gdk-pixbuf-2.0') | ||
| 24 | libseccomp_dep = dependency('libseccomp', required : get_option('seccomp')) | ||
| 25 | gir_dep = dependency('gobject-introspection-1.0', version : '>=1.40.0', required : get_option('gir')) | ||
| 26 | -gtkdoc_dep = dependency('gtk-doc', required : get_option('gtkdoc')) | ||
| 27 | +gtkdoc_dep = dependency('gtk-doc', required : get_option('gtkdoc'), native : true) | ||
| 28 | build_gtk_doc = gtkdoc_dep.found() | ||
| 29 | |||
| 30 | wayland_client = dependency('wayland-client', required : get_option('wayland_security_context')) | ||
| 31 | -- | ||
| 32 | 2.43.0 | ||
| 33 | |||
diff --git a/meta-oe/recipes-extended/flatpak/flatpak_1.15.6.bb b/meta-oe/recipes-extended/flatpak/flatpak_1.15.8.bb index 97e57c13d5..8719d3ef03 100644 --- a/meta-oe/recipes-extended/flatpak/flatpak_1.15.6.bb +++ b/meta-oe/recipes-extended/flatpak/flatpak_1.15.8.bb | |||
| @@ -6,11 +6,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" | |||
| 6 | SRC_URI = " \ | 6 | SRC_URI = " \ |
| 7 | gitsm://github.com/flatpak/flatpak;protocol=https;branch=main \ | 7 | gitsm://github.com/flatpak/flatpak;protocol=https;branch=main \ |
| 8 | file://0001-flatpak-pc-add-pc_sysrootdir.patch \ | 8 | file://0001-flatpak-pc-add-pc_sysrootdir.patch \ |
| 9 | file://0001-meson.build-require-for-native-wayland-scanner.patch \ | ||
| 10 | file://0001-meson.build-require-native-gtkdoc.patch \ | ||
| 11 | " | 9 | " |
| 12 | 10 | ||
| 13 | SRCREV = "27b11b93c2a80a91c9461bc6c7f5e9a201406041" | 11 | SRCREV = "925c80f913d69e7ca424428823e1431c4ffb0deb" |
| 14 | 12 | ||
| 15 | S = "${WORKDIR}/git" | 13 | S = "${WORKDIR}/git" |
| 16 | 14 | ||
| @@ -66,6 +64,8 @@ PACKAGECONFIG ?= " \ | |||
| 66 | ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland-security-context', '', d)} \ | 64 | ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland-security-context', '', d)} \ |
| 67 | " | 65 | " |
| 68 | 66 | ||
| 67 | EXTRA_OEMESON = "-Dsystem_fusermount=${bindir}/fusermount3" | ||
| 68 | |||
| 69 | FILES:${PN} += "${libdir} ${datadir}" | 69 | FILES:${PN} += "${libdir} ${datadir}" |
| 70 | 70 | ||
| 71 | USERADD_PACKAGES = "${PN}" | 71 | USERADD_PACKAGES = "${PN}" |
