Hello community,
here is the log from the commit of package kaccounts-integration for
openSUSE:Factory checked in at 2016-05-31 12:15:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kaccounts-integration (Old)
and /work/SRC/openSUSE:Factory/.kaccounts-integration.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kaccounts-integration"
Changes:
--------
---
/work/SRC/openSUSE:Factory/kaccounts-integration/kaccounts-integration.changes
2016-03-26 15:13:21.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.kaccounts-integration.new/kaccounts-integration.changes
2016-05-31 12:15:47.000000000 +0200
@@ -1,0 +2,24 @@
+Sat May 7 10:14:35 UTC 2016 - [email protected]
+
+- Update to KDE Applications 16.04.1
+ * KDE Applications 16.04.1
+ * https://www.kde.org/announcements/announce-applications-16.04.1.php
+
+
+-------------------------------------------------------------------
+Sun Apr 17 05:54:56 UTC 2016 - [email protected]
+
+- Update to KDE Applications 16.04.0
+ * KDE Applications 16.04.0
+ * https://www.kde.org/announcements/announce-applications-16.04.0.php
+
+
+-------------------------------------------------------------------
+Mon Apr 11 06:32:38 UTC 2016 - [email protected]
+
+- Update to KDE Applications 16.03.90
+ * KDE Applications 16.04.0 RC
+ * https://www.kde.org/announcements/announce-applications-16.04-rc.php
+
+
+-------------------------------------------------------------------
Old:
----
kaccounts-integration-15.12.3.tar.xz
New:
----
kaccounts-integration-16.04.1.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kaccounts-integration.spec ++++++
--- /var/tmp/diff_new_pack.ECm14R/_old 2016-05-31 12:15:48.000000000 +0200
+++ /var/tmp/diff_new_pack.ECm14R/_new 2016-05-31 12:15:48.000000000 +0200
@@ -17,7 +17,7 @@
Name: kaccounts-integration
-Version: 15.12.3
+Version: 16.04.1
Release: 0
Summary: KDE Accounts Providers
License: GPL-2.0+
@@ -38,6 +38,7 @@
BuildRequires: kwallet-devel
BuildRequires: kwidgetsaddons-devel
BuildRequires: libaccounts-qt5-devel
+BuildRequires: libaccounts-glib-devel
BuildRequires: libsignon-qt5-devel
BuildRequires: pkgconfig
BuildRequires: pkgconfig(Qt5Core) >= 5.2.0
++++++ kaccounts-integration-15.12.3.tar.xz ->
kaccounts-integration-16.04.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kaccounts-integration-15.12.3/CMakeLists.txt
new/kaccounts-integration-16.04.1/CMakeLists.txt
--- old/kaccounts-integration-15.12.3/CMakeLists.txt 2016-03-10
00:26:36.000000000 +0100
+++ new/kaccounts-integration-16.04.1/CMakeLists.txt 2016-04-27
21:12:28.000000000 +0200
@@ -8,20 +8,22 @@
enable_testing()
-set(KDE_APPLICATIONS_VERSION_MAJOR "15")
-set(KDE_APPLICATIONS_VERSION_MINOR "12")
-set(KDE_APPLICATIONS_VERSION_MICRO "3")
+set(KDE_APPLICATIONS_VERSION_MAJOR "16")
+set(KDE_APPLICATIONS_VERSION_MINOR "04")
+set(KDE_APPLICATIONS_VERSION_MICRO "1")
set(KACCOUNTS_VERSION
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
set(KACCOUNTS_SOVERSION "1")
set(REQUIRED_QT_VERSION "5.2.0")
set(REQUIRED_KF5_VERSION "5.4.0")
-set(ACCOUNTSQT_DEP_VERSION "1.10")
+set(ACCOUNTSQT_DEP_VERSION "1.13")
set(SIGNONQT_DEP_VERSION "8.55")
+set(ACCOUNTSGLIB_DEP_VERSION "1.21")
find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core Widgets)
find_package(KF5 ${REQUIRED_KF5_VERSION} REQUIRED KCMUtils I18n CoreAddons
DBusAddons Declarative)
find_package(AccountsQt5 ${ACCOUNTSQT_DEP_VERSION} REQUIRED CONFIG)
find_package(SignOnQt5 ${SIGNONQT_DEP_VERSION} REQUIRED CONFIG)
+find_package(LibAccountsGlib ${ACCOUNTSGLIB_DEP_VERSION} REQUIRED)
add_definitions (-fexceptions
-DQT_NO_KEYWORDS)
@@ -30,8 +32,8 @@
include(KDEInstallDirs)
include(KDECMakeSettings)
-include(KDEFrameworkCompilerSettings)
-include(KDECompilerSettings)
+include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
+include(KDECompilerSettings NO_POLICY_SCOPE)
include(ECMInstallIcons)
include(FeatureSummary)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kaccounts-integration-15.12.3/cmake/modules/FindLibAccountsGlib.cmake
new/kaccounts-integration-16.04.1/cmake/modules/FindLibAccountsGlib.cmake
--- old/kaccounts-integration-15.12.3/cmake/modules/FindLibAccountsGlib.cmake
1970-01-01 01:00:00.000000000 +0100
+++ new/kaccounts-integration-16.04.1/cmake/modules/FindLibAccountsGlib.cmake
2016-04-27 21:12:28.000000000 +0200
@@ -0,0 +1,20 @@
+find_package(PkgConfig REQUIRED)
+
+pkg_check_modules(PC_LIBACCOUNTS_GLIB libaccounts-glib)
+
+find_library(LIBACCOUNTSGLIB_LIBRARY NAMES accounts-glib
+ HINTS ${PC_LIBACCOUNTS_GLIB_LIBDIR}
${PC_LIBACCOUNTS_GLIB_LIBRARY_DIRS} )
+
+set(LIBACCOUNTSGLIB_LIBRARIES ${LIBACCOUNTSGLIB_LIBRARY})
+set(LIBACCOUNTSGLIB_FOUND ${PC_LIBACCOUNTS_GLIB_FOUND})
+
+string(ASCII ${PC_LIBACCOUNTS_GLIB_VERSION} LIBACCOUNTS_GLIB_VERSION_STRING)
+
+include(FindPackageHandleStandardArgs)
+
+find_package_handle_standard_args(LibAccountsGlib
+ FOUND_VAR LIBACCOUNTSGLIB_FOUND
+ REQUIRED_VARS LIBACCOUNTSGLIB_LIBRARY
+ VERSION_VAR PC_LIBACCOUNTS_GLIB_VERSION)
+
+mark_as_advanced(LIBACCOUNTSGLIB_LIBRARY)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kaccounts-integration-15.12.3/src/daemon/accounts.desktop
new/kaccounts-integration-16.04.1/src/daemon/accounts.desktop
--- old/kaccounts-integration-15.12.3/src/daemon/accounts.desktop
2016-03-10 00:26:36.000000000 +0100
+++ new/kaccounts-integration-16.04.1/src/daemon/accounts.desktop
2016-04-27 21:12:28.000000000 +0200
@@ -10,7 +10,6 @@
Name[el]=Λογαριασμοί
Name[en_GB]=Accounts
Name[es]=Cuentas
-Name[et]=Kontod
Name[fi]=Tilit
Name[fr]=Comptes
Name[gl]=Contas
@@ -47,7 +46,6 @@
Comment[el]=Διαχείριση λογαριασμών
Comment[en_GB]=Accounts management
Comment[es]=Gestión de cuentas
-Comment[et]=Kontode haldus
Comment[fi]=Tilienhallinta
Comment[fr]=Gestion des comptes
Comment[gl]=Xestión das contas
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kaccounts-integration-15.12.3/src/kcm_kaccounts.desktop
new/kaccounts-integration-16.04.1/src/kcm_kaccounts.desktop
--- old/kaccounts-integration-15.12.3/src/kcm_kaccounts.desktop 2016-03-10
00:26:36.000000000 +0100
+++ new/kaccounts-integration-16.04.1/src/kcm_kaccounts.desktop 2016-04-27
21:12:28.000000000 +0200
@@ -21,7 +21,6 @@
Name[el]=Διαδικτυακοί λογαριασμοί
Name[en_GB]=Online Accounts
Name[es]=Cuentas con conexión
-Name[et]=Võrgukontod
Name[fi]=Verkkotilit
Name[fr]=Comptes en ligne
Name[gl]=Contas de internet
@@ -50,7 +49,7 @@
Comment=Configure your internet accounts such as Google, Live, Owncloud
Comment[ar]=اضبط حساباتك على الإنترنت كغوغل، لايڤ وسحابتك "Owncloud"
-Comment[ast]=Configura les tos cuentes d'internet como Google, Hotmail,
Owncloud...
+Comment[ast]=Configura les tos cuentes d'internet como Google, Yahoo!,
Owncloud...
Comment[ca]=Configura els vostres comptes d'Internet com Google, Live, Owncloud
Comment[ca@valencia]=Configura els vostres comptes d'Internet com Google,
Live, Owncloud
Comment[cs]=Nastavte své webové účty jako např. Google, Live, Owncloud
@@ -59,7 +58,6 @@
Comment[el]=Διαμορφώστε τους διαδικτυακούς σας λογαριασμούς όπως Google, Live,
Owncloud
Comment[en_GB]=Configure your internet accounts such as Google, Live, Owncloud
Comment[es]=Configurar sus cuentas de Internet, como Google, Live y Owncloud
-Comment[et]=Oma internetikontode - Google, Live, Owncloud jne - seadistamine
Comment[fi]=Verkkotiliesi asetukset (esim. Google, Live, ownCloud)
Comment[fr]=Configurez vos comptes Internet tels que Google, Live, OwnCloud
Comment[gl]=Configurar as túas contas de internet como a de Google, Live ou
Owncloud.
@@ -71,7 +69,7 @@
Comment[pl]=Ustaw swoje konta internetowe, takie jak Google, Live, Owncloud
Comment[pt]=Configure as suas contas da Internet, como as do Google, Live,
Owncloud
Comment[pt_BR]=Configure suas contas na Internet, como Google, Live, Owncloud
-Comment[ro]=Configurați conturile Internet cum sînt Google, Live, Owncloud
+Comment[ro]=Configurați conturile Internet cum sunt Google, Live, Owncloud
Comment[ru]=Настройка учётных записей Google, Facebook, Jabber и других
Comment[sk]=Nastaviť vaše internetové účty ako Google, Live, Owncloud
Comment[sl]=Nastavite vaše internetne račune kot npr. Google, Live, Owncloud
@@ -97,7 +95,6 @@
X-KDE-Keywords[el]=Δίκτυο,Google,Live,ownCloud
X-KDE-Keywords[en_GB]=Network,Google,Live,ownCloud
X-KDE-Keywords[es]=Red,Google,Live,ownCloud
-X-KDE-Keywords[et]=Võrk,Google,Live,ownCloud
X-KDE-Keywords[fi]=Network,Verkko,Google,Live,ownCloud
X-KDE-Keywords[fr]=Réseau, Google, Live, OwnCloud
X-KDE-Keywords[gl]=Rede,Google,Live,ownCloud
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kaccounts-integration-15.12.3/src/lib/KAccountsMacros.cmake
new/kaccounts-integration-16.04.1/src/lib/KAccountsMacros.cmake
--- old/kaccounts-integration-15.12.3/src/lib/KAccountsMacros.cmake
2016-03-10 00:26:36.000000000 +0100
+++ new/kaccounts-integration-16.04.1/src/lib/KAccountsMacros.cmake
2016-04-27 21:12:28.000000000 +0200
@@ -1,13 +1,29 @@
function(kaccounts_add_provider provider_in_file)
+ if (NOT IS_ABSOLUTE "${provider_in_file}")
+ set(provider_in_file ${CMAKE_CURRENT_SOURCE_DIR}/${provider_in_file})
+ endif()
+
get_filename_component(provider_filename ${provider_in_file} NAME_WE)
set(provider_file
${CMAKE_CURRENT_BINARY_DIR}/${provider_filename}.provider)
- execute_process(COMMAND intltool-merge -x -u --no-translations
${provider_in_file} ${provider_file})
- install(FILES ${provider_file} DESTINATION ${ACCOUNTS_PROVIDERS_DIR})
+ execute_process(COMMAND intltool-merge -x -u --no-translations
${provider_in_file} ${provider_file} ERROR_VARIABLE intltool_error)
+ if(intltool_error)
+ message(FATAL_ERROR "error processing ${provider_in_file}:
${intltool_error}")
+ endif()
+ # The suffix must match whatever we set for $XDG_CURRENT_DESKTOP
+ install(FILES ${provider_file} DESTINATION ${ACCOUNTS_PROVIDERS_DIR}/kde/)
endfunction()
function(kaccounts_add_service service_file_in)
+ if (NOT IS_ABSOLUTE "${service_file_in}")
+ set(service_file_in ${CMAKE_CURRENT_SOURCE_DIR}/${service_file_in})
+ endif()
+
get_filename_component(service_filename ${service_file_in} NAME_WE)
set(service_file ${CMAKE_CURRENT_BINARY_DIR}/${service_filename}.service)
- execute_process(COMMAND intltool-merge -x -u --no-translations
${service_file_in} ${service_file})
- install(FILES ${service_file} DESTINATION ${ACCOUNTS_SERVICES_DIR})
+ execute_process(COMMAND intltool-merge -x -u --no-translations
${service_file_in} ${service_file} ERROR_VARIABLE intltool_error)
+ if(intltool_error)
+ message(FATAL_ERROR "error processing ${service_file_in}:
${intltool_error}")
+ endif()
+ # The suffix must match whatever we set for $XDG_CURRENT_DESKTOP
+ install(FILES ${service_file} DESTINATION ${ACCOUNTS_SERVICES_DIR}/kde/)
endfunction()