Hello community,
here is the log from the commit of package evolution-data-server for
openSUSE:Factory checked in at 2016-08-12 15:35:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/evolution-data-server (Old)
and /work/SRC/openSUSE:Factory/.evolution-data-server.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "evolution-data-server"
Changes:
--------
---
/work/SRC/openSUSE:Factory/evolution-data-server/evolution-data-server.changes
2016-08-06 20:35:00.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.evolution-data-server.new/evolution-data-server.changes
2016-08-12 15:35:41.000000000 +0200
@@ -1,0 +2,7 @@
+Mon Aug 8 09:51:06 UTC 2016 - [email protected]
+
+- Update to version 3.20.5:
+ + Incorrect times provided in e_cal_recur_generate_instances()
+ (bgo#766346).
+
+-------------------------------------------------------------------
Old:
----
evolution-data-server-3.20.4.tar.xz
New:
----
evolution-data-server-3.20.5.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ evolution-data-server.spec ++++++
--- /var/tmp/diff_new_pack.7ZAlFE/_old 2016-08-12 15:35:42.000000000 +0200
+++ /var/tmp/diff_new_pack.7ZAlFE/_new 2016-08-12 15:35:42.000000000 +0200
@@ -33,7 +33,7 @@
Name: evolution-data-server
%define _evo_version 3.20
-Version: 3.20.4
+Version: 3.20.5
Release: 0
Summary: Evolution Data Server
License: LGPL-2.1+
++++++ evolution-data-server-3.20.4.tar.xz ->
evolution-data-server-3.20.5.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/evolution-data-server-3.20.4/NEWS
new/evolution-data-server-3.20.5/NEWS
--- old/evolution-data-server-3.20.4/NEWS 2016-07-11 08:39:48.000000000
+0200
+++ new/evolution-data-server-3.20.5/NEWS 2016-08-08 09:34:42.000000000
+0200
@@ -1,3 +1,9 @@
+Evolution-Data-Server 3.20.5 2016-08-08
+---------------------------------------
+
+Bug Fixes:
+ Bug 766346 - Incorrect times provided in
e_cal_recur_generate_instances() (Milan Crha)
+
Evolution-Data-Server 3.20.4 2016-07-11
---------------------------------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/evolution-data-server-3.20.4/calendar/libecal/e-cal-recur.c
new/evolution-data-server-3.20.5/calendar/libecal/e-cal-recur.c
--- old/evolution-data-server-3.20.4/calendar/libecal/e-cal-recur.c
2016-06-17 13:58:37.000000000 +0200
+++ new/evolution-data-server-3.20.5/calendar/libecal/e-cal-recur.c
2016-08-02 10:47:29.000000000 +0200
@@ -197,7 +197,12 @@
a different icalcomponent and cause use-after-free. */
tt->zone = NULL;
- if (tt->is_utc || tt->is_date)
+ if (tt->is_utc)
+ return TRUE;
+
+ tt->zone = default_timezone;
+
+ if (tt->is_date)
return TRUE;
if (!prop)
@@ -1256,12 +1261,12 @@
if (bcd && bcd->cb) {
time_t istart, iend;
- if (instance_start.zone && !instance_start.is_date)
+ if (instance_start.zone)
istart = icaltime_as_timet_with_zone (instance_start,
instance_start.zone);
else
istart = icaltime_as_timet (instance_start);
- if (instance_end.zone && !instance_end.is_date)
+ if (instance_end.zone)
iend = icaltime_as_timet_with_zone (instance_end,
instance_end.zone);
else
iend = icaltime_as_timet (instance_end);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/evolution-data-server-3.20.4/configure
new/evolution-data-server-3.20.5/configure
--- old/evolution-data-server-3.20.4/configure 2016-07-11 08:40:28.000000000
+0200
+++ new/evolution-data-server-3.20.5/configure 2016-08-08 09:35:47.000000000
+0200
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for evolution-data-server 3.20.4.
+# Generated by GNU Autoconf 2.69 for evolution-data-server 3.20.5.
#
# Report bugs to
<http://bugzilla.gnome.org/enter_bug.cgi?product=Evolution-Data-Server>.
#
@@ -651,8 +651,8 @@
# Identity of this package.
PACKAGE_NAME='evolution-data-server'
PACKAGE_TARNAME='evolution-data-server'
-PACKAGE_VERSION='3.20.4'
-PACKAGE_STRING='evolution-data-server 3.20.4'
+PACKAGE_VERSION='3.20.5'
+PACKAGE_STRING='evolution-data-server 3.20.5'
PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=Evolution-Data-Server'
PACKAGE_URL=''
@@ -1785,7 +1785,7 @@
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures evolution-data-server 3.20.4 to adapt to many kinds of
systems.
+\`configure' configures evolution-data-server 3.20.5 to adapt to many kinds of
systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1856,7 +1856,7 @@
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of evolution-data-server
3.20.4:";;
+ short | recursive ) echo "Configuration of evolution-data-server
3.20.5:";;
esac
cat <<\_ACEOF
@@ -2135,7 +2135,7 @@
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-evolution-data-server configure 3.20.4
+evolution-data-server configure 3.20.5
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2721,7 +2721,7 @@
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by evolution-data-server $as_me 3.20.4, which was
+It was created by evolution-data-server $as_me 3.20.5, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@@ -3584,7 +3584,7 @@
# Define the identity of the package.
PACKAGE='evolution-data-server'
- VERSION='3.20.4'
+ VERSION='3.20.5'
cat >>confdefs.h <<_ACEOF
@@ -3885,7 +3885,7 @@
EDS_MAJOR_VERSION=3
EDS_MINOR_VERSION=20
-EDS_MICRO_VERSION=4
+EDS_MICRO_VERSION=5
@@ -27902,7 +27902,7 @@
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by evolution-data-server $as_me 3.20.4, which was
+This file was extended by evolution-data-server $as_me 3.20.5, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -27968,7 +27968,7 @@
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //;
s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-evolution-data-server config.status 3.20.4
+evolution-data-server config.status 3.20.5
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/evolution-data-server-3.20.4/configure.ac
new/evolution-data-server-3.20.5/configure.ac
--- old/evolution-data-server-3.20.4/configure.ac 2016-06-06
09:43:53.000000000 +0200
+++ new/evolution-data-server-3.20.5/configure.ac 2016-07-11
08:48:56.000000000 +0200
@@ -2,7 +2,7 @@
dnl Evolution-Data-Server version
m4_define([eds_major_version], [3])
m4_define([eds_minor_version], [20])
-m4_define([eds_micro_version], [4])
+m4_define([eds_micro_version], [5])
m4_define([eds_version],
[eds_major_version.eds_minor_version.eds_micro_version])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/evolution-data-server-3.20.4/docs/reference/eds/html/eds-Version-Checking.html
new/evolution-data-server-3.20.5/docs/reference/eds/html/eds-Version-Checking.html
---
old/evolution-data-server-3.20.4/docs/reference/eds/html/eds-Version-Checking.html
2016-07-11 08:46:09.000000000 +0200
+++
new/evolution-data-server-3.20.5/docs/reference/eds/html/eds-Version-Checking.html
2016-08-08 09:41:23.000000000 +0200
@@ -204,7 +204,7 @@
<hr>
<div class="refsect2">
<a name="EDS-MICRO-VERSION:CAPS"></a><h3>EDS_MICRO_VERSION</h3>
-<pre class="programlisting">#define EDS_MICRO_VERSION 4
+<pre class="programlisting">#define EDS_MICRO_VERSION 5
</pre>
<p>The micro version number of the Evolution-Data-Server library. Like
<a class="link" href="eds-Version-Checking.html#eds-micro-version"
title="eds_micro_version"><code
class="function">eds_micro_version()</code></a>, but from the headers used at
application compile
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/evolution-data-server-3.20.4/docs/reference/eds/html/index.html
new/evolution-data-server-3.20.5/docs/reference/eds/html/index.html
--- old/evolution-data-server-3.20.4/docs/reference/eds/html/index.html
2016-07-11 08:46:09.000000000 +0200
+++ new/evolution-data-server-3.20.5/docs/reference/eds/html/index.html
2016-08-08 09:41:23.000000000 +0200
@@ -15,7 +15,7 @@
<div class="titlepage">
<div>
<div><table class="navigation" id="top" width="100%" cellpadding="2"
cellspacing="0"><tr><th valign="middle"><p class="title">Evolution-Data-Server
Reference Manual</p></th></tr></table></div>
-<div><p class="releaseinfo">Reference Manual for evolution-data-server 3.20.4
+<div><p class="releaseinfo">Reference Manual for evolution-data-server 3.20.5
</p></div>
<div><div class="abstract">
<p class="title"><b>Abstract</b></p>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/evolution-data-server-3.20.4/docs/reference/eds/version.xml
new/evolution-data-server-3.20.5/docs/reference/eds/version.xml
--- old/evolution-data-server-3.20.4/docs/reference/eds/version.xml
2016-07-11 08:40:53.000000000 +0200
+++ new/evolution-data-server-3.20.5/docs/reference/eds/version.xml
2016-08-08 09:36:12.000000000 +0200
@@ -1 +1 @@
-evolution-data-server 3.20.4
+evolution-data-server 3.20.5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/evolution-data-server-3.20.4/libedataserver/eds-version.h
new/evolution-data-server-3.20.5/libedataserver/eds-version.h
--- old/evolution-data-server-3.20.4/libedataserver/eds-version.h
2016-07-11 08:40:52.000000000 +0200
+++ new/evolution-data-server-3.20.5/libedataserver/eds-version.h
2016-08-08 09:36:11.000000000 +0200
@@ -49,7 +49,7 @@
* time, rather than from the library linked against at application run
* time.
**/
-#define EDS_MICRO_VERSION 4
+#define EDS_MICRO_VERSION 5
/**
* EDS_CHECK_VERSION:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/evolution-data-server-3.20.4/modules/ubuntu-online-accounts/evolution-data-server-uoa.desktop
new/evolution-data-server-3.20.5/modules/ubuntu-online-accounts/evolution-data-server-uoa.desktop
---
old/evolution-data-server-3.20.4/modules/ubuntu-online-accounts/evolution-data-server-uoa.desktop
2016-07-11 08:46:07.000000000 +0200
+++
new/evolution-data-server-3.20.5/modules/ubuntu-online-accounts/evolution-data-server-uoa.desktop
2016-08-08 09:41:21.000000000 +0200
@@ -91,4 +91,4 @@
X-GNOME-Bugzilla-Bugzilla=GNOME
X-GNOME-Bugzilla-Product=evolution-data-server
X-GNOME-Bugzilla-Component=General
-X-GNOME-Bugzilla-Version=3.20.4
+X-GNOME-Bugzilla-Version=3.20.5