Hello community,
here is the log from the commit of package krb5-ticket-watcher for
openSUSE:Factory checked in at 2017-05-24 16:50:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/krb5-ticket-watcher (Old)
and /work/SRC/openSUSE:Factory/.krb5-ticket-watcher.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "krb5-ticket-watcher"
Wed May 24 16:50:45 2017 rev:30 rq:497787 version:1.0.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/krb5-ticket-watcher/krb5-ticket-watcher.changes
2014-05-02 13:58:27.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.krb5-ticket-watcher.new/krb5-ticket-watcher.changes
2017-05-24 16:51:42.883173755 +0200
@@ -1,0 +2,6 @@
+Tue May 23 14:12:20 UTC 2017 - [email protected]
+
+- add krb5-ticket-watcher-time-locale.patch: Fix localized
+ date time display in the tickets list
+
+-------------------------------------------------------------------
New:
----
krb5-ticket-watcher-time-locale.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ krb5-ticket-watcher.spec ++++++
--- /var/tmp/diff_new_pack.HBvpPH/_old 2017-05-24 16:51:43.819042007 +0200
+++ /var/tmp/diff_new_pack.HBvpPH/_new 2017-05-24 16:51:43.819042007 +0200
@@ -1,7 +1,7 @@
#
# spec file for package krb5-ticket-watcher
#
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -52,6 +52,7 @@
Source0: %{name}-%{version}.tar.bz2
Source1: krb5-ticket-watcher-po.tar.gz
Patch0: krb5-ticket-watcher-gcc47.patch
+Patch1: krb5-ticket-watcher-time-locale.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
@@ -71,6 +72,7 @@
%setup -n %{name}-%{version}
%setup -a 1 -T -D -n %{name}-%{version}
%patch0 -p1
+%patch1 -p1
%if 0%{?suse_version}
# We skip createPot - it requires calling of "make" before, but
# supplementary scripts call only prep phase.
++++++ krb5-ticket-watcher-time-locale.patch ++++++
--- krb5-ticket-watcher-1.0.3/src/krb5ticketwatcher.cpp.orig 2015-11-10
13:57:43.000000000 +0300
+++ krb5-ticket-watcher-1.0.3/src/krb5ticketwatcher.cpp 2015-11-10
21:49:27.430891533 +0300
@@ -1377,7 +1377,7 @@
if (!krb5_timestamp_to_sfstring((krb5_timestamp) tv,
timestring, 29, &fill))
{
- return timestring;
+ return QString::fromLocal8Bit(timestring);
}
return "";
}