diff options
author | Ross Burton <ross.burton@arm.com> | 2022-12-20 12:55:41 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-12-21 10:16:31 +0000 |
commit | 1628054eca82f3441cc119a8f741d00360171e77 (patch) | |
tree | 35c73f97dd53a5c4b689f45bdcb6f06916dbf384 | |
parent | b83f2bfe81a6a92926b8bf5ecafc7a050bba2b96 (diff) | |
download | poky-1628054eca82f3441cc119a8f741d00360171e77.tar.gz |
gtk+3: fix reproducible builds
We can't drop the missing meson.build file into the build tree via SRC_URI
as then the timestamp of that file becomes the timestamp of the build,
which results in repeated builds having different timestamps.
Instead patch the file into the build, which doesn't change the SDE
every build.
(From OE-Core rev: b525fab08cb4f6d7b9a71bf82378a8396a20aba8)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-gnome/gtk+/gtk+3/add-missing-meson.build.patch | 38 | ||||
-rw-r--r-- | meta/recipes-gnome/gtk+/gtk+3/meson.build | 14 | ||||
-rw-r--r-- | meta/recipes-gnome/gtk+/gtk+3_3.24.35.bb | 2 |
3 files changed, 39 insertions, 15 deletions
diff --git a/meta/recipes-gnome/gtk+/gtk+3/add-missing-meson.build.patch b/meta/recipes-gnome/gtk+/gtk+3/add-missing-meson.build.patch new file mode 100644 index 0000000000..ef971ccff4 --- /dev/null +++ b/meta/recipes-gnome/gtk+/gtk+3/add-missing-meson.build.patch | |||
@@ -0,0 +1,38 @@ | |||
1 | From 8a00d0269d547799b598adda364ad6c6ee328e6b Mon Sep 17 00:00:00 2001 | ||
2 | From: Ross Burton <ross.burton@arm.com> | ||
3 | Date: Tue, 20 Dec 2022 12:09:07 +0000 | ||
4 | Subject: [PATCH] Add missing meson.build | ||
5 | |||
6 | This file was missing from the tarball, but will be in the .36 release. | ||
7 | |||
8 | Upstream-Status: Inappropriate | ||
9 | Signed-off-by: Ross Burton <ross.burton@arm.com> | ||
10 | |||
11 | --- | ||
12 | gdk/wayland/cursor/meson.build | 14 ++++++++++++++ | ||
13 | 1 file changed, 14 insertions(+) | ||
14 | create mode 100644 gdk/wayland/cursor/meson.build | ||
15 | |||
16 | diff --git a/gdk/wayland/cursor/meson.build b/gdk/wayland/cursor/meson.build | ||
17 | new file mode 100644 | ||
18 | index 0000000..94cf47a | ||
19 | --- /dev/null | ||
20 | +++ b/gdk/wayland/cursor/meson.build | ||
21 | @@ -0,0 +1,14 @@ | ||
22 | +# This file is missing from the 3.24.35 tarball | ||
23 | + | ||
24 | +wayland_cursor_sources = files([ | ||
25 | + 'wayland-cursor.c', | ||
26 | + 'xcursor.c', | ||
27 | + 'os-compatibility.c' | ||
28 | +]) | ||
29 | + | ||
30 | +libwayland_cursor = static_library('wayland+cursor', | ||
31 | + sources: wayland_cursor_sources, | ||
32 | + include_directories: [ confinc, ], | ||
33 | + dependencies: [ glib_dep, wlclientdep, ], | ||
34 | + c_args: common_cflags, | ||
35 | +) | ||
36 | -- | ||
37 | 2.34.1 | ||
38 | |||
diff --git a/meta/recipes-gnome/gtk+/gtk+3/meson.build b/meta/recipes-gnome/gtk+/gtk+3/meson.build deleted file mode 100644 index 94cf47a37f..0000000000 --- a/meta/recipes-gnome/gtk+/gtk+3/meson.build +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | # This file is missing from the 3.24.35 tarball | ||
2 | |||
3 | wayland_cursor_sources = files([ | ||
4 | 'wayland-cursor.c', | ||
5 | 'xcursor.c', | ||
6 | 'os-compatibility.c' | ||
7 | ]) | ||
8 | |||
9 | libwayland_cursor = static_library('wayland+cursor', | ||
10 | sources: wayland_cursor_sources, | ||
11 | include_directories: [ confinc, ], | ||
12 | dependencies: [ glib_dep, wlclientdep, ], | ||
13 | c_args: common_cflags, | ||
14 | ) | ||
diff --git a/meta/recipes-gnome/gtk+/gtk+3_3.24.35.bb b/meta/recipes-gnome/gtk+/gtk+3_3.24.35.bb index 7c6ea104c7..a467c0e9e9 100644 --- a/meta/recipes-gnome/gtk+/gtk+3_3.24.35.bb +++ b/meta/recipes-gnome/gtk+/gtk+3_3.24.35.bb | |||
@@ -3,7 +3,7 @@ require gtk+3.inc | |||
3 | MAJ_VER = "${@oe.utils.trim_version("${PV}", 2)}" | 3 | MAJ_VER = "${@oe.utils.trim_version("${PV}", 2)}" |
4 | 4 | ||
5 | SRC_URI = "http://ftp.gnome.org/pub/gnome/sources/gtk+/${MAJ_VER}/gtk+-${PV}.tar.xz \ | 5 | SRC_URI = "http://ftp.gnome.org/pub/gnome/sources/gtk+/${MAJ_VER}/gtk+-${PV}.tar.xz \ |
6 | file://meson.build;subdir=${S}/gdk/wayland/cursor \ | 6 | file://add-missing-meson.build.patch \ |
7 | file://buildpaths.patch \ | 7 | file://buildpaths.patch \ |
8 | file://opengl.patch \ | 8 | file://opengl.patch \ |
9 | " | 9 | " |