Accepting request 519421 from GNOME:Next
Scripted push of project GNOME:Next OBS-URL: https://build.opensuse.org/request/show/519421 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/libgtop?expand=0&rev=78
This commit is contained in:
parent
27786d5b08
commit
648d950c2b
@ -1,2 +1,2 @@
|
||||
libgtop-2_0-10
|
||||
libgtop-2_0-11
|
||||
provides "libgtop-<targettype> = <version>"
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:13bfe34c150b2b00b03df4732e8c7ccfae09ab15897ee4f4ebf0d16b0f3ba12b
|
||||
size 727072
|
3
libgtop-2.37.90.tar.xz
Normal file
3
libgtop-2.37.90.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d46a5b9d3dadada6e031341e24f631137d6b1bdf20b19079c8a8b049532f039e
|
||||
size 729220
|
@ -1,25 +0,0 @@
|
||||
From e0f97e7dbd6ec87103705d3e114876d44cb0ca4c Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Beno=C3=AEt=20Dejean?= <bdejean@gmail.com>
|
||||
Date: Mon, 1 May 2017 06:31:54 +0200
|
||||
Subject: Add NULL pointer checker (bug found with scan-build).
|
||||
|
||||
---
|
||||
sysdeps/common/error.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/sysdeps/common/error.c b/sysdeps/common/error.c
|
||||
index 0502271..6ca947b 100644
|
||||
--- a/sysdeps/common/error.c
|
||||
+++ b/sysdeps/common/error.c
|
||||
@@ -46,7 +46,7 @@ print_message (const glibtop *server, int message_level, const char *format, int
|
||||
|
||||
g_string_printf(message, "%s", (server && server->name ? server->name : DEFAULT_NAME));
|
||||
|
||||
- if (server->pid) {
|
||||
+ if (server && server->pid) {
|
||||
g_string_append_printf(message, "(c=%u/s=%u)", getpid(), server->pid);
|
||||
}
|
||||
else {
|
||||
--
|
||||
cgit v0.12
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 14 14:11:07 UTC 2017 - zaitor@opensuse.org
|
||||
|
||||
- Update to version 2.37.90:
|
||||
+ Added reserved fields to the sysdeps struct.
|
||||
+ Fixed build failure in FreeBSD 11.
|
||||
+ Updated translations.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 23 13:01:08 UTC 2017 - zaitor@opensuse.org
|
||||
|
||||
- Update to version 2.37.2:
|
||||
+ Added support for per-process io monitoring.
|
||||
+ Added nullpointer check.
|
||||
+ Use unicode in translatable strings.
|
||||
+ Updated translations.
|
||||
- Bump soname and baselibs.conf following upstream changes.
|
||||
- Drop libgtop-add-NULL-pointer-checker.patch: Fixed upstream.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 23 09:58:38 UTC 2017 - zaitor@opensuse.org
|
||||
|
||||
|
@ -17,17 +17,15 @@
|
||||
|
||||
|
||||
Name: libgtop
|
||||
Version: 2.36.0
|
||||
Version: 2.37.90
|
||||
Release: 0
|
||||
%define sover 10
|
||||
%define sover 11
|
||||
Summary: System status information library
|
||||
License: GPL-2.0+
|
||||
Group: Development/Libraries/C and C++
|
||||
Url: https://developer.gnome.org/libgtop/stable/
|
||||
Source: http://download.gnome.org/sources/libgtop/2.36/%{name}-%{version}.tar.xz
|
||||
Source: https://download.gnome.org/sources/libgtop/2.37/%{name}-%{version}.tar.xz
|
||||
Source99: baselibs.conf
|
||||
# PATCH-FIX-UPSTREAM libgtop-add-NULL-pointer-checker.patch zaitor@opensuse.org -- Add NULL pointer checker.
|
||||
Patch0: libgtop-add-NULL-pointer-checker.patch
|
||||
BuildRequires: glib2-devel
|
||||
BuildRequires: gobject-introspection-devel
|
||||
%if !0%{?is_opensuse}
|
||||
@ -117,7 +115,6 @@ from /dev/kmem.
|
||||
translation-update-upstream po libgtop
|
||||
# rpmlint note: libgtop has a separate translation for both Bengali and Bengali India
|
||||
%endif
|
||||
%patch0 -p1
|
||||
|
||||
%build
|
||||
%configure\
|
||||
|
Loading…
x
Reference in New Issue
Block a user