package/sysprof: bump to version 48.0

This new release includes a number of improvements. Release notes:

  https://gitlab.gnome.org/GNOME/sysprof/-/blob/48.0/NEWS

Signed-off-by: Adrian Perez de Castro <aperez@igalia.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Adrian Perez de Castro
2025-05-15 14:48:35 +03:00
committed by Thomas Petazzoni
parent 10720c036e
commit e743759a52
2 changed files with 11 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
# From https://download.gnome.org/sources/sysprof/47/sysprof-47.2.sha256sum
sha256 e4b5ede9fd978ec3f0d5a0d44d0429a6d201c362bf6cb4527319031ae462c54f sysprof-47.2.tar.xz
# From https://download.gnome.org/sources/sysprof/48/sysprof-48.0.sha256sum
sha256 1b0f0380f2f30708ba87829321a06fee1db36dfa87797bbf07f0a7acf4498d18 sysprof-48.0.tar.xz
# License files
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING

View File

@@ -4,8 +4,8 @@
#
################################################################################
SYSPROF_VERSION_MAJOR = 47
SYSPROF_VERSION = $(SYSPROF_VERSION_MAJOR).2
SYSPROF_VERSION_MAJOR = 48
SYSPROF_VERSION = $(SYSPROF_VERSION_MAJOR).0
SYSPROF_SOURCE = sysprof-$(SYSPROF_VERSION).tar.xz
SYSPROF_SITE = https://download.gnome.org/sources/sysprof/$(SYSPROF_VERSION_MAJOR)
SYSPROF_LICENSE = GPL-3.0+
@@ -22,6 +22,13 @@ SYSPROF_CONF_OPTS = \
-Dtools=true \
-Dsystemdunitdir=/usr/lib/systemd/system
ifeq ($(BR2_PACKAGE_ELFUTILS),y)
SYSPROF_DEPENDENCIES += elfutils
SYSPROF_CONF_OPTS += -Ddebuginfod=enabled
else
SYSPROF_CONF_OPTS += -Ddebuginfod=disabled
endif
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
SYSPROF_DEPENDENCIES += systemd
endif