Sync from SUSE:SLFO:Main sysprof revision 606c70ea55c1d582717a2bcadd890ff7
This commit is contained in:
parent
66b2d3f23b
commit
2138d15cdd
19
_service
Normal file
19
_service
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0"?>
|
||||
<services>
|
||||
<service name="obs_scm" mode="manual">
|
||||
<param name="scm">git</param>
|
||||
<param name="url">https://gitlab.gnome.org/GNOME/sysprof.git</param>
|
||||
<param name="revision">47.0</param>
|
||||
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
|
||||
<param name="versionrewrite-pattern">v?(.*)\+0</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
<!-- <param name="changesgenerate">enable</param> -->
|
||||
</service>
|
||||
<service name="tar" mode="buildtime"/>
|
||||
<service name="recompress" mode="buildtime">
|
||||
<param name="file">*.tar</param>
|
||||
<param name="compression">zst</param>
|
||||
</service>
|
||||
<service name="set_version" mode="manual" />
|
||||
</services>
|
||||
|
BIN
sysprof-45.1.tar.xz
(Stored with Git LFS)
BIN
sysprof-45.1.tar.xz
(Stored with Git LFS)
Binary file not shown.
BIN
sysprof-47.0.obscpio
(Stored with Git LFS)
Normal file
BIN
sysprof-47.0.obscpio
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,66 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 17 07:10:11 UTC 2024 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 47.0:
|
||||
+ Speed up capture loading using gtk_tim_sort().
|
||||
+ Speed up capture loading using a private bump allocator for
|
||||
callgraph nodes.
|
||||
+ Use AdwAboutDialog.
|
||||
+ Add GIO and Mutter to graphics section.
|
||||
+ Fix use of tracefd on some child processes.
|
||||
+ Fix some use of blocking FDs.
|
||||
+ Collapse some recursive functions in callgraphs.
|
||||
+ Improve styling of waterfall labels.
|
||||
+ Allow polkit to be optional in some situations.
|
||||
+ Updated translations.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 17 16:47:17 UTC 2024 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Replace obsolete update-desktop-files BuildRequires and macro
|
||||
with desktop-file-utils BuildRequires.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Mar 16 09:24:18 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||
|
||||
- Update to version 46.0:
|
||||
+ Flamegraph and callgraph colorization improvements.
|
||||
+ Fix graphics page for GTK counters.
|
||||
+ Fix missing summary icon.
|
||||
+ Updated translations.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 4 08:38:17 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||
|
||||
- Update to version 46.rc:
|
||||
+ Avoid C99 restrict keyword when using C++.
|
||||
+ Add --monitor-bus option to sysprof-cli to record bus address.
|
||||
+ Fix compiler warning on integer comparison.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 19 17:39:13 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||
|
||||
- Update to version 46.beta:
|
||||
+ Rust and C++ demangler improvements.
|
||||
+ Protection against extremely large mark collections.
|
||||
+ Various fixes for parsing certain load bearing /proc files.
|
||||
+ Improved stack trace categorization.
|
||||
+ Fix use of pointer cursor.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 7 09:46:20 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||
|
||||
- Update to version 45.2:
|
||||
+ Sample items in mark chart rows to reduce chances of
|
||||
overflowing Open GL maximum VBO size.
|
||||
+ Fix parsing of /proc/$pid/maps by being more lenient in what is
|
||||
accepted device numbers. This fixes some unwindable stack
|
||||
tracess
|
||||
+ Update categories that are highlighted.
|
||||
+ Be more defensive when cleaning up view models to reduce
|
||||
chances of cuausing issues with GtkExpression.
|
||||
+ Updated translations.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 17 12:28:01 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||
|
||||
|
4
sysprof.obsinfo
Normal file
4
sysprof.obsinfo
Normal file
@ -0,0 +1,4 @@
|
||||
name: sysprof
|
||||
version: 47.0
|
||||
mtime: 1726280893
|
||||
commit: 5513868c49b54151b1df3f752a210709322e630c
|
@ -22,13 +22,13 @@
|
||||
%define glib_version 2.76.0
|
||||
|
||||
Name: sysprof
|
||||
Version: 45.1
|
||||
Version: 47.0
|
||||
Release: 0
|
||||
Summary: A system-wide Linux profiler
|
||||
License: GPL-3.0-or-later AND LGPL-3.0-or-later
|
||||
Group: Development/Tools/Debuggers
|
||||
URL: https://wiki.gnome.org/Apps/Sysprof
|
||||
Source0: https://download.gnome.org/sources/sysprof/45/sysprof-%{version}.tar.xz
|
||||
Source0: sysprof-%{version}.tar.zst
|
||||
Patch0: harden_sysprof3.service.patch
|
||||
Patch1: explicitly-include-unistd.patch
|
||||
|
||||
@ -37,12 +37,12 @@ BuildRequires: c++_compiler
|
||||
BuildRequires: gcc11
|
||||
BuildRequires: gcc11-c++
|
||||
%endif
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: hicolor-icon-theme
|
||||
BuildRequires: itstool
|
||||
BuildRequires: meson >= 0.59.0
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: update-desktop-files
|
||||
BuildRequires: pkgconfig(gio-2.0) >= %{glib_version}
|
||||
BuildRequires: pkgconfig(gio-unix-2.0) >= %{glib_version}
|
||||
BuildRequires: pkgconfig(glib-2.0) >= %{glib_version}
|
||||
@ -96,7 +96,7 @@ applications that use %{name}.
|
||||
%lang_package
|
||||
|
||||
%prep
|
||||
%setup -q -n sysprof-%{version}
|
||||
%autosetup -N -n sysprof-%{version}
|
||||
%patch -P 0 -p1
|
||||
%if 0%{?sle_version} && 0%{?sle_version} < 160000
|
||||
%patch -P 1 -p1
|
||||
@ -113,7 +113,6 @@ export CXX=g++-11
|
||||
|
||||
%install
|
||||
%meson_install
|
||||
%suse_update_desktop_file org.gnome.Sysprof Profiling
|
||||
%find_lang %{name} %{?no_lang_C}
|
||||
%fdupes %{buildroot}%{_datadir}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user