Hello community,

here is the log from the commit of package akonadiconsole for 
openSUSE:Leap:15.2 checked in at 2020-01-17 12:05:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/akonadiconsole (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.akonadiconsole.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "akonadiconsole"

Fri Jan 17 12:05:06 2020 rev:34 rq:764686 version:19.12.1

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/akonadiconsole/akonadiconsole.changes  
2020-01-15 14:46:38.713262451 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.akonadiconsole.new.26092/akonadiconsole.changes   
    2020-01-17 12:05:09.132602109 +0100
@@ -1,0 +2,14 @@
+Tue Jan 14 15:42:10 UTC 2020 - Christophe Giboudeaux <[email protected]>
+
+- Drop the unneeded python2 requirement.
+
+-------------------------------------------------------------------
+Tue Jan  7 10:08:50 UTC 2020 - Christophe Giboudeaux <[email protected]>
+
+- Update to 19.12.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/releases/19.12.1
+- No code change since 19.12.0
+
+-------------------------------------------------------------------
@@ -7 +21 @@
-  * https://www.kde.org/announcements/releases/19.12.0
+  * https://www.kde.org/announcements/releases/19.12

Old:
----
  akonadiconsole-19.12.0.tar.xz
  akonadiconsole-19.12.0.tar.xz.sig

New:
----
  akonadiconsole-19.12.1.tar.xz
  akonadiconsole-19.12.1.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ akonadiconsole.spec ++++++
--- /var/tmp/diff_new_pack.vlov58/_old  2020-01-17 12:05:09.428602238 +0100
+++ /var/tmp/diff_new_pack.vlov58/_new  2020-01-17 12:05:09.432602241 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package akonadiconsole
 #
-# Copyright (c) 2019 SUSE LLC
+# 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
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:           akonadiconsole
-Version:        19.12.0
+Version:        19.12.1
 Release:        0
 Summary:        Management and debugging console for akonadi
 License:        GPL-2.0-or-later AND LGPL-2.1-or-later
@@ -36,7 +36,6 @@
 BuildRequires:  fdupes
 BuildRequires:  gettext-devel
 BuildRequires:  libxapian-devel
-BuildRequires:  python-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  cmake(KF5Akonadi)
 BuildRequires:  cmake(KF5AkonadiContact)

++++++ akonadiconsole-19.12.0.tar.xz -> akonadiconsole-19.12.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadiconsole-19.12.0/CMakeLists.txt 
new/akonadiconsole-19.12.1/CMakeLists.txt
--- old/akonadiconsole-19.12.0/CMakeLists.txt   2019-12-03 08:54:29.000000000 
+0100
+++ new/akonadiconsole-19.12.1/CMakeLists.txt   2019-12-29 10:00:00.000000000 
+0100
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.5)
-set(KDEPIM_VERSION_NUMBER "5.13.0")
+set(KDEPIM_VERSION_NUMBER "5.13.1")
 project(akonadiconsole VERSION ${KDEPIM_VERSION_NUMBER})
 
 set(KF5_MIN_VERSION "5.63.0")
@@ -33,23 +33,23 @@
 if(DEFINED KDEPIM_DEV_VERSION)
     set(KDEPIM_DEV_VERSION " ${KDEPIM_DEV_VERSION}")
 endif()
-set(KDE_APPLICATIONS_VERSION "19.12.0")
+set(KDE_APPLICATIONS_VERSION "19.12.1")
 
 set(KDEPIM_VERSION "${KDEPIM_VERSION_NUMBER}${KDEPIM_DEV_VERSION} 
(${KDE_APPLICATIONS_VERSION})")
 
 set(KDEPIM_LIB_VERSION "${KDEPIM_VERSION_NUMBER}")
 set(KDEPIM_LIB_SOVERSION "5")
 
-set(AKONADI_CONTACT_VERSION "5.13.0")
-set(CALENDARSUPPORT_LIB_VERSION_LIB "5.13.0")
-set(AKONADI_VERSION "5.13.0")
-set(AKONADI_SEARCH_VERSION "5.13.0")
+set(AKONADI_CONTACT_VERSION "5.13.1")
+set(CALENDARSUPPORT_LIB_VERSION_LIB "5.13.1")
+set(AKONADI_VERSION "5.13.1")
+set(AKONADI_SEARCH_VERSION "5.13.1")
 
 set(QT_REQUIRED_VERSION "5.11.0")
 find_package(Qt5 ${QT_REQUIRED_VERSION} CONFIG REQUIRED Widgets DBus Sql Test)
-set(MESSAGELIB_LIB_VERSION_LIB "5.13.0")
-set(LIBKDEPIM_LIB_VERSION_LIB "5.13.0")
-set(KMIME_LIB_VERSION "5.13.0")
+set(MESSAGELIB_LIB_VERSION_LIB "5.13.1")
+set(LIBKDEPIM_LIB_VERSION_LIB "5.13.1")
+set(KMIME_LIB_VERSION "5.13.1")
 
 # Find KF5 package
 find_package(KF5Completion ${KF5_MIN_VERSION} CONFIG REQUIRED)



Reply via email to