Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package knotifyconfig for openSUSE:Factory checked in at 2021-05-10 15:35:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/knotifyconfig (Old) and /work/SRC/openSUSE:Factory/.knotifyconfig.new.2988 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "knotifyconfig" Mon May 10 15:35:43 2021 rev:90 rq:891770 version:5.82.0 Changes: -------- --- /work/SRC/openSUSE:Factory/knotifyconfig/knotifyconfig.changes 2021-04-12 12:36:40.713321417 +0200 +++ /work/SRC/openSUSE:Factory/.knotifyconfig.new.2988/knotifyconfig.changes 2021-05-10 15:37:23.602037049 +0200 @@ -1,0 +2,9 @@ +Sat May 1 16:41:06 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 5.82.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.82.0 +- No code change since 5.81.0 + +------------------------------------------------------------------- Old: ---- knotifyconfig-5.81.0.tar.xz knotifyconfig-5.81.0.tar.xz.sig New: ---- knotifyconfig-5.82.0.tar.xz knotifyconfig-5.82.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ knotifyconfig.spec ++++++ --- /var/tmp/diff_new_pack.zgyqRX/_old 2021-05-10 15:37:24.086035176 +0200 +++ /var/tmp/diff_new_pack.zgyqRX/_new 2021-05-10 15:37:24.086035176 +0200 @@ -17,14 +17,14 @@ %define lname libKF5NotifyConfig5 -%define _tar_path 5.81 +%define _tar_path 5.82 # 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: knotifyconfig -Version: 5.81.0 +Version: 5.82.0 Release: 0 Summary: Configuration dialog for desktop notifications License: LGPL-2.1-or-later @@ -57,10 +57,10 @@ BuildRequires: cmake(KF5WidgetsAddons) >= %{_kf5_bugfix_version} BuildRequires: cmake(KF5WindowSystem) >= %{_kf5_bugfix_version} BuildRequires: cmake(KF5XmlGui) >= %{_kf5_bugfix_version} -BuildRequires: cmake(Qt5DBus) >= 5.14.0 -BuildRequires: cmake(Qt5Test) >= 5.14.0 -BuildRequires: cmake(Qt5TextToSpeech) >= 5.14.0 -BuildRequires: cmake(Qt5Widgets) >= 5.14.0 +BuildRequires: cmake(Qt5DBus) >= 5.15.0 +BuildRequires: cmake(Qt5Test) >= 5.15.0 +BuildRequires: cmake(Qt5TextToSpeech) >= 5.15.0 +BuildRequires: cmake(Qt5Widgets) >= 5.15.0 BuildRequires: pkgconfig(libcanberra) %description @@ -83,7 +83,7 @@ Group: Development/Libraries/KDE Requires: %{lname} = %{version} Requires: extra-cmake-modules -Requires: cmake(Qt5Widgets) >= 5.14.0 +Requires: cmake(Qt5Widgets) >= 5.15.0 %description devel KNotifyConfig provides a configuration dialog for desktop notifications which @@ -92,15 +92,15 @@ %lang_package -n %{lname} %prep -%setup -q +%autosetup -p1 %build - %cmake_kf5 -d build - %cmake_build +%cmake_kf5 -d build +%cmake_build %install - %kf5_makeinstall -C build - %fdupes %{buildroot} +%kf5_makeinstall -C build +%fdupes %{buildroot} %if %{with lang} %find_lang %{name}5 ++++++ knotifyconfig-5.81.0.tar.xz -> knotifyconfig-5.82.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifyconfig-5.81.0/.gitignore new/knotifyconfig-5.82.0/.gitignore --- old/knotifyconfig-5.81.0/.gitignore 2021-04-04 13:45:55.000000000 +0200 +++ new/knotifyconfig-5.82.0/.gitignore 2021-05-01 14:37:54.000000000 +0200 @@ -22,3 +22,6 @@ .cmake/ /.clang-format /compile_commands.json +.clangd +.idea +/cmake-build* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifyconfig-5.81.0/CMakeLists.txt new/knotifyconfig-5.82.0/CMakeLists.txt --- old/knotifyconfig-5.81.0/CMakeLists.txt 2021-04-04 13:45:55.000000000 +0200 +++ new/knotifyconfig-5.82.0/CMakeLists.txt 2021-05-01 14:37:54.000000000 +0200 @@ -1,18 +1,18 @@ cmake_minimum_required(VERSION 3.5) -set(KF_VERSION "5.81.0") # handled by release scripts -set(KF_DEP_VERSION "5.81.0") # handled by release scripts +set(KF_VERSION "5.82.0") # handled by release scripts +set(KF_DEP_VERSION "5.82.0") # handled by release scripts project(KNotifyConfig VERSION ${KF_VERSION}) # Dependencies include(FeatureSummary) -find_package(ECM 5.81.0 NO_MODULE) +find_package(ECM 5.82.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) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH}) -set(REQUIRED_QT_VERSION 5.14.0) +set(REQUIRED_QT_VERSION 5.15.0) # Required Qt5 components to build this framework find_package(Qt5 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED Widgets DBus) @@ -63,8 +63,8 @@ option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)" OFF) add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)") -add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050e00) -add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055000) +add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f00) +add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055100) # Subdirectories add_definitions(-DTRANSLATION_DOMAIN=\"knotifyconfig5\") if (IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/po") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifyconfig-5.81.0/po/zh_CN/knotifyconfig5.po new/knotifyconfig-5.82.0/po/zh_CN/knotifyconfig5.po --- old/knotifyconfig-5.81.0/po/zh_CN/knotifyconfig5.po 2021-04-04 13:45:55.000000000 +0200 +++ new/knotifyconfig-5.82.0/po/zh_CN/knotifyconfig5.po 2021-05-01 14:37:54.000000000 +0200 @@ -15,7 +15,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-03-13 02:23+0100\n" -"PO-Revision-Date: 2021-03-27 17:29\n" +"PO-Revision-Date: 2021-04-24 15:42\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n"