Hello community, here is the log from the commit of package kdbusaddons for openSUSE:Factory checked in at 2018-01-22 15:59:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdbusaddons (Old) and /work/SRC/openSUSE:Factory/.kdbusaddons.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdbusaddons" Mon Jan 22 15:59:17 2018 rev:49 rq:566666 version:5.42.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kdbusaddons/kdbusaddons.changes 2018-01-09 14:41:40.732195988 +0100 +++ /work/SRC/openSUSE:Factory/.kdbusaddons.new/kdbusaddons.changes 2018-01-22 15:59:22.763662123 +0100 @@ -1,0 +2,12 @@ +Tue Jan 16 22:50:15 CET 2018 - [email protected] + +- Update to 5.42.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/kde-frameworks-5.42.0.php +- Changes since 5.41.0: + * Remove obsolete reviewboardrc file + * Fix absolute path detection for cmake 3.5 on Linux + * Add cmake function 'kdbusaddons_generate_dbus_service_file' + +------------------------------------------------------------------- Old: ---- kdbusaddons-5.41.0.tar.xz New: ---- kdbusaddons-5.42.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdbusaddons.spec ++++++ --- /var/tmp/diff_new_pack.NV00hv/_old 2018-01-22 15:59:23.567624498 +0100 +++ /var/tmp/diff_new_pack.NV00hv/_new 2018-01-22 15:59:23.571624311 +0100 @@ -1,7 +1,7 @@ # # spec file for package kdbusaddons # -# 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 @@ -18,13 +18,13 @@ %bcond_without lang %define lname libKF5DBusAddons5 -%define _tar_path 5.41 +%define _tar_path 5.42 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')} Name: kdbusaddons -Version: 5.41.0 +Version: 5.42.0 Release: 0 BuildRequires: cmake >= 3.0 BuildRequires: extra-cmake-modules >= %{_kf5_bugfix_version} ++++++ kdbusaddons-5.41.0.tar.xz -> kdbusaddons-5.42.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbusaddons-5.41.0/.reviewboardrc new/kdbusaddons-5.42.0/.reviewboardrc --- old/kdbusaddons-5.41.0/.reviewboardrc 2017-12-02 21:03:14.000000000 +0100 +++ new/kdbusaddons-5.42.0/.reviewboardrc 1970-01-01 01:00:00.000000000 +0100 @@ -1,4 +0,0 @@ -REVIEWBOARD_URL = "https://git.reviewboard.kde.org" -REPOSITORY = 'git://anongit.kde.org/kdbusaddons' -BRANCH = 'master' -TARGET_GROUPS = 'kdeframeworks' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbusaddons-5.41.0/CMakeLists.txt new/kdbusaddons-5.42.0/CMakeLists.txt --- old/kdbusaddons-5.41.0/CMakeLists.txt 2017-12-02 21:03:14.000000000 +0100 +++ new/kdbusaddons-5.42.0/CMakeLists.txt 2018-01-07 17:16:52.000000000 +0100 @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.0) -set(KF5_VERSION "5.41.0") # handled by release scripts +set(KF5_VERSION "5.42.0") # handled by release scripts project(KDBusAddons VERSION ${KF5_VERSION}) include(FeatureSummary) -find_package(ECM 5.41.0 NO_MODULE) +find_package(ECM 5.42.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://projects.kde.org/projects/kdesupport/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) @@ -73,6 +73,8 @@ install(FILES "${CMAKE_CURRENT_BINARY_DIR}/KF5DBusAddonsConfig.cmake" "${CMAKE_CURRENT_BINARY_DIR}/KF5DBusAddonsConfigVersion.cmake" + "KF5DBusAddonsMacros.cmake" + "KF5dbus.service.in" DESTINATION "${CMAKECONFIG_INSTALL_DIR}" COMPONENT Devel ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbusaddons-5.41.0/KF5DBusAddonsConfig.cmake.in new/kdbusaddons-5.42.0/KF5DBusAddonsConfig.cmake.in --- old/kdbusaddons-5.41.0/KF5DBusAddonsConfig.cmake.in 2017-12-02 21:03:14.000000000 +0100 +++ new/kdbusaddons-5.42.0/KF5DBusAddonsConfig.cmake.in 2018-01-07 17:16:52.000000000 +0100 @@ -6,3 +6,4 @@ include("${CMAKE_CURRENT_LIST_DIR}/KF5DBusAddonsTargets.cmake") @PACKAGE_INCLUDE_QCHTARGETS@ +include("${CMAKE_CURRENT_LIST_DIR}/KF5DBusAddonsMacros.cmake") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbusaddons-5.41.0/KF5DBusAddonsMacros.cmake new/kdbusaddons-5.42.0/KF5DBusAddonsMacros.cmake --- old/kdbusaddons-5.41.0/KF5DBusAddonsMacros.cmake 1970-01-01 01:00:00.000000000 +0100 +++ new/kdbusaddons-5.42.0/KF5DBusAddonsMacros.cmake 2018-01-07 17:16:52.000000000 +0100 @@ -0,0 +1,40 @@ +set(_KDBUSADDONSDIR ${CMAKE_CURRENT_LIST_DIR}) + +# +# kdbusaddons_generate_dbus_service_file(EXECUTABLE NAME PATH) +# +# This function generates a D-Bus service file and installs it +# into the specified destination. +# +# On Windows the path is not used because D-Bus service executables +# are always installed in the same directory as dbus-daemon. +# +# Parameters: +# +# EXECUTABLE - name of the executable +# NAME - service path in D-Bus +# PATH - path to install the service file +# +# Example: +# +# kdbusaddons_generate_dbus_service_file(kded5 org.kde.kded5 ${KDE_INSTALL_FULL_BINDIR}) +# +function(KDBUSADDONS_GENERATE_DBUS_SERVICE_FILE _executable _name _path) + set(_file ${CMAKE_CURRENT_BINARY_DIR}/${_name}.service) + set(_template ${_KDBUSADDONSDIR}/KF5dbus.service.in) + set(NAME ${_name}) + if(WIN32) + set(EXEC ${_executable}) + else() + if(IS_ABSOLUTE ${_path}) + set(EXEC ${_path}/${_executable}) + else() + message(FATAL_ERROR "Path ${_path} is not absolute") + endif() + endif() + if(NOT EXISTS ${_file}) + message(STATUS "generating ${_file} from ${_template}") + endif() + configure_file(${_template} ${_file}) + install(FILES ${_file} DESTINATION ${KDE_INSTALL_DBUSSERVICEDIR}) +endfunction() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbusaddons-5.41.0/KF5dbus.service.in new/kdbusaddons-5.42.0/KF5dbus.service.in --- old/kdbusaddons-5.41.0/KF5dbus.service.in 1970-01-01 01:00:00.000000000 +0100 +++ new/kdbusaddons-5.42.0/KF5dbus.service.in 2018-01-07 17:16:52.000000000 +0100 @@ -0,0 +1,3 @@ +[D-BUS Service] +Name=@NAME@ +Exec=@EXEC@ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbusaddons-5.41.0/po/gl/kdbusaddons5_qt.po new/kdbusaddons-5.42.0/po/gl/kdbusaddons5_qt.po --- old/kdbusaddons-5.41.0/po/gl/kdbusaddons5_qt.po 2017-12-02 21:03:14.000000000 +0100 +++ new/kdbusaddons-5.42.0/po/gl/kdbusaddons5_qt.po 2018-01-07 17:16:52.000000000 +0100 @@ -38,8 +38,7 @@ #, qt-format msgctxt "main|" msgid "Application %1 could not be found using service %2 and path %3." -msgstr "" -"Non foi posÃbel atopar o aplicativo %1 mediante o servizo %2 e ruta %3." +msgstr "Non se puido atopar o aplicativo %1 mediante o servizo %2 e ruta %3." #: tools/kquitapp/kquitapp.cpp:63 #, qt-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbusaddons-5.41.0/po/id/kdbusaddons5_qt.po new/kdbusaddons-5.42.0/po/id/kdbusaddons5_qt.po --- old/kdbusaddons-5.41.0/po/id/kdbusaddons5_qt.po 2017-12-02 21:03:14.000000000 +0100 +++ new/kdbusaddons-5.42.0/po/id/kdbusaddons5_qt.po 2018-01-07 17:16:52.000000000 +0100 @@ -2,6 +2,7 @@ # Copyright (C) 2010 This_file_is_part_of_KDE # This file is distributed under the same license as the kquitapp package. # Andhika Padmawan <[email protected]>, 2010. +# Wantoyo <[email protected]>, 2017. # msgid "" msgstr "" @@ -12,6 +13,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Lokalize 2.0\n" "X-Qt-Contexts: true\n" #: tools/kquitapp/kquitapp.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbusaddons-5.41.0/po/zh_CN/kdbusaddons5_qt.po new/kdbusaddons-5.42.0/po/zh_CN/kdbusaddons5_qt.po --- old/kdbusaddons-5.41.0/po/zh_CN/kdbusaddons5_qt.po 2017-12-02 21:03:14.000000000 +0100 +++ new/kdbusaddons-5.42.0/po/zh_CN/kdbusaddons5_qt.po 2018-01-07 17:16:52.000000000 +0100 @@ -4,7 +4,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2016-11-19 20:11+0100\n" -"PO-Revision-Date: 2017-07-13 11:17-0400\n" +"PO-Revision-Date: 2018-01-05 06:38-0500\n" "Last-Translator: guoyunhebrave <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -14,6 +14,12 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: crowdin.com\n" "X-Qt-Contexts: true\n" +"X-Qt-Contexts: true\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: crowdin.com\n" +"X-Crowdin-Project: kdeorg\n" +"X-Crowdin-Language: zh-CN\n" +"X-Crowdin-File: /kf5-trunk/messages/frameworks/kdbusaddons5_qt.pot\n" #: tools/kquitapp/kquitapp.cpp:31 msgctxt "main|"
