diff options
author | Andreas Müller <schnitzeltony@gmail.com> | 2020-06-01 23:45:15 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-06-03 15:15:43 -0700 |
commit | 9c2ec3d81b994e43066ef67580ef466b09625802 (patch) | |
tree | 907b56e4e53a3276351af7e59c71c362610a0785 | |
parent | 86e8c35f115e28f6359442fa2580e25deb7832e7 (diff) | |
download | meta-openembedded-9c2ec3d81b994e43066ef67580ef466b09625802.tar.gz |
sysprof: upgrade 3.34.1 -> 3.36.0
* Move recipe recipes-kernel -> recipes-gnome
* 0001-libsysprof-ui-Rename-environ-to-sys_environ.patch can go: upstream did
raname variable differently
* We can build help files these days
* reworder patches / recipe cleanup
Overview of changes in Sysprof 3.36.0
=====================================
* Preload library has been moved to $libdir from $libexecdir
* Build system improvements
* Fix whole-system capture setting when using "Record Again" feature
* New SysprofCollector interfaces for samples, marks, and logs to
sit alongside allocations
* Translation updates
Overview of changes in Sysprof 3.35.92
======================================
* A new profiler for tracking memory allocations within processes
that are spawned by Sysprof. Select "Track Allocations" to use
an LD_PRELOAD module which monitors allocations within the target
process. A callgraph is provided with allocations and their stack
traces. This brings the main features of the venerable "Memprof"
into Sysprof.
* Port Sysprof to work on RHEL 7
* Improvements to marks and counters displays
* A new data frame in libsysprof-capture for memory allocations
with stack traces.
* sysprof-cli --merge can now be used to merge multiple syscap
files together.
* sysprof <program-path> can now be used to open Sysprof directly
to a program to execute.
* Sysprof now builds with additional security protections and
optimization flags such as -Bsymbolic, -Wl,-z,defs, -Wl,-z,now,
and -Wl,-z,relro.
* Fixes for macOS
* The ELF symbol resolver is faster
* sysprof-cli now properly adds supplemental information to the
capture file such as decoded symbols. This makes sharing syscap
files across machines easier and more reliable.
* A new mmap()'d ring buffer can be shared between processes for
faster data transfer to sysprof. We expect more features around
this SysprofCollector interface in future releases.
* A new set if icons has been provided for the collectors
* Translation updates
Overview of changes in Sysprof 3.35.2
=====================================
* Build and test fixes
* Track changes to gdbus-codegen
* Include additional pkg-config variable for access to D-Bus data
* Translation updates
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-gnome/recipes-gnome/sysprof/sysprof/0001-sysprof-Define-NT_GNU_BUILD_ID-if-undefined.patch (renamed from meta-gnome/recipes-kernel/sysprof/files/0001-sysprof-Define-NT_GNU_BUILD_ID-if-undefined.patch) | 0 | ||||
-rw-r--r-- | meta-gnome/recipes-gnome/sysprof/sysprof/0002-meson.build-do-not-hardcode-linux-as-host_machine-.s.patch (renamed from meta-gnome/recipes-kernel/sysprof/files/0001-meson.build-do-not-hardcode-linux-as-host_machine-.s.patch) | 2 | ||||
-rw-r--r-- | meta-gnome/recipes-gnome/sysprof/sysprof/0003-tests-use-G_GSIZE_FORMAT-instead-of-G_GUINT64_FORMAT.patch | 31 | ||||
-rw-r--r-- | meta-gnome/recipes-gnome/sysprof/sysprof_3.36.0.bb (renamed from meta-gnome/recipes-kernel/sysprof/sysprof_3.34.1.bb) | 39 | ||||
-rw-r--r-- | meta-gnome/recipes-kernel/sysprof/files/0001-libsysprof-ui-Rename-environ-to-sys_environ.patch | 63 |
5 files changed, 54 insertions, 81 deletions
diff --git a/meta-gnome/recipes-kernel/sysprof/files/0001-sysprof-Define-NT_GNU_BUILD_ID-if-undefined.patch b/meta-gnome/recipes-gnome/sysprof/sysprof/0001-sysprof-Define-NT_GNU_BUILD_ID-if-undefined.patch index 75aa86cdb..75aa86cdb 100644 --- a/meta-gnome/recipes-kernel/sysprof/files/0001-sysprof-Define-NT_GNU_BUILD_ID-if-undefined.patch +++ b/meta-gnome/recipes-gnome/sysprof/sysprof/0001-sysprof-Define-NT_GNU_BUILD_ID-if-undefined.patch | |||
diff --git a/meta-gnome/recipes-kernel/sysprof/files/0001-meson.build-do-not-hardcode-linux-as-host_machine-.s.patch b/meta-gnome/recipes-gnome/sysprof/sysprof/0002-meson.build-do-not-hardcode-linux-as-host_machine-.s.patch index 235489226..9db111e8e 100644 --- a/meta-gnome/recipes-kernel/sysprof/files/0001-meson.build-do-not-hardcode-linux-as-host_machine-.s.patch +++ b/meta-gnome/recipes-gnome/sysprof/sysprof/0002-meson.build-do-not-hardcode-linux-as-host_machine-.s.patch | |||
@@ -19,7 +19,7 @@ index 3449961..3c2d186 100644 | |||
19 | --- a/src/libsysprof/meson.build | 19 | --- a/src/libsysprof/meson.build |
20 | +++ b/src/libsysprof/meson.build | 20 | +++ b/src/libsysprof/meson.build |
21 | @@ -84,7 +84,7 @@ libsysprof_deps = [ | 21 | @@ -84,7 +84,7 @@ libsysprof_deps = [ |
22 | polkit_dep, | 22 | librax_dep, |
23 | ] | 23 | ] |
24 | 24 | ||
25 | -if host_machine.system() == 'linux' | 25 | -if host_machine.system() == 'linux' |
diff --git a/meta-gnome/recipes-gnome/sysprof/sysprof/0003-tests-use-G_GSIZE_FORMAT-instead-of-G_GUINT64_FORMAT.patch b/meta-gnome/recipes-gnome/sysprof/sysprof/0003-tests-use-G_GSIZE_FORMAT-instead-of-G_GUINT64_FORMAT.patch new file mode 100644 index 000000000..d8fffbb7e --- /dev/null +++ b/meta-gnome/recipes-gnome/sysprof/sysprof/0003-tests-use-G_GSIZE_FORMAT-instead-of-G_GUINT64_FORMAT.patch | |||
@@ -0,0 +1,31 @@ | |||
1 | From 5dea152c7728f5a37370ad8a229115833e36b4f6 Mon Sep 17 00:00:00 2001 | ||
2 | From: Rasmus Thomsen <oss@cogitri.dev> | ||
3 | Date: Sat, 7 Mar 2020 10:44:16 +0100 | ||
4 | Subject: [PATCH] tests: use G_GSIZE_FORMAT instead of G_GUINT64_FORMAT for | ||
5 | gsize | ||
6 | |||
7 | This fixes the build on 32-bit platforms with -Werror-format | ||
8 | |||
9 | fixes #32 | ||
10 | |||
11 | Upstream-Status: Applied[https://gitlab.gnome.org/GNOME/sysprof/-/commit/5dea152c7728f5a37370ad8a229115833e36b4f6] | ||
12 | --- | ||
13 | src/tests/allocs-by-size.c | 2 +- | ||
14 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
15 | |||
16 | diff --git a/src/tests/allocs-by-size.c b/src/tests/allocs-by-size.c | ||
17 | index 666113a..6260d4b 100644 | ||
18 | --- a/src/tests/allocs-by-size.c | ||
19 | +++ b/src/tests/allocs-by-size.c | ||
20 | @@ -109,7 +109,7 @@ allocs_by_size (SysprofCaptureReader *reader) | ||
21 | { | ||
22 | const Item *item = &g_array_index (ar, Item, i); | ||
23 | |||
24 | - g_print ("%"G_GUINT64_FORMAT",%"G_GUINT64_FORMAT",%"G_GUINT64_FORMAT"\n", | ||
25 | + g_print ("%"G_GSIZE_FORMAT",%"G_GSIZE_FORMAT",%"G_GSIZE_FORMAT"\n", | ||
26 | item->size, item->cmp, item->count); | ||
27 | } | ||
28 | } | ||
29 | -- | ||
30 | 2.21.3 | ||
31 | |||
diff --git a/meta-gnome/recipes-kernel/sysprof/sysprof_3.34.1.bb b/meta-gnome/recipes-gnome/sysprof/sysprof_3.36.0.bb index ad69ab68c..a769dbf7d 100644 --- a/meta-gnome/recipes-kernel/sysprof/sysprof_3.34.1.bb +++ b/meta-gnome/recipes-gnome/sysprof/sysprof_3.36.0.bb | |||
@@ -5,24 +5,29 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ | |||
5 | file://src/sysprof/sysprof-application.c;endline=17;md5=a3de8df3b0f8876dd01e1388d2d4b607" | 5 | file://src/sysprof/sysprof-application.c;endline=17;md5=a3de8df3b0f8876dd01e1388d2d4b607" |
6 | 6 | ||
7 | GNOMEBASEBUILDCLASS = "meson" | 7 | GNOMEBASEBUILDCLASS = "meson" |
8 | inherit gnomebase gettext systemd upstream-version-is-even gsettings mime mime-xdg | 8 | inherit gnomebase gnome-help gettext systemd upstream-version-is-even gsettings mime mime-xdg |
9 | 9 | ||
10 | DEPENDS += "glib-2.0 libxml2-native glib-2.0-native" | 10 | DEPENDS += " \ |
11 | 11 | glib-2.0-native \ | |
12 | SRC_URI[archive.md5sum] = "cc32455277b31afb1965d627ae3e3629" | 12 | yelp-tools-native \ |
13 | SRC_URI[archive.sha256sum] = "844bbb8d8b65071b3bca96f8e921319ceef81f2d2c51fcc9da63a4b355c893d0" | 13 | libxml2-native \ |
14 | SRC_URI += "file://0001-sysprof-Define-NT_GNU_BUILD_ID-if-undefined.patch \ | 14 | glib-2.0 \ |
15 | file://0001-meson.build-do-not-hardcode-linux-as-host_machine-.s.patch \ | 15 | " |
16 | file://0001-libsysprof-ui-Rename-environ-to-sys_environ.patch \ | 16 | |
17 | " | 17 | SRC_URI[archive.md5sum] = "3956e82b8744715006dde59e0ce8910b" |
18 | SRC_URI[archive.sha256sum] = "8670db4dacf7b219d30c575c465b17c8ed6724dbade347f2cde9548bff039108" | ||
19 | SRC_URI += " \ | ||
20 | file://0001-sysprof-Define-NT_GNU_BUILD_ID-if-undefined.patch \ | ||
21 | file://0002-meson.build-do-not-hardcode-linux-as-host_machine-.s.patch \ | ||
22 | file://0003-tests-use-G_GSIZE_FORMAT-instead-of-G_GUINT64_FORMAT.patch \ | ||
23 | " | ||
18 | 24 | ||
19 | PACKAGECONFIG ?= "sysprofd libsysprof ${@bb.utils.contains_any('DISTRO_FEATURES', '${GTK3DISTROFEATURES}', 'gtk', '', d)}" | 25 | PACKAGECONFIG ?= "sysprofd libsysprof ${@bb.utils.contains_any('DISTRO_FEATURES', '${GTK3DISTROFEATURES}', 'gtk', '', d)}" |
20 | PACKAGECONFIG[gtk] = "-Denable_gtk=true,-Denable_gtk=false,gtk+3 libdazzle" | 26 | PACKAGECONFIG[gtk] = "-Denable_gtk=true,-Denable_gtk=false,gtk+3 libdazzle" |
21 | PACKAGECONFIG[sysprofd] = "-Dwith_sysprofd=bundled,-Dwith_sysprofd=none,polkit" | 27 | PACKAGECONFIG[sysprofd] = "-Dwith_sysprofd=bundled,-Dwith_sysprofd=none,polkit" |
22 | PACKAGECONFIG[libsysprof] = "-Dlibsysprof=true,-Dlibsysprof=false,polkit" | 28 | PACKAGECONFIG[libsysprof] = "-Dlibsysprof=true,-Dlibsysprof=false,polkit" |
23 | 29 | ||
24 | # Enablig this requries yelp | 30 | EXTRA_OEMESON += "-Dsystemdunitdir=${systemd_unitdir}/system" |
25 | EXTRA_OEMESON += "-Dhelp=false -Dsystemdunitdir=${systemd_unitdir}/system" | ||
26 | 31 | ||
27 | SOLIBS = ".so" | 32 | SOLIBS = ".so" |
28 | FILES_SOLIBSDEV = "" | 33 | FILES_SOLIBSDEV = "" |
@@ -30,8 +35,8 @@ FILES_SOLIBSDEV = "" | |||
30 | SYSTEMD_SERVICE_${PN} = "${@bb.utils.contains('PACKAGECONFIG', 'sysprofd', 'sysprof2.service sysprof3.service', '', d)}" | 35 | SYSTEMD_SERVICE_${PN} = "${@bb.utils.contains('PACKAGECONFIG', 'sysprofd', 'sysprof2.service sysprof3.service', '', d)}" |
31 | 36 | ||
32 | FILES_${PN} += " \ | 37 | FILES_${PN} += " \ |
33 | ${datadir}/dbus-1/system-services \ | 38 | ${datadir}/dbus-1/system-services \ |
34 | ${datadir}/dbus-1/system.d \ | 39 | ${datadir}/dbus-1/system.d \ |
35 | ${datadir}/dbus-1/interfaces \ | 40 | ${datadir}/dbus-1/interfaces \ |
36 | ${datadir}/metainfo \ | 41 | ${datadir}/metainfo \ |
37 | " | 42 | " |
diff --git a/meta-gnome/recipes-kernel/sysprof/files/0001-libsysprof-ui-Rename-environ-to-sys_environ.patch b/meta-gnome/recipes-kernel/sysprof/files/0001-libsysprof-ui-Rename-environ-to-sys_environ.patch deleted file mode 100644 index 1e2b3c92b..000000000 --- a/meta-gnome/recipes-kernel/sysprof/files/0001-libsysprof-ui-Rename-environ-to-sys_environ.patch +++ /dev/null | |||
@@ -1,63 +0,0 @@ | |||
1 | From 4bd0d5d5dd6841fbac8385527617d18e7731244d Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Wed, 15 Jan 2020 13:17:58 -0800 | ||
4 | Subject: [PATCH] libsysprof-ui: Rename environ to sys_environ | ||
5 | |||
6 | This helps avoid namesapace conflict with glibc headers | ||
7 | |||
8 | Fixes | ||
9 | /usr/include/unistd.h:545:15: note: previous declaration is here | ||
10 | |||
11 | extern char **environ; | ||
12 | |||
13 | Upstream-Status: Pending | ||
14 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
15 | --- | ||
16 | src/libsysprof-ui/sysprof-profiler-assistant.c | 10 +++++----- | ||
17 | 1 file changed, 5 insertions(+), 5 deletions(-) | ||
18 | |||
19 | diff --git a/src/libsysprof-ui/sysprof-profiler-assistant.c b/src/libsysprof-ui/sysprof-profiler-assistant.c | ||
20 | index 22e3e24..c55d551 100644 | ||
21 | --- a/src/libsysprof-ui/sysprof-profiler-assistant.c | ||
22 | +++ b/src/libsysprof-ui/sysprof-profiler-assistant.c | ||
23 | @@ -235,7 +235,7 @@ sysprof_profiler_assistant_record_clicked_cb (SysprofProfilerAssistant *self, | ||
24 | { | ||
25 | g_auto(GStrv) argv = NULL; | ||
26 | g_auto(GStrv) env = NULL; | ||
27 | - SysprofEnviron *environ; | ||
28 | + SysprofEnviron *sys_environ; | ||
29 | const gchar *command; | ||
30 | gint argc; | ||
31 | |||
32 | @@ -245,8 +245,8 @@ sysprof_profiler_assistant_record_clicked_cb (SysprofProfilerAssistant *self, | ||
33 | sysprof_profiler_set_spawn (profiler, TRUE); | ||
34 | sysprof_profiler_set_spawn_argv (profiler, (const gchar * const *)argv); | ||
35 | |||
36 | - environ = sysprof_environ_editor_get_environ (self->environ_editor); | ||
37 | - env = sysprof_environ_get_environ (environ); | ||
38 | + sys_environ = sysprof_environ_editor_get_environ (self->environ_editor); | ||
39 | + env = sysprof_environ_get_environ (sys_environ); | ||
40 | sysprof_profiler_set_spawn_env (profiler, (const gchar * const *)env); | ||
41 | |||
42 | sysprof_profiler_set_spawn_inherit_environ (profiler, | ||
43 | @@ -405,7 +405,7 @@ sysprof_profiler_assistant_class_init (SysprofProfilerAssistantClass *klass) | ||
44 | static void | ||
45 | sysprof_profiler_assistant_init (SysprofProfilerAssistant *self) | ||
46 | { | ||
47 | - g_autoptr(SysprofEnviron) environ = sysprof_environ_new (); | ||
48 | + g_autoptr(SysprofEnviron) sys_environ = sysprof_environ_new (); | ||
49 | |||
50 | gtk_widget_init_template (GTK_WIDGET (self)); | ||
51 | |||
52 | @@ -445,7 +445,7 @@ sysprof_profiler_assistant_init (SysprofProfilerAssistant *self) | ||
53 | self, | ||
54 | G_CONNECT_SWAPPED); | ||
55 | |||
56 | - sysprof_environ_editor_set_environ (self->environ_editor, environ); | ||
57 | + sysprof_environ_editor_set_environ (self->environ_editor, sys_environ); | ||
58 | } | ||
59 | |||
60 | void | ||
61 | -- | ||
62 | 2.25.0 | ||
63 | |||