Hello community, here is the log from the commit of package knotifications for openSUSE:Factory checked in at 2019-07-26 12:17:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/knotifications (Old) and /work/SRC/openSUSE:Factory/.knotifications.new.4126 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "knotifications" Fri Jul 26 12:17:36 2019 rev:70 rq:715896 version:5.60.0 Changes: -------- --- /work/SRC/openSUSE:Factory/knotifications/knotifications.changes 2019-07-13 13:58:58.134924200 +0200 +++ /work/SRC/openSUSE:Factory/.knotifications.new.4126/knotifications.changes 2019-07-26 12:17:39.846777315 +0200 @@ -1,0 +2,12 @@ +Sun Jul 14 06:41:39 UTC 2019 - [email protected] + +- Update to 5.60.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/kde-frameworks-5.60.0.php +- Changes since 5.59.0: + * Don't search for phonon on Android + * Install in new logging directory when we use kf5 5.59.0 + * add .vscode to .gitignore + +------------------------------------------------------------------- Old: ---- knotifications-5.59.0.tar.xz New: ---- knotifications-5.60.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ knotifications.spec ++++++ --- /var/tmp/diff_new_pack.yZqRit/_old 2019-07-26 12:17:41.726776966 +0200 +++ /var/tmp/diff_new_pack.yZqRit/_new 2019-07-26 12:17:41.742776963 +0200 @@ -17,14 +17,14 @@ %define lname libKF5Notifications5 -%define _tar_path 5.59 +%define _tar_path 5.60 # 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: knotifications -Version: 5.59.0 +Version: 5.60.0 Release: 0 Summary: KDE Desktop notifications License: LGPL-2.1-or-later ++++++ knotifications-5.59.0.tar.xz -> knotifications-5.60.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.59.0/.gitignore new/knotifications-5.60.0/.gitignore --- old/knotifications-5.59.0/.gitignore 2019-06-01 18:58:44.000000000 +0200 +++ new/knotifications-5.60.0/.gitignore 2019-07-07 20:36:24.000000000 +0200 @@ -19,3 +19,4 @@ /build*/ CMakeLists.txt.user* *.unc-backup* +.vscode \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.59.0/CMakeLists.txt new/knotifications-5.60.0/CMakeLists.txt --- old/knotifications-5.59.0/CMakeLists.txt 2019-06-01 18:58:44.000000000 +0200 +++ new/knotifications-5.60.0/CMakeLists.txt 2019-07-07 20:36:24.000000000 +0200 @@ -1,12 +1,12 @@ cmake_minimum_required(VERSION 3.5) -set(KF5_VERSION "5.59.0") # handled by release scripts -set(KF5_DEP_VERSION "5.59.0") # handled by release scripts +set(KF5_VERSION "5.60.0") # handled by release scripts +set(KF5_DEP_VERSION "5.60.0") # handled by release scripts project(KNotifications VERSION ${KF5_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 5.59.0 NO_MODULE) +find_package(ECM 5.60.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) @@ -31,7 +31,7 @@ SOVERSION 5) # Dependencies -set(REQUIRED_QT_VERSION 5.10.0) +set(REQUIRED_QT_VERSION 5.11.0) set(CMAKE_AUTORCC TRUE) find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets) @@ -79,18 +79,13 @@ TYPE OPTIONAL) if (Canberra_FOUND) add_definitions(-DHAVE_CANBERRA) -else() - find_package(Phonon4Qt5 4.6.60 NO_MODULE) +elseif(NOT ANDROID) + # This is REQUIRED since you cannot tell CMake "either one of those two optional ones are required" + find_package(Phonon4Qt5 4.6.60 NO_MODULE REQUIRED) set_package_properties(Phonon4Qt5 PROPERTIES DESCRIPTION "Qt-based audio library" PURPOSE "Needed to build audio notification support when Canberra isn't available") - if (NOT ANDROID) - # This is REQUIRED since you cannot tell CMake "either one of those two optional ones are required" - set_package_properties(Phonon4Qt5 PROPERTIES TYPE REQUIRED) - endif() - if (Phonon4Qt5_FOUND) add_definitions(-DHAVE_PHONON4QT5) - endif() endif() remove_definitions(-DQT_NO_CAST_FROM_BYTEARRAY) @@ -146,7 +141,7 @@ ${CMAKE_CURRENT_BINARY_DIR}/knotifications_version.h DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5} COMPONENT Devel ) -install(FILES knotifications.categories DESTINATION ${KDE_INSTALL_CONFDIR}) +install(FILES knotifications.categories DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR}) feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.59.0/po/ca@valencia/knotifications5_qt.po new/knotifications-5.60.0/po/ca@valencia/knotifications5_qt.po --- old/knotifications-5.59.0/po/ca@valencia/knotifications5_qt.po 2019-06-01 18:58:44.000000000 +0200 +++ new/knotifications-5.60.0/po/ca@valencia/knotifications5_qt.po 2019-07-07 20:36:24.000000000 +0200 @@ -1,5 +1,5 @@ # Translation of knotifications5_qt.po to Catalan (Valencian) -# Copyright (C) 1998-2014 This_file_is_part_of_KDE +# Copyright (C) 1998-2019 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # @@ -9,22 +9,24 @@ # Josep Ma. Ferrer <[email protected]>, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014. # Robert Millan <[email protected]>, 2009. # Orestes Mas <[email protected]>, 2010. +# Empar <[email protected]>, 2019. msgid "" msgstr "" "Project-Id-Version: knotifications5_qt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2014-03-23 01:50+0000\n" -"PO-Revision-Date: 2014-08-08 15:00+0200\n" -"Last-Translator: Antoni Bella Pérez <[email protected]>\n" +"PO-Revision-Date: 2019-06-17 13:30+0200\n" +"Last-Translator: Empar <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" "Language: ca@valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: &\n" +"X-Generator: Poedit 2.0.6\n" "X-Qt-Contexts: true\n" +"X-Project-Style: kde\n" #: knotificationrestrictions.cpp:192 msgctxt "KNotificationRestrictions|" @@ -50,7 +52,7 @@ #, qt-format msgctxt "KStatusNotifierItem|" msgid "<qt>Are you sure you want to quit <b>%1</b>?</qt>" -msgstr "<qt>De veres voleu eixir de <b>%1</b>?</qt>" +msgstr "<qt>Segur que voleu eixir de <b>%1</b>?</qt>" #: kstatusnotifieritem.cpp:1082 msgctxt "KStatusNotifierItem|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.59.0/po/id/knotifications5_qt.po new/knotifications-5.60.0/po/id/knotifications5_qt.po --- old/knotifications-5.59.0/po/id/knotifications5_qt.po 2019-06-01 18:58:44.000000000 +0200 +++ new/knotifications-5.60.0/po/id/knotifications5_qt.po 2019-07-07 20:36:24.000000000 +0200 @@ -2,7 +2,7 @@ # Copyright (C) 2010 This_file_is_part_of_KDE # This file is distributed under the same license as the kdelibs4 package. # Andhika Padmawan <[email protected]>, 2010-2014. -# Wantoyo <[email protected]>, 2018. +# Wantoyo <[email protected]>, 2018, 2019. # msgid "" msgstr "" @@ -17,7 +17,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 19.04.1\n" "X-Qt-Contexts: true\n" #: knotificationrestrictions.cpp:192 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.59.0/po/lt/knotifications5_qt.po new/knotifications-5.60.0/po/lt/knotifications5_qt.po --- old/knotifications-5.59.0/po/lt/knotifications5_qt.po 2019-06-01 18:58:44.000000000 +0200 +++ new/knotifications-5.60.0/po/lt/knotifications5_qt.po 2019-07-07 20:36:24.000000000 +0200 @@ -12,8 +12,8 @@ "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2014-03-23 01:50+0000\n" -"PO-Revision-Date: 2014-11-11 00:15+0200\n" -"Last-Translator: Liudas Ališauskas <[email protected]>\n" +"PO-Revision-Date: 2019-06-30 19:48+0300\n" +"Last-Translator: Moo\n" "Language-Team: Lithuanian <[email protected]>\n" "Language: lt\n" "MIME-Version: 1.0\n" @@ -21,7 +21,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n" "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Poedit 2.2.1\n" "X-Qt-Contexts: true\n" #: knotificationrestrictions.cpp:192 @@ -42,15 +42,15 @@ #: kstatusnotifieritem.cpp:1065 msgctxt "KStatusNotifierItem|" msgid "&Restore" -msgstr "&Atstatyti" +msgstr "&Atkurti" #: kstatusnotifieritem.cpp:1079 #, qt-format msgctxt "KStatusNotifierItem|" msgid "<qt>Are you sure you want to quit <b>%1</b>?</qt>" -msgstr "<qt>Ar tikrai norite nutraukti <b>%1</b>?</qt>" +msgstr "<qt>Ar tikrai norite išeiti iš <b>%1</b>?</qt>" #: kstatusnotifieritem.cpp:1082 msgctxt "KStatusNotifierItem|" msgid "Confirm Quit From System Tray" -msgstr "Patvirtinti nutraukimą sistemos dėkle" +msgstr "Patvirtinti išėjimą sistemos dėkle" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.59.0/po/se/knotifications5_qt.po new/knotifications-5.60.0/po/se/knotifications5_qt.po --- old/knotifications-5.59.0/po/se/knotifications5_qt.po 2019-06-01 18:58:44.000000000 +0200 +++ new/knotifications-5.60.0/po/se/knotifications5_qt.po 2019-07-07 20:36:24.000000000 +0200 @@ -26,31 +26,31 @@ msgid "Unknown Application" msgstr "Amas prográmma" -#: kstatusnotifieritem.cpp:501 kstatusnotifieritem.cpp:1061 +#: kstatusnotifieritem.cpp:501 kstatusnotifieritem.cpp:1067 #, fuzzy msgctxt "KStatusNotifierItem|" msgid "&Minimize" msgstr "&Minimere" -#: kstatusnotifieritem.cpp:810 +#: kstatusnotifieritem.cpp:816 #, fuzzy msgctxt "KStatusNotifierItem|" msgid "Quit" msgstr "Heaittit" -#: kstatusnotifieritem.cpp:1059 +#: kstatusnotifieritem.cpp:1065 #, fuzzy msgctxt "KStatusNotifierItem|" msgid "&Restore" msgstr "&Máhcat" -#: kstatusnotifieritem.cpp:1073 +#: kstatusnotifieritem.cpp:1079 #, fuzzy, qt-format msgctxt "KStatusNotifierItem|" msgid "<qt>Are you sure you want to quit <b>%1</b>?</qt>" msgstr "<qt>Háliidatgo duođaid heaittihit <b>%1</b>?</qt>" -#: kstatusnotifieritem.cpp:1076 +#: kstatusnotifieritem.cpp:1082 #, fuzzy msgctxt "KStatusNotifierItem|" msgid "Confirm Quit From System Tray" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.59.0/po/zh_CN/knotifications5_qt.po new/knotifications-5.60.0/po/zh_CN/knotifications5_qt.po --- old/knotifications-5.59.0/po/zh_CN/knotifications5_qt.po 2019-06-01 18:58:44.000000000 +0200 +++ new/knotifications-5.60.0/po/zh_CN/knotifications5_qt.po 2019-07-07 20:36:24.000000000 +0200 @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" -"PO-Revision-Date: 2019-05-05 22:21\n" +"PO-Revision-Date: 2019-06-02 11:51\n" "Last-Translator: Guo Yunhe (guoyunhe)\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.59.0/src/android_defaults.notifyrc new/knotifications-5.60.0/src/android_defaults.notifyrc --- old/knotifications-5.59.0/src/android_defaults.notifyrc 2019-06-01 18:58:44.000000000 +0200 +++ new/knotifications-5.60.0/src/android_defaults.notifyrc 2019-07-07 20:36:24.000000000 +0200 @@ -22,7 +22,7 @@ Name[id]=Error Fatal Name[it]=Errore grave Name[ko]=치명적 오류 -Name[lt]=Lemtinga klaida +Name[lt]=Lemtingoji klaida Name[nb]=Kritisk feil Name[nds]=Swoor Fehler Name[nl]=Fatale fout @@ -158,7 +158,7 @@ Comment[id]=Sesuatu yang istimewa terjadi dalam program Comment[it]=Si è verificato qualcosa di speciale nel programma Comment[ko]=프로그램에서 특별한 일이 발생함 -Comment[lt]=Kažkoks specialus įvykis programoje +Comment[lt]=Programoje nutikos kažkas specialaus Comment[nb]=Det hendte noe spesielt i programmet Comment[nds]=Dat geev en afsünnerlich Begeefnis binnen dat Programm Comment[nl]=Er gebeurde iets bijzonders in het programma @@ -205,7 +205,7 @@ Name[id]=Peringatan Name[it]=Avviso Name[ko]=경고 -Name[lt]=Perspėjimas +Name[lt]=Įspėjimas Name[nb]=Advarsel Name[nds]=Wohrschoen Name[nl]=Waarschuwing @@ -250,7 +250,7 @@ Comment[id]=Ada sebuah error dalam program yang menyebabkan masalah Comment[it]=Si è verificato un errore nel programma che potrebbe causare problemi Comment[ko]=프로그램에 문제를 가져올 수 있는 오류가 발생함 -Comment[lt]=Įvyko programos klaida, galinti sukelti problemų +Comment[lt]=Programoje įvyko klaida, galinti sukelti problemų Comment[nb]=I programmet oppsto det en feil som kan gi vanskeligheter Comment[nds]=Dat geev en Fehler binnen dat Programm, villicht suert dor Problemen bi rut Comment[nl]=Er deed zich een fout voor in het programma dat problemen kan veroorzaken @@ -341,7 +341,7 @@ Comment[id]=Sebuah error yang sangat serius terjadi, setidaknya menyebabkan program keluar Comment[it]=Si è verificato un errore molto grave, che ha causato almeno la chiusura del programma Comment[ko]=프로그램이 종료될 정도의 매우 큰 오류가 발생함 -Comment[lt]=Įvyko labai rimta klaida, privertusi programą bent jau baigti darbą. +Comment[lt]=Įvyko labai rimta klaida, privertusi programą bent jau užbaigti darbą Comment[nb]=Det oppsto en meget alvorlig feil som minst førte til at programmet stoppet Comment[nds]=Dat geev en groot Malöör, tominnst dat Programm is utstegen Comment[nl]=Er deed zich een serieuze fout voor dat er op zijn minst voor zorgde dat het programma werd afgesloten
