Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kpeople5 for openSUSE:Factory checked in at 2021-06-16 20:34:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kpeople5 (Old) and /work/SRC/openSUSE:Factory/.kpeople5.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kpeople5" Wed Jun 16 20:34:07 2021 rev:77 rq:899756 version:5.83.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kpeople5/kpeople5.changes 2021-05-10 15:37:26.854024457 +0200 +++ /work/SRC/openSUSE:Factory/.kpeople5.new.32437/kpeople5.changes 2021-06-16 20:35:45.123213470 +0200 @@ -1,0 +2,13 @@ +Sat Jun 5 11:59:07 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 5.83.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.83.0 +- Changes since 5.82.0: + * Expose PersonsSortFilterProxyModel header + * Fix DBus check + * Bump required CMake version to 3.16 + * Call ki18n_install() unconditionally + +------------------------------------------------------------------- Old: ---- kpeople-5.82.0.tar.xz kpeople-5.82.0.tar.xz.sig New: ---- kpeople-5.83.0.tar.xz kpeople-5.83.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kpeople5.spec ++++++ --- /var/tmp/diff_new_pack.02Mjbs/_old 2021-06-16 20:35:45.527214159 +0200 +++ /var/tmp/diff_new_pack.02Mjbs/_new 2021-06-16 20:35:45.527214159 +0200 @@ -17,14 +17,14 @@ %define rname kpeople -%define _tar_path 5.82 +%define _tar_path 5.83 # 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: %define _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')} %bcond_without lang Name: kpeople5 -Version: 5.82.0 +Version: 5.83.0 Release: 0 Summary: Library for access to contacts and identity holders License: LGPL-2.1-or-later ++++++ kpeople-5.82.0.tar.xz -> kpeople-5.83.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpeople-5.82.0/.gitignore new/kpeople-5.83.0/.gitignore --- old/kpeople-5.82.0/.gitignore 2021-05-01 14:38:28.000000000 +0200 +++ new/kpeople-5.83.0/.gitignore 2021-06-05 11:22:39.000000000 +0200 @@ -25,3 +25,4 @@ .clangd .idea /cmake-build* +.cache diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpeople-5.82.0/CMakeLists.txt new/kpeople-5.83.0/CMakeLists.txt --- old/kpeople-5.82.0/CMakeLists.txt 2021-05-01 14:38:28.000000000 +0200 +++ new/kpeople-5.83.0/CMakeLists.txt 2021-06-05 11:22:39.000000000 +0200 @@ -1,11 +1,11 @@ -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.82.0") # handled by release scripts -set(KF_DEP_VERSION "5.82.0") # handled by release scripts +set(KF_VERSION "5.83.0") # handled by release scripts +set(KF_DEP_VERSION "5.83.0") # handled by release scripts project (KPeople VERSION ${KF_VERSION}) include(FeatureSummary) -find_package(ECM 5.82.0 NO_MODULE) +find_package(ECM 5.83.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://commits.kde.org/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) @@ -15,10 +15,12 @@ find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Gui Sql Widgets Qml) -# On UNIX DBus integration is required, on Android it does not exist and on other platforms it is optional -if(UNIX) - find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED DBus) -elseif(NOT ANDROID) +# On non-Apple UNIX DBus integration is required, on Android it does not exist and on other platforms it is optional +if(UNIX AND NOT APPLE) + if(NOT ANDROID) + find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED DBus) + endif() +else() find_package(Qt5 ${REQUIRED_QT_VERSION} OPTIONAL_COMPONENTS DBus) endif() @@ -56,10 +58,7 @@ option(ENABLE_EXAMPLES "Build the examples" "ON") -if (IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/po") - ki18n_install(po) -endif () -add_definitions(-DQT_NO_FOREACH) +ki18n_install(po) add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f00) add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055100) add_definitions(-DKSERVICE_DISABLE_DEPRECATED_BEFORE_AND_AT=0x04ff00) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpeople-5.82.0/examples/CMakeLists.txt new/kpeople-5.83.0/examples/CMakeLists.txt --- old/kpeople-5.82.0/examples/CMakeLists.txt 2021-05-01 14:38:28.000000000 +0200 +++ new/kpeople-5.83.0/examples/CMakeLists.txt 2021-06-05 11:22:39.000000000 +0200 @@ -3,7 +3,7 @@ find_package(Qt5Quick) if (Qt5Quick_FOUND) - qt5_add_resources(contactlistqml_SRCS contactlistqml.qrc) + qt_add_resources(contactlistqml_SRCS contactlistqml.qrc) add_executable(contactlistqml contactlistqml.cpp ${contactlistqml_SRCS}) target_link_libraries(contactlistqml Qt5::Quick) endif() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpeople-5.82.0/po/zh_CN/kpeople5.po new/kpeople-5.83.0/po/zh_CN/kpeople5.po --- old/kpeople-5.82.0/po/zh_CN/kpeople5.po 2021-05-01 14:38:28.000000000 +0200 +++ new/kpeople-5.83.0/po/zh_CN/kpeople5.po 2021-06-05 11:22:39.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-03-14 19:34+0000\n" -"PO-Revision-Date: 2021-04-24 15:42\n" +"PO-Revision-Date: 2021-06-03 16:05\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpeople-5.82.0/src/CMakeLists.txt new/kpeople-5.83.0/src/CMakeLists.txt --- old/kpeople-5.82.0/src/CMakeLists.txt 2021-05-01 14:38:28.000000000 +0200 +++ new/kpeople-5.83.0/src/CMakeLists.txt 2021-06-05 11:22:39.000000000 +0200 @@ -47,7 +47,11 @@ target_link_libraries(KF5People PRIVATE Qt5::DBus) endif() -set_target_properties (KF5People PROPERTIES VERSION ${KPEOPLE_VERSION_STRING} SOVERSION ${KPEOPLE_SOVERSION} EXPORT_NAME People) +set_target_properties (KF5People PROPERTIES + VERSION ${KPEOPLE_VERSION} + SOVERSION ${KPEOPLE_SOVERSION} + EXPORT_NAME People +) target_include_directories (KF5People PUBLIC "$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}/kpeople>" INTERFACE "$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR_KF5}/KPeople>" ) @@ -69,6 +73,7 @@ PersonData PersonPluginManager PersonsModel + PersonsSortFilterProxyModel Global REQUIRED_HEADERS KPeople_HEADERS PREFIX KPeople diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpeople-5.82.0/src/backends/CMakeLists.txt new/kpeople-5.83.0/src/backends/CMakeLists.txt --- old/kpeople-5.82.0/src/backends/CMakeLists.txt 2021-05-01 14:38:28.000000000 +0200 +++ new/kpeople-5.83.0/src/backends/CMakeLists.txt 2021-06-05 11:22:39.000000000 +0200 @@ -17,7 +17,11 @@ target_include_directories (KF5PeopleBackend PUBLIC "$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>" INTERFACE "$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR_KF5}/KPeople>" ) -set_target_properties (KF5PeopleBackend PROPERTIES VERSION ${KPEOPLE_VERSION_STRING} SOVERSION ${KPEOPLE_SOVERSION} EXPORT_NAME PeopleBackend) +set_target_properties (KF5PeopleBackend PROPERTIES + VERSION ${KPEOPLE_VERSION} + SOVERSION ${KPEOPLE_SOVERSION} + EXPORT_NAME PeopleBackend +) install (TARGETS KF5PeopleBackend EXPORT KPeopleTargets diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpeople-5.82.0/src/declarative/CMakeLists.txt new/kpeople-5.83.0/src/declarative/CMakeLists.txt --- old/kpeople-5.82.0/src/declarative/CMakeLists.txt 2021-05-01 14:38:28.000000000 +0200 +++ new/kpeople-5.83.0/src/declarative/CMakeLists.txt 2021-06-05 11:22:39.000000000 +0200 @@ -1,4 +1,4 @@ -qt5_wrap_cpp(kpeopledeclarative_SRCS ../widgets/actions.h) +qt_wrap_cpp(kpeopledeclarative_SRCS ../widgets/actions.h) add_library(KF5PeopleDeclarative SHARED declarativepersondata.cpp personactionsmodel.cpp diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpeople-5.82.0/src/widgets/CMakeLists.txt new/kpeople-5.83.0/src/widgets/CMakeLists.txt --- old/kpeople-5.82.0/src/widgets/CMakeLists.txt 2021-05-01 14:38:28.000000000 +0200 +++ new/kpeople-5.83.0/src/widgets/CMakeLists.txt 2021-06-05 11:22:39.000000000 +0200 @@ -20,7 +20,7 @@ EXPORT KPEOPLE ) -qt5_wrap_ui (kpeople_widgets_SRCS person-details-presentation.ui) +qt_wrap_ui (kpeople_widgets_SRCS person-details-presentation.ui) add_library (KF5PeopleWidgets SHARED ${kpeople_widgets_SRCS} ) add_library (KF5::PeopleWidgets ALIAS KF5PeopleWidgets) @@ -37,7 +37,11 @@ KF5::CoreAddons ) -set_target_properties (KF5PeopleWidgets PROPERTIES VERSION ${KPEOPLE_VERSION_STRING} SOVERSION ${KPEOPLE_SOVERSION} EXPORT_NAME PeopleWidgets) +set_target_properties (KF5PeopleWidgets PROPERTIES + VERSION ${KPEOPLE_VERSION} + SOVERSION ${KPEOPLE_SOVERSION} + EXPORT_NAME PeopleWidgets +) if (MSVC) set_target_properties (KF5PeopleWidgets PROPERTIES
