Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package knotifications for openSUSE:Factory checked in at 2022-10-11 18:00:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/knotifications (Old) and /work/SRC/openSUSE:Factory/.knotifications.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "knotifications" Tue Oct 11 18:00:12 2022 rev:109 rq:1009013 version:5.99.0 Changes: -------- --- /work/SRC/openSUSE:Factory/knotifications/knotifications.changes 2022-09-13 15:10:30.252830968 +0200 +++ /work/SRC/openSUSE:Factory/.knotifications.new.2275/knotifications.changes 2022-10-11 18:02:10.377757274 +0200 @@ -1,0 +2,10 @@ +Sat Oct 1 15:55:58 UTC 2022 - Christophe Giboudeaux <[email protected]> + +- Update to 5.99.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.99.0 +- Changes since 5.98.0: + * Add CMake option to build WITHOUT_X11 + +------------------------------------------------------------------- Old: ---- knotifications-5.98.0.tar.xz knotifications-5.98.0.tar.xz.sig New: ---- knotifications-5.99.0.tar.xz knotifications-5.99.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ knotifications.spec ++++++ --- /var/tmp/diff_new_pack.kYIGkq/_old 2022-10-11 18:02:11.425758968 +0200 +++ /var/tmp/diff_new_pack.kYIGkq/_new 2022-10-11 18:02:11.433758981 +0200 @@ -17,14 +17,14 @@ %define lname libKF5Notifications5 -%define _tar_path 5.98 +%define _tar_path 5.99 # 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 released Name: knotifications -Version: 5.98.0 +Version: 5.99.0 Release: 0 Summary: KDE Desktop notifications License: LGPL-2.1-or-later @@ -43,6 +43,7 @@ BuildRequires: cmake(KF5CoreAddons) >= %{_kf5_bugfix_version} BuildRequires: cmake(KF5WindowSystem) >= %{_kf5_bugfix_version} BuildRequires: cmake(Qt5DBus) >= 5.15.0 +BuildRequires: cmake(Qt5LinguistTools) >= 5.15.0 BuildRequires: cmake(Qt5Qml) >= 5.15.0 BuildRequires: cmake(Qt5Test) >= 5.15.0 BuildRequires: cmake(Qt5Widgets) >= 5.15.0 @@ -50,9 +51,6 @@ BuildRequires: pkgconfig(dbusmenu-qt5) BuildRequires: pkgconfig(libcanberra) BuildRequires: pkgconfig(x11) -%if %{with released} -BuildRequires: cmake(Qt5LinguistTools) >= 5.15.0 -%endif %description KNotification is used to notify the user of an event. It covers feedback and @@ -101,16 +99,12 @@ %kf5_makeinstall -C build %fdupes %{buildroot} -%if %{with released} -%find_lang %{name}5 --with-qt --without-mo -%endif +%find_lang knotifications5 --with-qt --without-mo %post -n %{lname} -p /sbin/ldconfig %postun -n %{lname} -p /sbin/ldconfig -%if %{with released} -%files -n %{lname}-lang -f %{name}5.lang -%endif +%files -n %{lname}-lang -f knotifications5.lang %files imports %dir %{_kf5_qmldir}/org/ ++++++ knotifications-5.98.0.tar.xz -> knotifications-5.99.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.98.0/CMakeLists.txt new/knotifications-5.99.0/CMakeLists.txt --- old/knotifications-5.98.0/CMakeLists.txt 2022-09-05 14:11:16.000000000 +0200 +++ new/knotifications-5.99.0/CMakeLists.txt 2022-10-01 16:21:52.000000000 +0200 @@ -1,12 +1,12 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.98.0") # handled by release scripts -set(KF_DEP_VERSION "5.98.0") # handled by release scripts +set(KF_VERSION "5.99.0") # handled by release scripts +set(KF_DEP_VERSION "5.99.0") # handled by release scripts project(KNotifications VERSION ${KF_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 5.98.0 NO_MODULE) +find_package(ECM 5.99.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) @@ -75,14 +75,17 @@ endif() if (NOT APPLE AND NOT WIN32) - find_package(X11) + option(WITHOUT_X11 "Build without X11 support (skips finding X11)." OFF) + if(NOT WITHOUT_X11) + find_package(X11) + set(HAVE_X11 ${X11_FOUND}) + set(HAVE_XTEST ${X11_XTest_FOUND}) + if(X11_FOUND AND QT_MAJOR_VERSION STREQUAL "5") + find_package(Qt5X11Extras ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED) + endif() + endif() endif() -set(HAVE_X11 ${X11_FOUND}) -set(HAVE_XTEST ${X11_XTest_FOUND}) -if(X11_FOUND AND QT_MAJOR_VERSION STREQUAL "5") - find_package(Qt5X11Extras ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED) -endif() if(APPLE) find_package(Qt5MacExtras ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) endif() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.98.0/KF5NotificationsConfig.cmake.in new/knotifications-5.99.0/KF5NotificationsConfig.cmake.in --- old/knotifications-5.98.0/KF5NotificationsConfig.cmake.in 2022-09-05 14:11:16.000000000 +0200 +++ new/knotifications-5.99.0/KF5NotificationsConfig.cmake.in 2022-10-01 16:21:52.000000000 +0200 @@ -36,7 +36,7 @@ find_dependency(Qt5TextToSpeech @REQUIRED_QT_VERSION@) endif() - if(@X11_FOUND@) + if(@HAVE_X11@) if (NOT TARGET Qt6::Gui) find_dependency(Qt5X11Extras @REQUIRED_QT_VERSION@) endif() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.98.0/po/ka/knotifications5_qt.po new/knotifications-5.99.0/po/ka/knotifications5_qt.po --- old/knotifications-5.98.0/po/ka/knotifications5_qt.po 2022-09-05 14:11:16.000000000 +0200 +++ new/knotifications-5.99.0/po/ka/knotifications5_qt.po 2022-10-01 16:21:52.000000000 +0200 @@ -13,7 +13,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.0.1\n" "X-Qt-Contexts: true\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.98.0/po/zh_CN/knotifications5_qt.po new/knotifications-5.99.0/po/zh_CN/knotifications5_qt.po --- old/knotifications-5.98.0/po/zh_CN/knotifications5_qt.po 2022-09-05 14:11:16.000000000 +0200 +++ new/knotifications-5.99.0/po/zh_CN/knotifications5_qt.po 2022-10-01 16:21:52.000000000 +0200 @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" -"PO-Revision-Date: 2022-08-20 14:17\n" +"PO-Revision-Date: 2022-09-20 01:56\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.98.0/src/CMakeLists.txt new/knotifications-5.99.0/src/CMakeLists.txt --- old/knotifications-5.98.0/src/CMakeLists.txt 2022-09-05 14:11:16.000000000 +0200 +++ new/knotifications-5.99.0/src/CMakeLists.txt 2022-10-01 16:21:52.000000000 +0200 @@ -143,7 +143,7 @@ target_link_libraries(KF5Notifications PRIVATE Qt5::TextToSpeech) endif() -if(X11_FOUND) +if(HAVE_X11) target_link_libraries(KF5Notifications PRIVATE ${X11_X11_LIB}) if (TARGET Qt5::X11Extras) target_link_libraries(KF5Notifications PRIVATE Qt5::X11Extras) @@ -185,7 +185,7 @@ REQUIRED_HEADERS KNotifications_HEADERS ) -install(TARGETS KF5Notifications EXPORT KF5NotificationsTargets ${KF5_INSTALL_TARGETS_DEFAULT_ARGS}) +install(TARGETS KF5Notifications EXPORT KF5NotificationsTargets ${KF_INSTALL_TARGETS_DEFAULT_ARGS}) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/knotifications_export.h
