commit gnome-calendar for openSUSE:Factory

2020-06-22 Thread root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2020-06-22 17:47:05

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new.2956 (New)


Package is "gnome-calendar"

Mon Jun 22 17:47:05 2020 rev:31 rq:816395 version:3.36.2

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2020-04-23 18:31:09.172169835 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new.2956/gnome-calendar.changes  
2020-06-22 17:47:07.938077832 +0200
@@ -1,0 +2,11 @@
+Thu Jun 18 16:02:31 UTC 2020 - Bjørn Lie 
+
+- Update to version 3.36.2:
+  + Week view now properly translates the event to the local
+timezone.
+  + Properly commit sequence after event changes, and prevent data
+loss.
+  + Fix first weekday calculation.
+  + Updated translations.
+
+---

Old:

  gnome-calendar-3.36.1.tar.xz

New:

  gnome-calendar-3.36.2.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.r9p0sV/_old  2020-06-22 17:47:08.598079902 +0200
+++ /var/tmp/diff_new_pack.r9p0sV/_new  2020-06-22 17:47:08.602079915 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-calendar
-Version:3.36.1
+Version:3.36.2
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0-or-later

++ gnome-calendar-3.36.1.tar.xz -> gnome-calendar-3.36.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-calendar-3.36.1/NEWS 
new/gnome-calendar-3.36.2/NEWS
--- old/gnome-calendar-3.36.1/NEWS  2020-04-16 22:07:39.0 +0200
+++ new/gnome-calendar-3.36.2/NEWS  2020-06-18 02:35:17.539159000 +0200
@@ -1,3 +1,9 @@
+Major changes in 3.36.2:
+* Week view now properly translates the event to the local timezone (Douglas 
Fuller)
+* Properly commit sequence after event changes, and prevent data loss
+* Fix first weekday calculation (Evangelos Ribeiro Tzaras)
+* Updated translations
+
 Major changes in 3.36.1:
 * Introduce a new engine
 * Fix a lot of bugs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gnome-calendar-3.36.1/data/appdata/org.gnome.Calendar.appdata.xml.in.in 
new/gnome-calendar-3.36.2/data/appdata/org.gnome.Calendar.appdata.xml.in.in
--- old/gnome-calendar-3.36.1/data/appdata/org.gnome.Calendar.appdata.xml.in.in 
2020-04-16 22:07:39.0 +0200
+++ new/gnome-calendar-3.36.2/data/appdata/org.gnome.Calendar.appdata.xml.in.in 
2020-06-18 02:35:17.539159000 +0200
@@ -49,6 +49,12 @@
   GNOME
 
   
+
+  
+ This is a stable release that fixes important bugs.
+  
+
+
 
   
  This is a stable release that fixes a lot of bugs, and introduces 
