Update to 3.19.3

This commit is contained in:
David King 2015-12-14 23:33:48 +00:00
parent 7a06cecbc2
commit 865d9bcaa3
4 changed files with 34 additions and 2 deletions

1
.gitignore vendored
View File

@ -33,3 +33,4 @@
/gnome-logs-3.18.1.tar.xz
/gnome-logs-3.19.1.tar.xz
/gnome-logs-3.19.2.tar.xz
/gnome-logs-3.19.3.tar.xz

View File

@ -0,0 +1,25 @@
From 6f68e55ae8db146e8ac409af33a49117be5fa082 Mon Sep 17 00:00:00 2001
From: Jonathan Kang <jonathan121537@gmail.com>
Date: Tue, 15 Dec 2015 07:08:13 +0800
Subject: [PATCH] Fix test error for few argument in tests/test-gl-util.c
---
tests/test-gl-util.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/test-gl-util.c b/tests/test-gl-util.c
index 5fac6d9..abfcb16 100644
--- a/tests/test-gl-util.c
+++ b/tests/test-gl-util.c
@@ -54,7 +54,7 @@ util_timestamp_to_display (void)
gchar *compare;
compare = gl_util_timestamp_to_display (times[i].microsecs, now,
- times[i].format);
+ times[i].format, FALSE);
g_assert_cmpstr (compare, ==, times[i].time);
g_free (compare);
}
--
2.6.4

View File

@ -1,5 +1,5 @@
Name: gnome-logs
Version: 3.19.2
Version: 3.19.3
Release: 1%{?dist}
Summary: Log viewer for the systemd journal
@ -7,6 +7,8 @@ Group: Applications/System
License: GPLv3+
URL: https://wiki.gnome.org/Apps/Logs
Source0: https://download.gnome.org/sources/%{name}/3.19/%{name}-%{version}.tar.xz
# Upstream patch to fix tests for changed internal API.
Patch0: gnome-logs-3.19.3-fix-tests.patch
BuildRequires: desktop-file-utils
BuildRequires: docbook-dtds
@ -24,6 +26,7 @@ A log viewer for the systemd journal.
%prep
%setup -q
%patch0 -p1
%build
@ -71,6 +74,9 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
%changelog
* Mon Dec 14 2015 David King <amigadave@amigadave.com> - 3.19.3-1
- Update to 3.19.3
* Tue Nov 24 2015 David King <amigadave@amigadave.com> - 3.19.2-1
- Update to 3.19.2

View File

@ -1 +1 @@
0ebd78a20941ec3c367a77ee4524901d gnome-logs-3.19.2.tar.xz
0db754fff174dcc88a7bb215885df5bc gnome-logs-3.19.3.tar.xz