a new engine for Calendar. This new engine should be more robust and stable.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-calendar-3.36.1/meson.build 
new/gnome-calendar-3.36.2/meson.build
--- old/gnome-calendar-3.36.1/meson.build   2020-04-16 22:07:39.0 
+0200
+++ new/gnome-calendar-3.36.2/meson.build   2020-06-18 02:35:17.542492400 
+0200
@@ -1,7 +1,7 @@
 project(
   'gnome-calendar',
'c',
-   version: '3.36.1',
+   version: '3.36.2',
license: 'GPL3+',
  meson_version: '>= 0.50.0'
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-calendar-3.36.1/src/core/gcal-event.c 
new/gnome-calendar-3.36.2/src/core/gcal-event.c
--- old/gnome-calendar-3.36.1/src/core/gcal-event.c 2020-04-16 
22:07:39.0 +0200
+++ new/gnome-calendar-3.36.2/src/core/gcal-event.c 2020-06-18 
02:35:17.562492400 +0200
@@ -800,6 +800,28 @@
 }
 
 /**
+ * gcal_event_new:
+ * @self: a #GcalEvent
+ *
+ * Clones @event into a new #GcalEvent instance. This is useful
+ * for updating events.
+ *
+ * Returns: (transfer full)(nullable): a #GcalEvent
+ */
+GcalEvent*
+gcal_event_new_from_event (GcalEvent *self)
+{
+  g_autoptr (ECalComponent) component = NULL;
+
+  g_return_val_if_fail (GCAL_IS_EVENT (self), NULL);
+
+  component = e_cal_component_clone (self->component);
+  e_cal_component_commit_sequence (component);
+
+  return gcal_event_new (self->calendar, component, NULL);
+}
+
+/**
  * gcal_event_get_all_day:
  * @self: a #GcalEvent
  *
@@ -1179,6 +1201,8 @@
   g_hash_table_iter_remove (&iter);
 }
 
+  e_cal_component_commit_sequence (self->component);
+
   GCAL_EXIT;
 }
 
@@ -1223,6 +1247,8 @@
 
   e_cal_component_alarm_free (new_alarm);
 
+  e_cal_component_commit_sequen

commit gnome-calendar for openSUSE:Factory

2020-04-23 Thread root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2020-04-23 18:31:02

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new.2738 (New)


Package is "gnome-calendar"

Thu Apr 23 18:31:02 2020 rev:30 rq:795192 version:3.36.1

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2019-10-18 14:33:15.852265839 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new.2738/gnome-calendar.changes  
2020-04-23 18:31:09.172169835 +0200
@@ -1,0 +2,36 @@
+Thu Apr 16 21:52:39 UTC 2020 - Bjørn Lie 
+
+- Update to version 3.36.1:
+  + Introduce a new engine.
+  + Fix a lot of bugs.
+  + Support webcal:// URLs.
+  + Updated translations.
+- Add fdupes BuildRequires and macro call, remove duplicates.
+
+---
+Sat Mar  7 19:04:28 UTC 2020 - bjorn@gmail.com
+
+- Update to version 3.36.0:
+  + Updated translations.
+
+---
+Sat Feb 29 23:15:28 UTC 2020 - mgo...@suse.com
+
+- Update to version 3.35.92:
+  + Reorganize source code folders.
+  + Redesigned event editor dialog.
+  + Many other minor code cleanups.
+  + Updated translations.
+- Drop gnome-calendar-appid.patch: fixed upstream.
+- Add libhandy to BuildRequires.
+
+---
+Fri Feb 14 10:16:33 UTC 2020 - Dominique Leuenberger 
+
+- Update to version 3.35.2:
+  + New Nightly app icon.
+  + Many code cleanups.
+  + Updated translations.
+- Add gnome-calendar-appid.patch: Fix app ID outside devel profile.
+
+---

Old:

  gnome-calendar-3.34.2.tar.xz

New:

  gnome-calendar-3.36.1.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.NhgB13/_old  2020-04-23 18:31:09.708170860 +0200
+++ /var/tmp/diff_new_pack.NhgB13/_new  2020-04-23 18:31:09.712170867 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-calendar
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,15 @@
 
 
 Name:   gnome-calendar
-Version:3.34.2
+Version:3.36.1
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0-or-later
 Group:  Productivity/Office/Organizers
 URL:https://wiki.gnome.org/Design/Apps/Calendar
-Source0:
https://download.gnome.org/sources/gnome-calendar/3.34/%{name}-%{version}.tar.xz
+Source0:
https://download.gnome.org/sources/gnome-calendar/3.36/%{name}-%{version}.tar.xz
 
+BuildRequires:  fdupes
 BuildRequires:  meson
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(geocode-glib-1.0) >= 3.23
@@ -39,6 +40,7 @@
 BuildRequires:  pkgconfig(libedataserver-1.2) >= 3.17.1
 BuildRequires:  pkgconfig(libedataserverui-1.2) >= 3.17.1
 BuildRequires:  pkgconfig(libgeoclue-2.0) >= 2.4
+BuildRequires:  pkgconfig(libhandy-0.0) >= 0.0.9
 BuildRequires:  pkgconfig(libical) >= 3.0.5
 BuildRequires:  pkgconfig(libsoup-2.4)
 
@@ -69,6 +71,7 @@
 %install
 %meson_install
 %find_lang %{name} %{?no_lang_C}
+%fdupes %{buildroot}/%{_prefix}
 
 %check
 %meson_test

++ gnome-calendar-3.34.2.tar.xz -> gnome-calendar-3.36.1.tar.xz ++
 73350 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2019-10-18 Thread root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2019-10-18 14:33:14

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new.2352 (New)


Package is "gnome-calendar"

Fri Oct 18 14:33:14 2019 rev:29 rq:736807 version:3.34.2

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2019-05-16 22:08:22.562373357 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new.2352/gnome-calendar.changes  
2019-10-18 14:33:15.852265839 +0200
@@ -1,0 +2,36 @@
+Wed Oct  9 20:40:38 UTC 2019 - Bjørn Lie 
+
+- Update to version 3.34.2:
+  + Fix various crashers.
+  + Updated translations.
+
+---
+Sat Oct  5 14:31:50 UTC 2019 - Bjørn Lie 
+
+- Update to version 3.34.1:
+  + Fix various crashers.
+  + Improve search results handling.
+  + Make command line argument -d stand for --date.
+  + Fix crashes when e_cal_util_get_system_timezone() returns NULL.
+  + Fix first weekday calculation.
+  + Remove g_get_current_time.
+  + Readd n shortcut.
+  + Updated translations.
+
+---
+Tue Sep 10 10:08:14 CST 2019 - qk...@suse.com
+
+- Update to version 3.34.0:
+  + Updated translations.
+
+---
+Wed Sep  4 09:37:42 NZST 2019 - l...@ljones.dev
+
+- Update to version 3.33.4:
+  + Redesigned calendar management dialog.
+  + New, more reliable web discoverer code.
+  + Various bugfixes.
+  + Updated translations.
+  + Developer docs removed.
+
+---

Old:

  gnome-calendar-3.32.2.tar.xz

New:

  gnome-calendar-3.34.2.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.TFqIHo/_old  2019-10-18 14:33:16.412264381 +0200
+++ /var/tmp/diff_new_pack.TFqIHo/_new  2019-10-18 14:33:16.416264370 +0200
@@ -17,15 +17,14 @@
 
 
 Name:   gnome-calendar
-Version:3.32.2
+Version:3.34.2
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0-or-later
 Group:  Productivity/Office/Organizers
 URL:https://wiki.gnome.org/Design/Apps/Calendar
-Source0:
https://download.gnome.org/sources/gnome-calendar/3.32/%{name}-%{version}.tar.xz
+Source0:
https://download.gnome.org/sources/gnome-calendar/3.34/%{name}-%{version}.tar.xz
 
-BuildRequires:  gtk-doc
 BuildRequires:  meson
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(geocode-glib-1.0) >= 3.23
@@ -35,12 +34,12 @@
 BuildRequires:  pkgconfig(gsettings-desktop-schemas) >= 3.21.2
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.22.20
 BuildRequires:  pkgconfig(gweather-3.0) >= 3.27.2
-BuildRequires:  pkgconfig(libdazzle-1.0) >= 3.26.1
-BuildRequires:  pkgconfig(libecal-1.2) >= 3.13.90
+BuildRequires:  pkgconfig(libdazzle-1.0) >= 3.33.1
+BuildRequires:  pkgconfig(libecal-2.0) >= 3.33.2
 BuildRequires:  pkgconfig(libedataserver-1.2) >= 3.17.1
 BuildRequires:  pkgconfig(libedataserverui-1.2) >= 3.17.1
 BuildRequires:  pkgconfig(libgeoclue-2.0) >= 2.4
-BuildRequires:  pkgconfig(libical) >= 1.0
+BuildRequires:  pkgconfig(libical) >= 3.0.5
 BuildRequires:  pkgconfig(libsoup-2.4)
 
 %description
@@ -64,7 +63,6 @@
 %build
 %meson \
-Dtracing=false \
-   -Ddocumentation=true \
%{nil}
 %meson_build
 
@@ -87,8 +85,6 @@
 %{_datadir}/glib-2.0/schemas/org.gnome.calendar.enums.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.calendar.gschema.xml
 %{_datadir}/icons/hicolor/*/apps/*.*
-%dir %{_datadir}/gtk-doc/html/%{name}
-%doc %{_datadir}/gtk-doc/html/%{name}/*.*
 
 %files -n gnome-shell-search-provider-gnome-calendar
 %dir %{_datadir}/gnome-shell

++ gnome-calendar-3.32.2.tar.xz -> gnome-calendar-3.34.2.tar.xz ++
 93987 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2019-05-16 Thread root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2019-05-16 22:08:15

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new.5148 (New)


Package is "gnome-calendar"

Thu May 16 22:08:15 2019 rev:28 rq:703152 version:3.32.2

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2019-05-03 22:46:37.939797556 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new.5148/gnome-calendar.changes  
2019-05-16 22:08:22.562373357 +0200
@@ -1,0 +2,6 @@
+Fri May 10 15:35:33 UTC 2019 - Bjørn Lie 
+
+- Update to version 3.32.2:
+  + Fix timezone handling of all day events.
+
+---

Old:

  gnome-calendar-3.32.1.tar.xz

New:

  gnome-calendar-3.32.2.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.Zw6hZV/_old  2019-05-16 22:08:23.778372252 +0200
+++ /var/tmp/diff_new_pack.Zw6hZV/_new  2019-05-16 22:08:23.778372252 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-calendar
-Version:3.32.1
+Version:3.32.2
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0-or-later

++ gnome-calendar-3.32.1.tar.xz -> gnome-calendar-3.32.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-calendar-3.32.1/NEWS 
new/gnome-calendar-3.32.2/NEWS
--- old/gnome-calendar-3.32.1/NEWS  2019-04-24 00:24:46.0 +0200
+++ new/gnome-calendar-3.32.2/NEWS  2019-05-10 17:07:55.0 +0200
@@ -1,3 +1,6 @@
+Major changes in 3.32.2:
+* Fix timezone handling of all day events (Florian Latifi)
+
 Major changes in 3.32.1:
 * Fix release date field in AppData
 * Updated translations
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-calendar-3.32.1/meson.build 
new/gnome-calendar-3.32.2/meson.build
--- old/gnome-calendar-3.32.1/meson.build   2019-04-24 00:24:46.0 
+0200
+++ new/gnome-calendar-3.32.2/meson.build   2019-05-10 17:07:55.0 
+0200
@@ -1,7 +1,7 @@
 project(
   'gnome-calendar',
'c',
-   version: '3.32.1',
+   version: '3.32.2',
license: 'GPL3+',
  meson_version: '>= 0.42.0'
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-calendar-3.32.1/src/gcal-edit-dialog.c 
new/gnome-calendar-3.32.2/src/gcal-edit-dialog.c
--- old/gnome-calendar-3.32.1/src/gcal-edit-dialog.c2019-04-24 
00:24:46.0 +0200
+++ new/gnome-calendar-3.32.2/src/gcal-edit-dialog.c2019-05-10 
17:07:55.0 +0200
@@ -316,7 +316,10 @@
 all_day ? 0 : 
g_date_time_get_minute (time),
 0);
 
-  date_in_best_tz = g_date_time_to_timezone (date_in_local_tz, timezone);
+  if (all_day)
+date_in_best_tz = g_date_time_ref (date_in_local_tz);
+  else
+date_in_best_tz = g_date_time_to_timezone (date_in_local_tz, timezone);
 
   retval = g_date_time_new (timezone,
 g_date_time_get_year (date_in_best_tz),




commit gnome-calendar for openSUSE:Factory

2019-05-03 Thread root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2019-05-03 22:46:36

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new.5148 (New)


Package is "gnome-calendar"

Fri May  3 22:46:36 2019 rev:27 rq:699597 version:3.32.1

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2018-11-09 07:54:10.983727387 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new.5148/gnome-calendar.changes  
2019-05-03 22:46:37.939797556 +0200
@@ -1,0 +2,24 @@
+Sun Apr 28 10:57:37 UTC 2019 - Bjørn Lie 
+
+- Update to version 3.32.1:
+  + Fix release date field in AppData.
+  + Updated translations.
+
+---
+Mon Mar 11 15:51:54 UTC 2019 - Bjørn Lie 
+
+- Update to version 3.32.0:
+  + Updated translations.
+
+---
+Fri Feb 15 21:28:57 UTC 2019 - bjorn@gmail.com
+
+- Update to version 3.31.90:
+  + Fix build failures against latest EDS.
+  + New app icon.
+  + Rewrite timezone support for events.
+  + Run nested EDS in Flatpak.
+  + Updated translations.
+- Add new check section to spec and run meson_test macro.
+
+---

Old:

  gnome-calendar-3.30.1.tar.xz

New:

  gnome-calendar-3.32.1.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.znszn0/_old  2019-05-03 22:46:39.159800356 +0200
+++ /var/tmp/diff_new_pack.znszn0/_new  2019-05-03 22:46:39.159800356 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-calendar
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -17,13 +17,13 @@
 
 
 Name:   gnome-calendar
-Version:3.30.1
+Version:3.32.1
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0-or-later
 Group:  Productivity/Office/Organizers
 URL:https://wiki.gnome.org/Design/Apps/Calendar
-Source0:
https://download.gnome.org/sources/gnome-calendar/3.30/%{name}-%{version}.tar.xz
+Source0:
https://download.gnome.org/sources/gnome-calendar/3.32/%{name}-%{version}.tar.xz
 
 BuildRequires:  gtk-doc
 BuildRequires:  meson
@@ -72,6 +72,9 @@
 %meson_install
 %find_lang %{name} %{?no_lang_C}
 
+%check
+%meson_test
+
 %files
 %license COPYING
 %doc NEWS README.md TODO.md

++ gnome-calendar-3.30.1.tar.xz -> gnome-calendar-3.32.1.tar.xz ++
 12559 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2018-11-08 Thread root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2018-11-09 07:53:58

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Fri Nov  9 07:53:58 2018 rev:26 rq:647067 version:3.30.1

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2018-10-01 08:15:52.774027026 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2018-11-09 07:54:10.983727387 +0100
@@ -1,0 +2,7 @@
+Sat Nov  3 13:52:51 UTC 2018 - bjorn@gmail.com
+
+- Update to version 3.30.1:
+  + Reimplement timezone management when editing events.
+  + Updated translations.
+
+---

Old:

  gnome-calendar-3.30.0.tar.xz

New:

  gnome-calendar-3.30.1.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.dt4Zql/_old  2018-11-09 07:54:11.943726287 +0100
+++ /var/tmp/diff_new_pack.dt4Zql/_new  2018-11-09 07:54:11.943726287 +0100
@@ -12,12 +12,12 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   gnome-calendar
-Version:3.30.0
+Version:3.30.1
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0-or-later

++ gnome-calendar-3.30.0.tar.xz -> gnome-calendar-3.30.1.tar.xz ++
 5666 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2018-09-30 Thread root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2018-10-01 08:15:47

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Mon Oct  1 08:15:47 2018 rev:25 rq:637343 version:3.30.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2018-05-03 12:33:05.410767369 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2018-10-01 08:15:52.774027026 +0200
@@ -1,0 +2,26 @@
+Sat Sep  8 10:44:51 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 3.30.0:
+  + Updated translations.
+
+---
+Tue Aug 28 23:17:41 UTC 2018 - bjorn@gmail.com
+
+- Update to version 3.29.92:
+  + Better handle 401 status codes when adding calendars.
+  + Updated translations.
+- Drop unneeded hicolor-icon-theme BuildRequires, use autosetup
+  macro.
+- Add gtk-doc BuildRequires and pass documentation=true instead of
+  gtk-doc to meson, build documentation again.
+- Pass tracing=false to meson ensure we build the package following
+  upstream defaults.
+
+---
+Fri Aug  3 18:30:42 UTC 2018 - bjorn@gmail.com
+
+- Update to version 3.29.90:
+  + Add Night Light integration.
+  + Bugfixes.
+
+---

Old:

  gnome-calendar-3.28.2.tar.xz

New:

  gnome-calendar-3.30.0.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.49SsAU/_old  2018-10-01 08:15:53.522026545 +0200
+++ /var/tmp/diff_new_pack.49SsAU/_new  2018-10-01 08:15:53.526026543 +0200
@@ -17,14 +17,15 @@
 
 
 Name:   gnome-calendar
-Version:3.28.2
+Version:3.30.0
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0-or-later
 Group:  Productivity/Office/Organizers
 URL:https://wiki.gnome.org/Design/Apps/Calendar
-Source: 
http://download.gnome.org/sources/gnome-calendar/3.28/%{name}-%{version}.tar.xz
-BuildRequires:  hicolor-icon-theme
+Source0:
https://download.gnome.org/sources/gnome-calendar/3.30/%{name}-%{version}.tar.xz
+
+BuildRequires:  gtk-doc
 BuildRequires:  meson
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(geocode-glib-1.0) >= 3.23
@@ -58,11 +59,12 @@
 %lang_package
 
 %prep
-%setup -q
+%autosetup -p1
 
 %build
 %meson \
-   -Dgtk-doc=false \
+   -Dtracing=false \
+   -Ddocumentation=true \
%{nil}
 %meson_build
 
@@ -82,8 +84,8 @@
 %{_datadir}/glib-2.0/schemas/org.gnome.calendar.enums.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.calendar.gschema.xml
 %{_datadir}/icons/hicolor/*/apps/*.*
-#dir %%{_datadir}/gtk-doc/html/%%{name}
-#doc %%{_datadir}/gtk-doc/html/%%{name}/*.*
+%dir %{_datadir}/gtk-doc/html/%{name}
+%doc %{_datadir}/gtk-doc/html/%{name}/*.*
 
 %files -n gnome-shell-search-provider-gnome-calendar
 %dir %{_datadir}/gnome-shell

++ gnome-calendar-3.28.2.tar.xz -> gnome-calendar-3.30.0.tar.xz ++
 19771 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2018-05-03 Thread root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2018-05-03 12:33:04

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Thu May  3 12:33:04 2018 rev:24 rq:602999 version:3.28.2

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2018-04-17 11:16:30.953228880 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2018-05-03 12:33:05.410767369 +0200
@@ -1,0 +2,12 @@
+Wed May  2 04:47:20 UTC 2018 - bjorn@gmail.com
+
+- Update to version 3.28.2:
+  + Don't show time labels on full day events.
+  + Fix Week grid collapsing non-overlapping events.
+  + Force timed events square box to be squared.
+  + Use the correct end date on tooltips.
+  + Minor improvements to the Month view paddings.
+  + Fix a crash when deleting tasks.
+  + Updates translations.
+
+---

Old:

  gnome-calendar-3.28.1.tar.xz

New:

  gnome-calendar-3.28.2.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.YtYGWu/_old  2018-05-03 12:33:06.286736172 +0200
+++ /var/tmp/diff_new_pack.YtYGWu/_new  2018-05-03 12:33:06.290736029 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-calendar
-Version:3.28.1
+Version:3.28.2
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0-or-later

++ gnome-calendar-3.28.1.tar.xz -> gnome-calendar-3.28.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-calendar-3.28.1/NEWS 
new/gnome-calendar-3.28.2/NEWS
--- old/gnome-calendar-3.28.1/NEWS  2018-04-10 16:52:05.0 +0200
+++ new/gnome-calendar-3.28.2/NEWS  2018-05-02 02:26:44.0 +0200
@@ -1,3 +1,12 @@
+Major changes in 3.28.2:
+* Don't show time labels on full day events (Abdullahi Usman)
+* Fix Week grid collapsing non-overlapping events
+* Force timed events square box to be squared
+* Use the correct end date on tooltips
+* Minor improvements to the Month view paddings
+* Fix a crash when deleting tasks
+* Updates translations
+
 Major changes in 3.28.1:
 * Updated translations
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gnome-calendar-3.28.1/data/appdata/org.gnome.Calendar.appdata.xml.in 
new/gnome-calendar-3.28.2/data/appdata/org.gnome.Calendar.appdata.xml.in
--- old/gnome-calendar-3.28.1/data/appdata/org.gnome.Calendar.appdata.xml.in
2018-04-10 16:52:05.0 +0200
+++ new/gnome-calendar-3.28.2/data/appdata/org.gnome.Calendar.appdata.xml.in
2018-05-02 02:26:44.0 +0200
@@ -49,6 +49,15 @@
   GNOME
 
   
+
+  
+
+  The 3.28.2 release brings polish to the Month and Week views, and 
fixes a crash
+  when removing tasks. It also updates many translations.
+
+  
+
+
 
   
 This release updates many translations.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-calendar-3.28.1/data/theme/Adwaita.css 
new/gnome-calendar-3.28.2/data/theme/Adwaita.css
--- old/gnome-calendar-3.28.1/data/theme/Adwaita.css2018-04-10 
16:52:05.0 +0200
+++ new/gnome-calendar-3.28.2/data/theme/Adwaita.css2018-05-02 
02:26:44.0 +0200
@@ -424,7 +424,7 @@
 border: solid 1px alpha(@borders, 0.3);
 border-width: 1px 0 0 1px;
 background: transparent;
-padding: 1px 0 1px 0;
+padding: 1px 3px 0 3px;
 transition: background-color 200ms;
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-calendar-3.28.1/data/ui/event-widget.ui 
new/gnome-calendar-3.28.2/data/ui/event-widget.ui
--- old/gnome-calendar-3.28.1/data/ui/event-widget.ui   2018-04-10 
16:52:05.0 +0200
+++ new/gnome-calendar-3.28.2/data/ui/event-widget.ui   2018-05-02 
02:26:44.0 +0200
@@ -22,6 +22,10 @@
   
 True
 False
+center
+center
+16
+16
 
   
 
@@ -48,6 +52,7 @@
   
 True
 False
+True
 
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-calendar-3.28.1/data/ui/month-popover.ui 
new/gnome-calendar-3.28.2/data/ui/month-popover.ui
--- old/gnome-calendar-3.2

commit gnome-calendar for openSUSE:Factory

2018-04-17 Thread root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2018-04-17 11:16:27

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Tue Apr 17 11:16:27 2018 rev:23 rq:596168 version:3.28.1

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2018-03-16 10:41:27.104572398 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2018-04-17 11:16:30.953228880 +0200
@@ -1,0 +2,8 @@
+Wed Apr 11 03:55:05 UTC 2018 - luc1...@linuxmail.org
+
+- Update to version 3.28.1:
+  + Updated translations.
+- Drop desktop-file-utils BuildRequires: it is no longer required
+  nor used anymore.
+
+---

Old:

  gnome-calendar-3.28.0.tar.xz

New:

  gnome-calendar-3.28.1.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.FEjbwo/_old  2018-04-17 11:16:32.073176371 +0200
+++ /var/tmp/diff_new_pack.FEjbwo/_new  2018-04-17 11:16:32.077176184 +0200
@@ -17,14 +17,13 @@
 
 
 Name:   gnome-calendar
-Version:3.28.0
+Version:3.28.1
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0-or-later
 Group:  Productivity/Office/Organizers
 URL:https://wiki.gnome.org/Design/Apps/Calendar
 Source: 
http://download.gnome.org/sources/gnome-calendar/3.28/%{name}-%{version}.tar.xz
-BuildRequires:  desktop-file-utils
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  meson
 BuildRequires:  pkgconfig
@@ -33,7 +32,7 @@
 BuildRequires:  pkgconfig(glib-2.0) >= 2.43.4
 BuildRequires:  pkgconfig(goa-1.0) >= 3.2.0
 BuildRequires:  pkgconfig(gsettings-desktop-schemas) >= 3.21.2
-BuildRequires:  pkgconfig(gtk+-3.0) >= 3.21.1
+BuildRequires:  pkgconfig(gtk+-3.0) >= 3.22.20
 BuildRequires:  pkgconfig(gweather-3.0) >= 3.27.2
 BuildRequires:  pkgconfig(libdazzle-1.0) >= 3.26.1
 BuildRequires:  pkgconfig(libecal-1.2) >= 3.13.90

++ gnome-calendar-3.28.0.tar.xz -> gnome-calendar-3.28.1.tar.xz ++
 6243 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2018-03-16 Thread root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2018-03-16 10:41:16

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Fri Mar 16 10:41:16 2018 rev:22 rq:586225 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2018-01-26 13:38:51.835075919 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2018-03-16 10:41:27.104572398 +0100
@@ -1,0 +2,52 @@
+Mon Mar 12 19:28:00 UTC 2018 - dims...@opensuse.org
+
+- Update to version 3.28.0:
+  + Updated translations.
+
+---
+Mon Mar  5 20:21:23 UTC 2018 - dims...@opensuse.org
+
+- Update to version 3.27.92:
+  + Flatpak improvements.
+  + New unit tests.
+  + Updated translations.
+
+---
+Wed Feb 28 16:27:27 UTC 2018 - dims...@opensuse.org
+
+- Modernize spec-file by calling spec-cleaner
+
+---
+Mon Feb 12 14:14:55 UTC 2018 - dims...@opensuse.org
+
+- Update to version 3.27.90:
+  + Big code refactorings that lead to more stability and ease of
+maintainership.
+  + Follow-up improvements after rewritting the Month view.
+  + Flatpak Nightly now builds with debug and tracing enabled.
+  + Huge memory leaks were fixed.
+  + Updated translations.
+- Add pkgconfig(gweather-3.0), pkgconfig(libgeoclue-2.0) and
+  pkgconfig(geocode-glib-1.0) BuildRequires: new dependencies.
+
+---
+Mon Jan 22 03:27:02 UTC 2018 - luc1...@linuxmail.org
+
+- Update to version 3.27.2:
+  + Events now are rendered differently if they are all-day or
+timed.
+  + Rewrite of the Month view:
+- Month cells have more transitions and effects.
+- The day number is above the cells.
+- A new overflow popup window was introduced.
+- Right-to-left languages are fully working now.
+  + Plug some memory leaks.
+  + Improve filename handling when adding new calendars.
+  + Updated translations.
+- Add libdazzle-1.0, libedataserverui-1.2 and libsoup-2.4
+  pkgconfig BuildRequires: new dependencies.
+- Drop pkgconfig(gmodule-export-2.0) and gtk-doc BuildRequires: the
+  last is not needed since we don't build the documentation and the
+  former is no longer used/needed anymore.
+
+---

Old:

  gnome-calendar-3.26.3.tar.xz

New:

  gnome-calendar-3.28.0.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.dFmG51/_old  2018-03-16 10:41:28.596518677 +0100
+++ /var/tmp/diff_new_pack.dFmG51/_new  2018-03-16 10:41:28.600518533 +0100
@@ -17,26 +17,31 @@
 
 
 Name:   gnome-calendar
-Version:3.26.3
+Version:3.28.0
 Release:0
 Summary:A calendar application for GNOME
-License:GPL-3.0+
+License:GPL-3.0-or-later
 Group:  Productivity/Office/Organizers
-Url:https://wiki.gnome.org/Design/Apps/Calendar
-Source: 
http://download.gnome.org/sources/gnome-calendar/3.26/%{name}-%{version}.tar.xz
+URL:https://wiki.gnome.org/Design/Apps/Calendar
+Source: 
http://download.gnome.org/sources/gnome-calendar/3.28/%{name}-%{version}.tar.xz
 BuildRequires:  desktop-file-utils
-BuildRequires:  gtk-doc
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  meson
-BuildRequires:  pkgconfig(gio-2.0) >= 2.43.2
+BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(geocode-glib-1.0) >= 3.23
+BuildRequires:  pkgconfig(gio-2.0) >= 2.43.4
 BuildRequires:  pkgconfig(glib-2.0) >= 2.43.4
-BuildRequires:  pkgconfig(gmodule-export-2.0)
 BuildRequires:  pkgconfig(goa-1.0) >= 3.2.0
 BuildRequires:  pkgconfig(gsettings-desktop-schemas) >= 3.21.2
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.21.1
+BuildRequires:  pkgconfig(gweather-3.0) >= 3.27.2
+BuildRequires:  pkgconfig(libdazzle-1.0) >= 3.26.1
 BuildRequires:  pkgconfig(libecal-1.2) >= 3.13.90
 BuildRequires:  pkgconfig(libedataserver-1.2) >= 3.17.1
+BuildRequires:  pkgconfig(libedataserverui-1.2) >= 3.17.1
+BuildRequires:  pkgconfig(libgeoclue-2.0) >= 2.4
 BuildRequires:  pkgconfig(libical) >= 1.0
+BuildRequires:  pkgconfig(libsoup-2.4)
 
 %description
 Calendar is a calendar application for GNOME.
@@ -58,7 +63,7 @@
 
 %build
 %meson \
-   -Denable-gtk-doc=false \
+   -Dgtk-doc=false \
%{nil}
 %meson_build
 
@@ -67,8 +72,8 @@
 %find_lang %{name} %{?no_lang_C}
 
 %files
-%defattr(-,root,root)
-%doc COPYING NEWS README.md TODO.md
+%

commit gnome-calendar for openSUSE:Factory

2018-01-26 Thread root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2018-01-26 13:38:50

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Fri Jan 26 13:38:50 2018 rev:21 rq:568069 version:3.26.3

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2017-10-13 14:08:52.043277953 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2018-01-26 13:38:51.835075919 +0100
@@ -1,0 +2,8 @@
+Wed Jan 17 03:50:44 UTC 2018 - luc1...@linuxmail.org
+
+- Update to version 3.26.3:
+  + Fix time in tooltip text.
+  + Fix timezones.
+  + Updated translations.
+
+---

Old:

  gnome-calendar-3.26.2.tar.xz

New:

  gnome-calendar-3.26.3.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.P0sBxG/_old  2018-01-26 13:38:52.515044161 +0100
+++ /var/tmp/diff_new_pack.P0sBxG/_new  2018-01-26 13:38:52.519043975 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-calendar
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -17,13 +17,13 @@
 
 
 Name:   gnome-calendar
-Version:3.26.2
+Version:3.26.3
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0+
 Group:  Productivity/Office/Organizers
 Url:https://wiki.gnome.org/Design/Apps/Calendar
-Source: 
https://download.gnome.org/sources/gnome-calendar/3.26/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gnome-calendar/3.26/%{name}-%{version}.tar.xz
 BuildRequires:  desktop-file-utils
 BuildRequires:  gtk-doc
 BuildRequires:  hicolor-icon-theme
@@ -64,12 +64,11 @@
 
 %install
 %meson_install
-
 %find_lang %{name} %{?no_lang_C}
 
 %files
 %defattr(-,root,root)
-%doc ChangeLog COPYING NEWS
+%doc COPYING NEWS README.md TODO.md
 %{_bindir}/gnome-calendar
 %{_datadir}/applications/org.gnome.Calendar.desktop
 # Own dir for openSUSE Leap 42.1

++ gnome-calendar-3.26.2.tar.xz -> gnome-calendar-3.26.3.tar.xz ++
 9287 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2017-10-13 Thread root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2017-10-13 14:08:49

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Fri Oct 13 14:08:49 2017 rev:20 rq:532844 version:3.26.2

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2017-09-25 13:51:32.725280421 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2017-10-13 14:08:52.043277953 +0200
@@ -1,0 +2,7 @@
+Thu Oct  5 17:50:27 UTC 2017 - luc1...@linuxmail.org
+
+- Update to version 3.26.2:
+  + Fixed many Flatpak issues.
+  + Updated translations.
+
+---

Old:

  gnome-calendar-3.26.1.tar.xz

New:

  gnome-calendar-3.26.2.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.ykIma5/_old  2017-10-13 14:08:52.563255087 +0200
+++ /var/tmp/diff_new_pack.ykIma5/_new  2017-10-13 14:08:52.567254911 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   gnome-calendar
-Version:3.26.1
+Version:3.26.2
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0+
 Group:  Productivity/Office/Organizers
 Url:https://wiki.gnome.org/Design/Apps/Calendar
-Source: 
http://download.gnome.org/sources/gnome-calendar/3.26/%{name}-%{version}.tar.xz
+Source: 
https://download.gnome.org/sources/gnome-calendar/3.26/%{name}-%{version}.tar.xz
 BuildRequires:  desktop-file-utils
 BuildRequires:  gtk-doc
 BuildRequires:  hicolor-icon-theme
@@ -74,7 +74,7 @@
 %{_datadir}/applications/org.gnome.Calendar.desktop
 # Own dir for openSUSE Leap 42.1
 %dir %{_datadir}/metainfo
-%{_datadir}/metainfo/org.gnome.Calendar.metainfo.xml
+%{_datadir}/metainfo/org.gnome.Calendar.appdata.xml
 %{_datadir}/dbus-1/services/org.gnome.Calendar.service
 %{_datadir}/glib-2.0/schemas/org.gnome.calendar.enums.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.calendar.gschema.xml

++ gnome-calendar-3.26.1.tar.xz -> gnome-calendar-3.26.2.tar.xz ++
 10967 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2017-09-25 Thread root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2017-09-25 13:51:31

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Mon Sep 25 13:51:31 2017 rev:19 rq:528348 version:3.26.1

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2017-09-13 21:55:16.639637358 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2017-09-25 13:51:32.725280421 +0200
@@ -1,0 +2,7 @@
+Thu Sep 21 21:20:05 UTC 2017 - luc1...@linuxmail.org
+
+- Update to version 3.26.1:
+  + Fix translations not being picked up.
+  + Fix type race issue preventing correct initialization.
+
+---

Old:

  gnome-calendar-3.26.0.tar.xz

New:

  gnome-calendar-3.26.1.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.KU4S9i/_old  2017-09-25 13:51:33.301199390 +0200
+++ /var/tmp/diff_new_pack.KU4S9i/_new  2017-09-25 13:51:33.301199390 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-calendar
-Version:3.26.0
+Version:3.26.1
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0+

++ gnome-calendar-3.26.0.tar.xz -> gnome-calendar-3.26.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-calendar-3.26.0/NEWS 
new/gnome-calendar-3.26.1/NEWS
--- old/gnome-calendar-3.26.0/NEWS  2017-09-12 04:14:25.0 +0200
+++ new/gnome-calendar-3.26.1/NEWS  2017-09-21 19:08:44.0 +0200
@@ -1,3 +1,7 @@
+Major changes in 3.26.1:
+* Fix translations not being picked up.
+* Fix type race issue preventing correct initialization.
+
 Major changes in 3.26.0:
 * Many fixes to recurrent events (Yash Singh, Georges Basile Stavracas Neto)
 * Cache events for better resource management
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-calendar-3.26.0/doc/reference/meson.build 
new/gnome-calendar-3.26.1/doc/reference/meson.build
--- old/gnome-calendar-3.26.0/doc/reference/meson.build 2017-09-12 
04:14:25.0 +0200
+++ new/gnome-calendar-3.26.1/doc/reference/meson.build 2017-09-21 
19:08:44.0 +0200
@@ -37,7 +37,7 @@
   gobject_typesfile: meson.project_name() + '.types',
 html_assets: html_images,
 install: true,
-install_dir: doc_path
+install_dir: doc_path,
fixxref_args: [
 '--extra-dir=@0@'.format(join_paths(gtk_doc_path, 
'evolution-data-server')),
 '--extra-dir=@0@'.format(join_paths(glib_doc_path, 'glib')),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-calendar-3.26.0/meson.build 
new/gnome-calendar-3.26.1/meson.build
--- old/gnome-calendar-3.26.0/meson.build   2017-09-12 04:14:25.0 
+0200
+++ new/gnome-calendar-3.26.1/meson.build   2017-09-21 19:08:44.0 
+0200
@@ -1,6 +1,6 @@
 project(
   'gnome-calendar', 'c',
-  version: '3.26.0',
+  version: '3.26.1',
   license: 'GPL3+',
   default_options: [
 'buildtype=debugoptimized',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-calendar-3.26.0/po/gl.po 
new/gnome-calendar-3.26.1/po/gl.po
--- old/gnome-calendar-3.26.0/po/gl.po  2017-09-12 04:14:25.0 +0200
+++ new/gnome-calendar-3.26.1/po/gl.po  2017-09-21 19:08:44.0 +0200
@@ -72,7 +72,7 @@
 #. Translators: Do NOT translate or transliterate this text (this is an icon 
file name)!
 #: data/org.gnome.Calendar.desktop.in:7
 msgid "org.gnome.Calendar"
-msgstr "Calendario sen nome"
+msgstr "org.gnome.Calendar"
 
 #. Translators: Search terms to find this application. Do NOT translate or 
localize the semicolons! The list MUST also end with a semicolon!
 #: data/org.gnome.Calendar.desktop.in:13
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-calendar-3.26.0/po/ru.po 
new/gnome-calendar-3.26.1/po/ru.po
--- old/gnome-calendar-3.26.0/po/ru.po  2017-09-12 04:14:25.0 +0200
+++ new/gnome-calendar-3.26.1/po/ru.po  2017-09-21 19:08:44.0 +0200
@@ -4,27 +4,28 @@
 # Yuri Myasoedov , 2012, 2015.
 # Stas Solovey , 2014, 2015, 2016.
 # Ivan Komaritsyn , 2017.
+# Роман Верменко , 2017.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: gnome-calendar master\n"
 "Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-";
 "calendar&keywords=I18N+L10N&component=General\n"
-"POT-Creation-Date: 2017-08-23 22:16+\n"
-"PO-Revision-Date: 2017-08-27 10:47+

commit gnome-calendar for openSUSE:Factory

2017-09-13 Thread root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2017-09-13 21:55:15

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Wed Sep 13 21:55:15 2017 rev:18 rq:523682 version:3.26.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2017-06-17 10:18:05.565194793 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2017-09-13 21:55:16.639637358 +0200
@@ -1,0 +2,64 @@
+Tue Sep 12 07:15:19 UTC 2017 - dims...@opensuse.org
+
+- Update to version 3.26.0:
+  + Many fixes to recurrent events.
+  + Cache events for better resource management.
+  + Improve organization of files in the source code.
+  + Handle command line options correctly.
+  + Added the first version of a test suite. This will allow us
+continue improving and delivering new features with much less
+regressions.
+  + Many code cleanups and reorganizations.
+  + updated translations.
+- Disable gtk-doc for now. Build fails (bgo#782150).
+
+---
+Sat Sep  9 08:12:14 UTC 2017 - jeng...@inai.de
+
+- Update package summaries.
+
+---
+Mon Aug 14 14:23:03 UTC 2017 - zai...@opensuse.org
+
+- Update to version 3.25.90:
+  + Port to Meson build system.
+  + Improve string in the quick add popover.
+  + Fix Month view's overflow detection.
+  + Add support for adding and modifying recurrences.
+  + Grey out out-of-range cells in Month view.
+  + Move remaining files to GPLv3.
+  + Updated translations.
+- Add meson BuildRequires and switch autotools macros configure,
+  make and makeinstall to meson, meson_build and meson_install
+  following upstream switch to Meson build system.
+- Add gtk-doc and pass Denable-gtk-doc to meson: Build
+  documentation, needed now that we are using meson buildsystem.
+- Drop obsolete post(un) handling, remove following macros:
+  + icon_theme_cache_post(un).
+  + desktop_database_post(un).
+  + glib2_gsettings_schema_post(un).
+
+---
+Tue Jun 20 11:43:33 UTC 2017 - dims...@opensuse.org
+
+- Update to version 3.25.3:
+  + Drop intltool.
+  + Move events at column after remove event from list.
+  + Hide search popover if click is performed outside.
+  + Plug memory leaks.
+  + Fix drag n' drop of multiday events in Week header.
+  + Add margins to overflow label in Month view.
+  + Properly format dates.
+  + Fix crash when after closing Calendar.
+  + Add recurrence dialog for modifying and removing recurrent
+events.
+  + Updated translations.
+- Drop intltool BuildRequires: no longer needed.
+
+---
+Fri Jun  9 08:14:31 UTC 2017 - firebird...@gmail.com
+
+- Update to version 3.25.1:
+  + Add developer documentation.
+
+---

Old:

  gnome-calendar-3.24.3.tar.xz

New:

  gnome-calendar-3.26.0.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.YFaALZ/_old  2017-09-13 21:55:17.195559140 +0200
+++ /var/tmp/diff_new_pack.YFaALZ/_new  2017-09-13 21:55:17.199558578 +0200
@@ -17,16 +17,17 @@
 
 
 Name:   gnome-calendar
-Version:3.24.3
+Version:3.26.0
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0+
 Group:  Productivity/Office/Organizers
 Url:https://wiki.gnome.org/Design/Apps/Calendar
-Source: 
http://download.gnome.org/sources/gnome-calendar/3.24/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gnome-calendar/3.26/%{name}-%{version}.tar.xz
 BuildRequires:  desktop-file-utils
+BuildRequires:  gtk-doc
 BuildRequires:  hicolor-icon-theme
-BuildRequires:  intltool
+BuildRequires:  meson
 BuildRequires:  pkgconfig(gio-2.0) >= 2.43.2
 BuildRequires:  pkgconfig(glib-2.0) >= 2.43.4
 BuildRequires:  pkgconfig(gmodule-export-2.0)
@@ -36,56 +37,50 @@
 BuildRequires:  pkgconfig(libecal-1.2) >= 3.13.90
 BuildRequires:  pkgconfig(libedataserver-1.2) >= 3.17.1
 BuildRequires:  pkgconfig(libical) >= 1.0
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Calendar is a calendar application for GNOME.
 
 %package -n gnome-shell-search-provider-gnome-calendar
-Summary:GNOME Calendar -- Search Provider for GNOME Shell
+Summary:GNOME Shell search provider to return results from the GNOME 
Calendar
 Group:  Productivity/Office/Organizers
-Supplements:p

commit gnome-calendar for openSUSE:Factory

2017-06-17 Thread root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2017-06-17 10:18:04

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Sat Jun 17 10:18:04 2017 rev:17 rq:503265 version:3.24.3

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2017-05-18 20:41:02.208932084 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2017-06-17 10:18:05.565194793 +0200
@@ -1,0 +2,12 @@
+Fri Jun  9 08:14:30 UTC 2017 - zai...@opensuse.org
+
+- Update to version 3.24.3:
+  + Fix date calculation in week header.
+  + Plug many memory leaks.
+  + Draw current time strip over events in Week view.
+  + Reliably keep track of time with a new internal clocking API.
+  + Add a new --debug option, to show debug messages.
+  + Use libical2 to build Flatpak.
+  + Improve Month view rendering code.
+
+---

Old:

  gnome-calendar-3.24.2.tar.xz

New:

  gnome-calendar-3.24.3.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.DQYErP/_old  2017-06-17 10:18:06.269095500 +0200
+++ /var/tmp/diff_new_pack.DQYErP/_new  2017-06-17 10:18:06.273094936 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-calendar
-Version:3.24.2
+Version:3.24.3
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0+

++ gnome-calendar-3.24.2.tar.xz -> gnome-calendar-3.24.3.tar.xz ++
 4242 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2017-05-18 Thread root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2017-05-18 20:40:43

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Thu May 18 20:40:43 2017 rev:16 rq:494450 version:3.24.2

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2017-03-22 23:11:19.630878858 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2017-05-18 20:41:02.208932084 +0200
@@ -1,0 +2,25 @@
+Wed May 10 16:56:48 UTC 2017 - zai...@opensuse.org
+
+- Update to version 3.24.2:
+  + Fix crash in Week view.
+  + Fix crash in changing the current date.
+  + Properly update Week view's header when removing events.
+  + Hide search popover when clicking outside it.
+  + Updated translations.
+
+---
+Fri Apr 28 10:47:41 UTC 2017 - dims...@opensuse.org
+
+- Update to version 3.24.1:
+  + Added logging capabilities.
+  + Fix a lot of issues in Week view.
+  + Big code cleanups in old classes.
+  + Synchronize disabled calendars with Evolution.
+  + Fix DnD cursor.
+  + Optimize Year view.
+  + Drop "Search..." app menu item.
+  + Show tooltips when hovering event widgets.
+  + Various memory leaks and fixups.
+  + Updated translations.
+
+---

Old:

  gnome-calendar-3.24.0.tar.xz

New:

  gnome-calendar-3.24.2.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.j88NKq/_old  2017-05-18 20:41:02.740857016 +0200
+++ /var/tmp/diff_new_pack.j88NKq/_new  2017-05-18 20:41:02.744856452 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-calendar
-Version:3.24.0
+Version:3.24.2
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0+

++ gnome-calendar-3.24.0.tar.xz -> gnome-calendar-3.24.2.tar.xz ++
 16168 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2017-03-22 Thread root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2017-03-22 23:11:16

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Wed Mar 22 23:11:16 2017 rev:15 rq:481615 version:3.24.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2017-01-10 10:41:03.363867883 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2017-03-22 23:11:19.630878858 +0100
@@ -1,0 +2,44 @@
+Mon Mar 20 21:18:16 UTC 2017 - dims...@opensuse.org
+
+- Update to version 3.24.0:
+  + Updated translations.
+
+---
+Fri Mar 17 23:19:49 UTC 2017 - zai...@opensuse.org
+
+- Update to version 3.23.92:
+  + Fix first weekday in Week view.
+  + Start searching after 3 characters.
+  + Make sure calendar colors are in sync in Edit dialog.
+  + Don't show search popover for empty searcher.
+  + Minor fixups to Week view.
+  + Updated translations.
+
+---
+Tue Feb 28 20:38:18 UTC 2017 - dims...@opensuse.org
+
+- Update to version 3.23.91.1:
+  + Fix compiler flags.
+  + Add the co-maintainer to the DOAP file.
+
+---
+Tue Feb 28 14:17:28 UTC 2017 - dims...@opensuse.org
+
+- Update to version 3.23.91:
+  + Minor bugfixes.
+  + Updated translations.
+
+---
+Wed Feb 15 09:00:29 UTC 2017 - dims...@opensuse.org
+
+- Update to version 3.23.90:
+  + Week view.
+  + Improvements on the search popover.
+  + Fix Year view not synchronized with Month view.
+  + Correctly check if Edit dialog is editing a new event.
+  + Improve focus tracking on the quick add popover.
+  + Add a Flatpak manifest.
+  + Align circle with subtitle in Edit dialog.
+  + Updated translations.
+
+---

Old:

  gnome-calendar-3.22.2.tar.xz

New:

  gnome-calendar-3.24.0.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.QVtW55/_old  2017-03-22 23:11:20.230793859 +0100
+++ /var/tmp/diff_new_pack.QVtW55/_new  2017-03-22 23:11:20.234793292 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-calendar
 #
-# Copyright (c) 2016 SUSE LINUX 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
@@ -17,13 +17,13 @@
 
 
 Name:   gnome-calendar
-Version:3.22.2
+Version:3.24.0
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0+
 Group:  Productivity/Office/Organizers
 Url:https://wiki.gnome.org/Design/Apps/Calendar
-Source: 
http://download.gnome.org/sources/gnome-calendar/3.22/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gnome-calendar/3.24/%{name}-%{version}.tar.xz
 BuildRequires:  desktop-file-utils
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  intltool

++ gnome-calendar-3.22.2.tar.xz -> gnome-calendar-3.24.0.tar.xz ++
 34406 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2016-10-06 Thread h_root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2016-10-06 12:46:15

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2016-09-23 11:37:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2016-10-06 12:46:16.0 +0200
@@ -1,0 +2,10 @@
+Sun Oct  2 07:34:33 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.22.1:
+  + Ablility to change months/years through mouse and touchpad
+scroll.
+  + A huge number of bugfixes.
+  + Many memory leaks were fixed.
+  + Updated translations.
+
+---

Old:

  gnome-calendar-3.22.0.tar.xz

New:

  gnome-calendar-3.22.1.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.lsr1NL/_old  2016-10-06 12:46:17.0 +0200
+++ /var/tmp/diff_new_pack.lsr1NL/_new  2016-10-06 12:46:17.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-calendar
-Version:3.22.0
+Version:3.22.1
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0+

++ gnome-calendar-3.22.0.tar.xz -> gnome-calendar-3.22.1.tar.xz ++
 5512 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2016-09-23 Thread h_root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2016-09-23 11:37:02

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2016-09-01 14:03:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2016-09-23 11:37:03.0 +0200
@@ -1,0 +2,65 @@
+Mon Sep 19 19:30:17 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.22.0:
+  + Updated translations.
+
+---
+Wed Sep 14 20:45:16 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.21.92:
+  + Fix compiler warning.
+  + Fix various places to work with Gtk+ 3.21.6.
+  + Forbid dragging read-only events.
+  + Updated translations.
+- Drop gnome-calendar-initialize-variable.patch: Fixed upstream.
+
+---
+Wed Aug 31 22:00:31 UTC 2016 - dims...@opensuse.org
+
+- Add gnome-calendar-initialize-variable.patch: Fix build on
+  ppc64le by initializing the variable.
+
+---
+Wed Aug 31 21:08:28 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.21.91:
+  + New date chooser calendar.
+  + Deprecate GNOME_COMPILE_WARNINGS.
+  + Updated translations.
+
+---
+Wed Aug 31 21:08:27 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.21.4:
+  + Share the 'show-weekdate' with GNOME Shell.
+  + Fix issue in the calendar management dialog.
+  + Add support for alarms.
+  + Major updates on the edit dialog.
+  + Style fixes and updates.
+  + Fix year view popover positioning.
+  + Updated translations.
+- Add pkgconfig(gsettings-desktop-schemas) BuildRequires: New
+  dependency.
+
+---
+Wed Aug 31 21:08:26 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.21.2:
+  + Add the ability to change the month when navigating with
+keyboard.
+  + Make the "Today" button insensitive when the current day is
+visible.
+  + Keep the Sources dialog alive after closing it.
+  + Adapt the CSS to Gtk+ 3.21 strictness.
+  + Define the first week day in the build script.
+  + Show all events of a month when clicking in the month name.
+  + Vastly improve the Year view's navigator.
+  + Correct the header capitalization.
+  + Define ABOUT_NLS when configuring the project.
+  + Fix various miscalculations in Month View.
+  + Drop the usage of our custom .views CSS class.
+  + Various GDateTime reference fixes.
+  + Add Drag n' Drop capabilities to Month and Year View.
+  + Updated translations.
+
+---

Old:

  gnome-calendar-3.20.3.tar.xz

New:

  gnome-calendar-3.22.0.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.rI8ar5/_old  2016-09-23 11:37:04.0 +0200
+++ /var/tmp/diff_new_pack.rI8ar5/_new  2016-09-23 11:37:04.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   gnome-calendar
-Version:3.20.3
+Version:3.22.0
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0+
 Group:  Productivity/Office/Organizers
 Url:https://wiki.gnome.org/Design/Apps/Calendar
-Source: 
http://download.gnome.org/sources/gnome-calendar/3.20/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gnome-calendar/3.22/%{name}-%{version}.tar.xz
 BuildRequires:  desktop-file-utils
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  intltool
@@ -31,7 +31,8 @@
 BuildRequires:  pkgconfig(glib-2.0) >= 2.43.4
 BuildRequires:  pkgconfig(gmodule-export-2.0)
 BuildRequires:  pkgconfig(goa-1.0) >= 3.2.0
-BuildRequires:  pkgconfig(gtk+-3.0) >= 3.19.1
+BuildRequires:  pkgconfig(gsettings-desktop-schemas) >= 3.21.2
+BuildRequires:  pkgconfig(gtk+-3.0) >= 3.21.1
 BuildRequires:  pkgconfig(libecal-1.2) >= 3.13.90
 BuildRequires:  pkgconfig(libedataserver-1.2) >= 3.17.1
 BuildRequires:  pkgconfig(libical) >= 1.0

++ gnome-calendar-3.20.3.tar.xz -> gnome-calendar-3.22.0.tar.xz ++
 49874 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2016-09-01 Thread h_root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2016-09-01 14:03:51

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2016-05-12 09:33:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2016-09-01 14:03:52.0 +0200
@@ -1,0 +2,8 @@
+Wed Aug 31 21:08:25 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.20.3:
+  + Fix crashes.
+  + Fix AM/PM selector not showing.
+  + Updated translations.
+
+---

Old:

  gnome-calendar-3.20.2.tar.xz

New:

  gnome-calendar-3.20.3.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.vzp0EY/_old  2016-09-01 14:03:53.0 +0200
+++ /var/tmp/diff_new_pack.vzp0EY/_new  2016-09-01 14:03:53.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-calendar
-Version:3.20.2
+Version:3.20.3
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0+

++ gnome-calendar-3.20.2.tar.xz -> gnome-calendar-3.20.3.tar.xz ++
 4192 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2016-05-12 Thread h_root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2016-05-12 09:33:41

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2016-04-17 22:17:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2016-05-12 09:33:42.0 +0200
@@ -1,0 +2,9 @@
+Mon May  9 19:59:55 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.20.2:
+  + Revert some changes because of instabilities.
+  + Use the theme's CSS instead of our custom one.
+  + Fix the first week day detection.
+  + Updated translations.
+
+---

Old:

  gnome-calendar-3.20.1.tar.xz

New:

  gnome-calendar-3.20.2.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.vB4QRL/_old  2016-05-12 09:33:43.0 +0200
+++ /var/tmp/diff_new_pack.vB4QRL/_new  2016-05-12 09:33:43.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-calendar
-Version:3.20.1
+Version:3.20.2
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0+

++ gnome-calendar-3.20.1.tar.xz -> gnome-calendar-3.20.2.tar.xz ++
 3589 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2016-04-17 Thread h_root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2016-04-17 22:17:21

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2016-03-29 14:41:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2016-04-17 22:17:23.0 +0200
@@ -1,0 +2,10 @@
+Thu Apr 14 10:26:06 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.20.1:
+  + Make Year view span multiple columns.
+  + Fix issue on the Calendars dialog.
+  + Fix crash on non GNOME Shell environments.
+  + Fix untranslated strings.
+  + Updated translations.
+
+---

Old:

  gnome-calendar-3.20.0.tar.xz

New:

  gnome-calendar-3.20.1.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.XqD4JA/_old  2016-04-17 22:17:24.0 +0200
+++ /var/tmp/diff_new_pack.XqD4JA/_new  2016-04-17 22:17:24.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-calendar
-Version:3.20.0
+Version:3.20.1
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0+
@@ -31,7 +31,7 @@
 BuildRequires:  pkgconfig(glib-2.0) >= 2.43.4
 BuildRequires:  pkgconfig(gmodule-export-2.0)
 BuildRequires:  pkgconfig(goa-1.0) >= 3.2.0
-BuildRequires:  pkgconfig(gtk+-3.0) >= 3.15.4
+BuildRequires:  pkgconfig(gtk+-3.0) >= 3.19.1
 BuildRequires:  pkgconfig(libecal-1.2) >= 3.13.90
 BuildRequires:  pkgconfig(libedataserver-1.2) >= 3.17.1
 BuildRequires:  pkgconfig(libical) >= 1.0

++ gnome-calendar-3.20.0.tar.xz -> gnome-calendar-3.20.1.tar.xz ++
 4518 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2016-03-29 Thread h_root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2016-03-29 14:41:23

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2015-12-24 12:17:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2016-03-29 14:41:25.0 +0200
@@ -1,0 +2,70 @@
+Tue Mar 22 09:46:59 UTC 2016 - dims...@opensuse.org
+
+- Update to version 3.20.0:
+  + Updated translations.
+
+---
+Tue Mar 15 10:38:32 UTC 2016 - dims...@opensuse.org
+
+- Update to version 3.19.92:
+  + Don't attempt to update read-only events.
+  + Timezone handling improvements.
+  + Fix crashes when no end date is passed.
+  + Improved week numbers in Year View.
+  + Make year view respect Shell's 'show-weeknumber' setting.
+  + Change month when keynav moves the previous/next month.
+  + Improve month view drawing.
+  + Draw a background to the selected days in month view.
+  + Respect 12/24h hour format.
+  + Fade out past events.
+  + Smaller code fixes and updates.
+  + Updated translations.
+
+---
+Thu Mar  3 13:32:50 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.19.91:
+  + Fixed tons of issues with timezones.
+  + Style fixes.
+  + Permanently remove the deleted event when closing the window.
+  + Show start time of event when it's a timed event.
+  + Updated translations.
+
+---
+Tue Feb 16 22:57:08 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.19.90:
+  + Many classes are now final classes.
+  + Added visual clues for days with events on Year View.
+  + Renamed icon to match the application id.
+  + All interface elements that shows the calendar color are now
+updated accordingly.
+  + A huge rework on Calendar internals.
+  + Improved the quick add popover.
+  + Added a keyboard shortcuts window.
+  + Updated translations.
+
+---
+Thu Jan 21 10:40:19 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.19.4:
+  + Code cleanups.
+  + Use CSS names on classes.
+  + Add kudos.
+  + Make month view lines stronger.
+  + Fix week number in year view.
+  + Updated translations.
+
+---
+Thu Dec 24 03:19:03 UTC 2015 - damjanovic@gmail.com
+
+- Update to version 3.19.3:
+  + Window: split arrow buttons from Today button.
+  + Create event popover: swap buttons' position.
+  + Project: remove OnlyShowIn from desktop file.
+  + Updated translations.
+- Drop gnome-calendar-symbolic-icon.patch; fixed upstream.
+- Drop gnome-common BuildRequires and call to autogen.sh, as we no
+  longer carry any patches.
+
+---

Old:

  gnome-calendar-3.18.2.1.tar.xz
  gnome-calendar-symbolic-icon.patch

New:

  gnome-calendar-3.20.0.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.ludyZ1/_old  2016-03-29 14:41:26.0 +0200
+++ /var/tmp/diff_new_pack.ludyZ1/_new  2016-03-29 14:41:26.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-calendar
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -17,26 +17,22 @@
 
 
 Name:   gnome-calendar
-Version:3.18.2.1
+Version:3.20.0
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0+
 Group:  Productivity/Office/Organizers
 Url:https://wiki.gnome.org/Design/Apps/Calendar
-Source: 
http://download.gnome.org/sources/gnome-calendar/3.18/%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM gnome-calendar-symbolic-icon.patch zai...@opensuse.org -- 
Add a symbolic icon.
-Patch0: gnome-calendar-symbolic-icon.patch
+Source: 
http://download.gnome.org/sources/gnome-calendar/3.20/%{name}-%{version}.tar.xz
 BuildRequires:  desktop-file-utils
-# Only needed for patch0
-BuildRequires:  gnome-common
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  intltool
 BuildRequires:  pkgconfig(gio-2.0) >= 2.43.2
-BuildRequires:  pkgconfig(glib-2.0) >= 2.43.2
+BuildRequires:  pkgconfig(glib-2.0) >= 2.43.4
 BuildRequires:  pkgconfig(gmod

commit gnome-calendar for openSUSE:Factory

2015-12-24 Thread h_root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2015-12-24 12:17:38

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2015-11-06 00:04:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2015-12-24 12:17:48.0 +0100
@@ -1,0 +2,15 @@
+Wed Dec 23 20:42:17 UTC 2015 - dims...@opensuse.org
+
+- Update to version 3.18.2.1:
+  + Revert string freeze break.
+
+---
+Wed Dec 23 15:17:51 UTC 2015 - dims...@opensuse.org
+
+- Update to version 3.18.2:
+  + Remove OnlyShowIn from desktop file.
+  + Bugs fixed: bgo#758730, bgo#756412, bgo#749337, bgo#755910,
+bgo#757931, bgo#758391.
+  + Updated translations.
+
+---

Old:

  gnome-calendar-3.18.1.tar.xz

New:

  gnome-calendar-3.18.2.1.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.AceUjV/_old  2015-12-24 12:17:50.0 +0100
+++ /var/tmp/diff_new_pack.AceUjV/_new  2015-12-24 12:17:50.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-calendar
-Version:3.18.1
+Version:3.18.2.1
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0+

++ gnome-calendar-3.18.1.tar.xz -> gnome-calendar-3.18.2.1.tar.xz ++
 2169 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2015-11-05 Thread h_root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2015-11-06 00:04:17

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2015-10-26 12:48:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2015-11-06 00:04:30.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov  4 13:04:25 UTC 2015 - zai...@opensuse.org
+
+- Add gnome-calendar-symbolic-icon.patch: Add symbolic icon.
+
+---

New:

  gnome-calendar-symbolic-icon.patch



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.nySC5v/_old  2015-11-06 00:04:31.0 +0100
+++ /var/tmp/diff_new_pack.nySC5v/_new  2015-11-06 00:04:31.0 +0100
@@ -24,7 +24,11 @@
 Group:  Productivity/Office/Organizers
 Url:https://wiki.gnome.org/Design/Apps/Calendar
 Source: 
http://download.gnome.org/sources/gnome-calendar/3.18/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM gnome-calendar-symbolic-icon.patch zai...@opensuse.org -- 
Add a symbolic icon.
+Patch0: gnome-calendar-symbolic-icon.patch
 BuildRequires:  desktop-file-utils
+# Only needed for patch0
+BuildRequires:  gnome-common
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  intltool
 BuildRequires:  pkgconfig(gio-2.0) >= 2.43.2
@@ -53,8 +57,11 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
 
 %build
+# Needed for patch0
+NOCONFIGURE=1 ./autogen.sh
 %configure --disable-static
 make %{?_smp_mflags}
 
@@ -84,7 +91,7 @@
 %{_datadir}/dbus-1/services/org.gnome.Calendar.service
 %{_datadir}/glib-2.0/schemas/org.gnome.calendar.enums.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.calendar.gschema.xml
-%{_datadir}/icons/hicolor/*/apps/*.png
+%{_datadir}/icons/hicolor/*/apps/*.*
 
 %files -n gnome-shell-search-provider-gnome-calendar
 %defattr(-,root,root)

++ gnome-calendar-symbolic-icon.patch ++
From 0ab11b8e283a0ca1a0689d43173d66081079c349 Mon Sep 17 00:00:00 2001
From: Jakub Steiner 
Date: Wed, 23 Sep 2015 18:14:18 +0200
Subject: icons: provide app symbolic

- provide a symbolic variant of the app icon, mainly
  for the HighContrast theme (and shell's top bar).
---
 data/icons/Makefile.am |  1 +
 ...color_apps_symbolic_gnome-calendar-symbolic.svg | 28 ++
 2 files changed, 29 insertions(+)
 create mode 100644 data/icons/hicolor_apps_symbolic_gnome-calendar-symbolic.svg

diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am
index 58ecca8..210acf6 100644
--- a/data/icons/Makefile.am
+++ b/data/icons/Makefile.am
@@ -12,6 +12,7 @@ public_icons = \
hicolor_apps_48x48_gnome-calendar.png \
hicolor_apps_256x256_gnome-calendar.png \
hicolor_apps_512x512_gnome-calendar.png \
+  hicolor_apps_symbolic_gnome-calendar-symbolic.svg \
$(NULL)
 
 noinst_DATA = \
diff --git a/data/icons/hicolor_apps_symbolic_gnome-calendar-symbolic.svg 
b/data/icons/hicolor_apps_symbolic_gnome-calendar-symbolic.svg
new file mode 100644
index 000..09ae6af
--- /dev/null
+++ b/data/icons/hicolor_apps_symbolic_gnome-calendar-symbolic.svg
@@ -0,0 +1,28 @@
+
+
+
+
+  
+
+  
+image/svg+xml
+
+Gnome Symbolic Icon Theme
+  
+
+  
+  
+
+  
+  Gnome Symbolic Icon Theme
+  
+
+  
+
+  
+  
+
+
+
+  
+
-- 
cgit v0.11.2




commit gnome-calendar for openSUSE:Factory

2015-10-26 Thread h_root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2015-10-26 12:47:59

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2015-10-06 16:24:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2015-10-26 12:48:00.0 +0100
@@ -1,0 +2,11 @@
+Sat Oct 17 06:09:33 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Updated translations.
+
+---
+Mon Oct  5 16:49:24 UTC 2015 - zai...@opensuse.org
+
+- Own %dir %{_datadir}/appdata for openSUSE Leap 42.1.
+
+---

Old:

  gnome-calendar-3.18.0.tar.xz

New:

  gnome-calendar-3.18.1.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.rCqwdF/_old  2015-10-26 12:48:01.0 +0100
+++ /var/tmp/diff_new_pack.rCqwdF/_new  2015-10-26 12:48:01.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-calendar
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0+
@@ -78,6 +78,8 @@
 %doc AUTHORS ChangeLog README COPYING NEWS THANKS
 %{_bindir}/gnome-calendar
 %{_datadir}/applications/org.gnome.Calendar.desktop
+# Own dir for openSUSE Leap 42.1
+%dir %{_datadir}/appdata
 %{_datadir}/appdata/org.gnome.Calendar.appdata.xml
 %{_datadir}/dbus-1/services/org.gnome.Calendar.service
 %{_datadir}/glib-2.0/schemas/org.gnome.calendar.enums.xml

++ gnome-calendar-3.18.0.tar.xz -> gnome-calendar-3.18.1.tar.xz ++
 4285 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2015-10-06 Thread h_root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2015-10-06 16:24:09

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2015-05-18 21:36:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2015-10-06 16:24:10.0 +0200
@@ -1,0 +2,44 @@
+Mon Sep 21 14:47:10 UTC 2015 - dims...@opensuse.org
+
+- Update to version 3.18.0:
+  + Updated translations.
+
+---
+Mon Sep 14 19:28:52 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.17.92:
+  + Updated translations.
+
+---
+Wed Aug 19 21:02:23 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.17.90:
+  + Updated translations.
+
+---
+Tue Jul 21 10:07:05 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.17.4:
+  + Fixed GNOME Calendar's category.
+  + Added initial keyboard navigation for Month View.
+  + Various code cleanups and fixes.
+  + Updated translations.
+
+---
+Thu Jun 25 19:28:32 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.17.3:
+  + Misc bugfixes (bgo#751206, bgo#751209, bgo#751211, bgo#751244).
+  + Updated translations.
+
+---
+Wed May 27 07:59:43 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.17.2:
+  + Added a calendar management dialog for creating, updating and
+deleting calendars.
+  + When adding a new event, use current date as event start.
+  + Updated translations.
+- Add pkgconfig(goa-1.0) BuildRequires: New dependency.
+
+---

Old:

  gnome-calendar-3.16.2.tar.xz

New:

  gnome-calendar-3.18.0.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.y8TrCV/_old  2015-10-06 16:24:11.0 +0200
+++ /var/tmp/diff_new_pack.y8TrCV/_new  2015-10-06 16:24:11.0 +0200
@@ -17,23 +17,24 @@
 
 
 Name:   gnome-calendar
-Version:3.16.2
+Version:3.18.0
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0+
 Group:  Productivity/Office/Organizers
 Url:https://wiki.gnome.org/Design/Apps/Calendar
-Source: 
http://download.gnome.org/sources/gnome-calendar/3.16/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gnome-calendar/3.18/%{name}-%{version}.tar.xz
 BuildRequires:  desktop-file-utils
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  intltool
 BuildRequires:  pkgconfig(gio-2.0) >= 2.43.2
 BuildRequires:  pkgconfig(glib-2.0) >= 2.43.2
 BuildRequires:  pkgconfig(gmodule-export-2.0)
+BuildRequires:  pkgconfig(goa-1.0) >= 3.2.0
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.14.0
 BuildRequires:  pkgconfig(libecal-1.2) >= 3.5.3
-BuildRequires:  pkgconfig(libedataserver-1.2) >= 3.5.3
-BuildRequires:  pkgconfig(libical) >= 0.43
+BuildRequires:  pkgconfig(libedataserver-1.2) >= 3.17.1
+BuildRequires:  pkgconfig(libical) >= 1.0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

++ gnome-calendar-3.16.2.tar.xz -> gnome-calendar-3.18.0.tar.xz ++
 30074 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2015-05-18 21:36:34

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2015-04-23 07:57:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2015-05-18 21:36:35.0 +0200
@@ -1,0 +2,7 @@
+Tue May 12 10:53:33 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Fix date related bug.
+  + Fix app relaunching bug.
+
+---

Old:

  gnome-calendar-3.16.1.tar.xz

New:

  gnome-calendar-3.16.2.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.no6kzX/_old  2015-05-18 21:36:36.0 +0200
+++ /var/tmp/diff_new_pack.no6kzX/_new  2015-05-18 21:36:36.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-calendar
-Version:3.16.1
+Version:3.16.2
 Release:0
 Summary:A calendar application for GNOME
 License:GPL-3.0+

++ gnome-calendar-3.16.1.tar.xz -> gnome-calendar-3.16.2.tar.xz ++
 27863 lines of diff (skipped)




commit gnome-calendar for openSUSE:Factory

2015-04-22 Thread h_root
Hello community,

here is the log from the commit of package gnome-calendar for openSUSE:Factory 
checked in at 2015-04-23 07:57:28

Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calendar.new (New)


Package is "gnome-calendar"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes
2015-03-30 19:30:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calendar.new/gnome-calendar.changes   
2015-04-23 07:57:30.0 +0200
@@ -1,0 +2,7 @@
+Thu Apr 16 07:34:50 UTC 2015 - dims...@opensuse.org
+
+- Update to version 3.16.1:
+  + Block creation on nameless events.
+  + Updated translations.
+
+---

Old:

  gnome-calendar-3.16.0.tar.xz

New:

  gnome-calendar-3.16.1.tar.xz



Other differences:
--
++ gnome-calendar.spec ++
--- /var/tmp/diff_new_pack.VuMDL5/_old  2015-04-23 07:57:31.0 +0200
+++ /var/tmp/diff_new_pack.VuMDL5/_new  2015-04-23 07:57:31.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-calendar
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -15,20 +15,21 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   gnome-calendar
-Version:3.16.0
+Version:3.16.1
 Release:0
-License:GPL-3.0+
 Summary:A calendar application for GNOME
-Url:https://wiki.gnome.org/Design/Apps/Calendar
+License:GPL-3.0+
 Group:  Productivity/Office/Organizers
+Url:https://wiki.gnome.org/Design/Apps/Calendar
 Source: 
http://download.gnome.org/sources/gnome-calendar/3.16/%{name}-%{version}.tar.xz
-BuildRequires:  intltool
 BuildRequires:  desktop-file-utils
 BuildRequires:  hicolor-icon-theme
-BuildRequires:  pkgconfig(gmodule-export-2.0)
+BuildRequires:  intltool
 BuildRequires:  pkgconfig(gio-2.0) >= 2.43.2
 BuildRequires:  pkgconfig(glib-2.0) >= 2.43.2
+BuildRequires:  pkgconfig(gmodule-export-2.0)
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.14.0
 BuildRequires:  pkgconfig(libecal-1.2) >= 3.5.3
 BuildRequires:  pkgconfig(libedataserver-1.2) >= 3.5.3

++ gnome-calendar-3.16.0.tar.xz -> gnome-calendar-3.16.1.tar.xz ++
 31018 lines of diff (skipped)