Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package sonnet for openSUSE:Factory checked in at 2022-03-14 19:35:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sonnet (Old) and /work/SRC/openSUSE:Factory/.sonnet.new.25692 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sonnet" Mon Mar 14 19:35:01 2022 rev:103 rq:961291 version:5.92.0 Changes: -------- --- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes 2022-02-24 18:22:43.226670050 +0100 +++ /work/SRC/openSUSE:Factory/.sonnet.new.25692/sonnet.changes 2022-03-14 19:36:39.466096988 +0100 @@ -1,0 +2,13 @@ +Mon Mar 7 09:27:22 UTC 2022 - Christophe Giboudeaux <[email protected]> + +- Update to 5.92.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.92.0 +- Changes since 5.91.0: + * settings: Emit `autodetectLanguageChanged` + * Add Qt6 Android CI + * Make the BUILD_DESIGNERPLUGIN option dependent on not cross-compiling + * QMake pri files: fix missing new path to version header + +------------------------------------------------------------------- Old: ---- sonnet-5.91.0.tar.xz sonnet-5.91.0.tar.xz.sig New: ---- sonnet-5.92.0.tar.xz sonnet-5.92.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sonnet.spec ++++++ --- /var/tmp/diff_new_pack.G8mb1Y/_old 2022-03-14 19:36:39.914097525 +0100 +++ /var/tmp/diff_new_pack.G8mb1Y/_new 2022-03-14 19:36:39.918097530 +0100 @@ -17,14 +17,14 @@ %define sonum 5 -%define _tar_path 5.91 +%define _tar_path 5.92 # 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: sonnet -Version: 5.91.0 +Version: 5.92.0 Release: 0 Summary: KDE spell checking library License: LGPL-2.1-or-later ++++++ sonnet-5.91.0.tar.xz -> sonnet-5.92.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sonnet-5.91.0/.gitlab-ci.yml new/sonnet-5.92.0/.gitlab-ci.yml --- old/sonnet-5.91.0/.gitlab-ci.yml 2022-02-05 22:32:46.000000000 +0100 +++ new/sonnet-5.92.0/.gitlab-ci.yml 2022-03-05 14:09:51.000000000 +0100 @@ -6,3 +6,4 @@ - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/android.yml - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/freebsd.yml - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/linux-qt6.yml + - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/android-qt6.yml diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sonnet-5.91.0/CMakeLists.txt new/sonnet-5.92.0/CMakeLists.txt --- old/sonnet-5.91.0/CMakeLists.txt 2022-02-05 22:32:46.000000000 +0100 +++ new/sonnet-5.92.0/CMakeLists.txt 2022-03-05 14:09:51.000000000 +0100 @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.91.0") # handled by release scripts +set(KF_VERSION "5.92.0") # handled by release scripts project(Sonnet VERSION ${KF_VERSION}) include(FeatureSummary) include(CMakeDependentOption) -find_package(ECM 5.91.0 NO_MODULE) +find_package(ECM 5.92.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) @@ -25,6 +25,7 @@ include(ECMAddQch) include(ECMPoQmTools) +include(CMakeDependentOption) set(EXCLUDE_DEPRECATED_BEFORE_AND_AT 0 CACHE STRING "Control the range of deprecated API excluded from the build [default=0].") @@ -55,7 +56,7 @@ add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)") if(SONNET_USE_WIDGETS) - option(BUILD_DESIGNERPLUGIN "Build plugin for Qt Designer" ON) + cmake_dependent_option(BUILD_DESIGNERPLUGIN "Build plugin for Qt Designer" ON "NOT CMAKE_CROSSCOMPILING" OFF) add_feature_info(DESIGNERPLUGIN ${BUILD_DESIGNERPLUGIN} "Build plugin for Qt Designer") endif() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sonnet-5.91.0/autotests/test_settings.cpp new/sonnet-5.92.0/autotests/test_settings.cpp --- old/sonnet-5.91.0/autotests/test_settings.cpp 2022-02-05 22:32:46.000000000 +0100 +++ new/sonnet-5.92.0/autotests/test_settings.cpp 2022-03-05 14:09:51.000000000 +0100 @@ -120,7 +120,7 @@ bool checkUppercase = speller.testAttribute(Speller::CheckUppercase); bool settingsUppercase = settings.value(QStringLiteral("checkUppercase"), true).toBool(); QCOMPARE(checkUppercase, settingsUppercase); - // Change the atribute + // Change the attribute speller.setAttribute(Speller::CheckUppercase, !checkUppercase); settingsUppercase = settings.value(QStringLiteral("checkUppercase"), true).toBool(); QCOMPARE(!checkUppercase, settingsUppercase); @@ -135,7 +135,7 @@ bool skipRunTogether = speller.testAttribute(Speller::SkipRunTogether); bool settingsSkipRunTogether = settings.value(QStringLiteral("skipRunTogether"), true).toBool(); QCOMPARE(skipRunTogether, settingsSkipRunTogether); - // Change the atribute + // Change the attribute speller.setAttribute(Speller::SkipRunTogether, !skipRunTogether); settingsSkipRunTogether = settings.value(QStringLiteral("skipRunTogether"), true).toBool(); QCOMPARE(!skipRunTogether, settingsSkipRunTogether); @@ -150,7 +150,7 @@ bool autodetectLanguage = speller.testAttribute(Speller::AutoDetectLanguage); bool settingsAutoDetectLanguage = settings.value(QStringLiteral("autodetectLanguage"), true).toBool(); QCOMPARE(autodetectLanguage, settingsAutoDetectLanguage); - // Change the atribute + // Change the attribute speller.setAttribute(Speller::AutoDetectLanguage, !autodetectLanguage); settingsAutoDetectLanguage = settings.value(QStringLiteral("autodetectLanguage"), true).toBool(); QCOMPARE(!autodetectLanguage, settingsAutoDetectLanguage); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sonnet-5.91.0/po/ka/sonnet5_qt.po new/sonnet-5.92.0/po/ka/sonnet5_qt.po --- old/sonnet-5.91.0/po/ka/sonnet5_qt.po 2022-02-05 22:32:46.000000000 +0100 +++ new/sonnet-5.92.0/po/ka/sonnet5_qt.po 2022-03-05 14:09:51.000000000 +0100 @@ -14,7 +14,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.9\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Qt-Contexts: true\n" #: core/loader.cpp:185 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sonnet-5.91.0/po/ro/sonnet5_qt.po new/sonnet-5.92.0/po/ro/sonnet5_qt.po --- old/sonnet-5.91.0/po/ro/sonnet5_qt.po 2022-02-05 22:32:46.000000000 +0100 +++ new/sonnet-5.92.0/po/ro/sonnet5_qt.po 2022-03-05 14:09:51.000000000 +0100 @@ -1,14 +1,14 @@ # Traducerea kdelibs4.po ??n Rom??n?? # Lauren??iu Buzdugan <[email protected]>, 2008, 2009. # Sergiu Bivol <[email protected]>, 2008, 2009, 2010. -# Sergiu Bivol <[email protected]>, 2010, 2012, 2013, 2014, 2020. +# Sergiu Bivol <[email protected]>, 2010, 2012, 2013, 2014, 2020, 2022. # Cristian One?? <[email protected]>, 2010, 2011, 2012, 2013. msgid "" msgstr "" "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: 2020-10-05 23:14+0100\n" +"PO-Revision-Date: 2022-02-06 17:12+0000\n" "Last-Translator: Sergiu Bivol <[email protected]>\n" "Language-Team: Romanian\n" "Language: ro\n" @@ -17,7 +17,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -"X-Generator: Lokalize 19.12.3\n" +"X-Generator: Lokalize 21.12.2\n" "X-Qt-Contexts: true\n" #: core/loader.cpp:185 @@ -140,17 +140,11 @@ msgstr "%1 (%2)" #: quick/spellcheckhighlighter.cpp:236 quick/spellcheckhighlighter.cpp:260 -#, fuzzy -#| msgctxt "Sonnet::Highlighter|" -#| msgid "As-you-type spell checking enabled." msgctxt "SpellcheckHighlighter|" msgid "As-you-type spell checking enabled." msgstr "Verificarea ortografic?? pe m??sur?? ce scrie??i e activat??." #: quick/spellcheckhighlighter.cpp:240 -#, fuzzy -#| msgctxt "Sonnet::Highlighter|" -#| msgid "Too many misspelled words. As-you-type spell checking disabled." msgctxt "SpellcheckHighlighter|" msgid "Too many misspelled words. As-you-type spell checking disabled." msgstr "" @@ -158,9 +152,6 @@ "fost dezactivat??." #: quick/spellcheckhighlighter.cpp:262 -#, fuzzy -#| msgctxt "Sonnet::Highlighter|" -#| msgid "As-you-type spell checking disabled." msgctxt "SpellcheckHighlighter|" msgid "As-you-type spell checking disabled." msgstr "Verificarea ortografic?? pe m??sur?? ce scrie??i a fost dezactivat??." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sonnet-5.91.0/po/ru/sonnet5_qt.po new/sonnet-5.92.0/po/ru/sonnet5_qt.po --- old/sonnet-5.91.0/po/ru/sonnet5_qt.po 2022-02-05 22:32:46.000000000 +0100 +++ new/sonnet-5.92.0/po/ru/sonnet5_qt.po 2022-03-05 14:09:51.000000000 +0100 @@ -15,19 +15,20 @@ # Julia Dronova <[email protected]>, 2012. # Alexander Lakhin <[email protected]>, 2013. # Alexander Yavorsky <[email protected]>, 2019. +# ?????????? ???????????????? <[email protected]>, 2022. msgid "" msgstr "" "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: 2019-01-26 14:00+0300\n" -"Last-Translator: Alexander Yavorsky <[email protected]>\n" +"PO-Revision-Date: 2022-02-16 15:22+0300\n" +"Last-Translator: ?????????? ???????????????? <[email protected]>\n" "Language-Team: Russian <[email protected]>\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 18.12.1\n" +"X-Generator: Lokalize 21.08.3\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Environment: kde\n" @@ -156,25 +157,16 @@ msgstr "%1 (%2)" #: quick/spellcheckhighlighter.cpp:236 quick/spellcheckhighlighter.cpp:260 -#, fuzzy -#| msgctxt "Sonnet::Highlighter|" -#| msgid "As-you-type spell checking enabled." msgctxt "SpellcheckHighlighter|" msgid "As-you-type spell checking enabled." msgstr "???????????????? ???????????????????? ???? ???????? ????????????????." #: quick/spellcheckhighlighter.cpp:240 -#, fuzzy -#| msgctxt "Sonnet::Highlighter|" -#| msgid "Too many misspelled words. As-you-type spell checking disabled." msgctxt "SpellcheckHighlighter|" msgid "Too many misspelled words. As-you-type spell checking disabled." msgstr "?????????????? ?????????? ???????? ?? ????????????????. ???????????????? ???????????????????? ???? ???????? ??????????????????." #: quick/spellcheckhighlighter.cpp:262 -#, fuzzy -#| msgctxt "Sonnet::Highlighter|" -#| msgid "As-you-type spell checking disabled." msgctxt "SpellcheckHighlighter|" msgid "As-you-type spell checking disabled." msgstr "???????????????? ???????????????????? ???? ???????? ??????????????????." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sonnet-5.91.0/po/sk/sonnet5_qt.po new/sonnet-5.92.0/po/sk/sonnet5_qt.po --- old/sonnet-5.91.0/po/sk/sonnet5_qt.po 2022-02-05 22:32:46.000000000 +0100 +++ new/sonnet-5.92.0/po/sk/sonnet5_qt.po 2022-03-05 14:09:51.000000000 +0100 @@ -8,19 +8,20 @@ # Richard Fri?? <[email protected]>, 2011. # Roman Pahol??k <[email protected]>, 2012, 2013, 2014, 2015. # Mthw <[email protected]>, 2019. +# Matej Mrenica <[email protected]>, 2022. msgid "" msgstr "" "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: 2019-01-28 11:59+0100\n" -"Last-Translator: Mthw <[email protected]>\n" -"Language-Team: Slovak <[email protected]>\n" +"PO-Revision-Date: 2022-02-14 20:05+0100\n" +"Last-Translator: Matej Mrenica <[email protected]>\n" +"Language-Team: Slovak <[email protected]>\n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 18.12.1\n" +"X-Generator: Lokalize 21.12.2\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Qt-Contexts: true\n" @@ -144,25 +145,16 @@ msgstr "%1 (%2)" #: quick/spellcheckhighlighter.cpp:236 quick/spellcheckhighlighter.cpp:260 -#, fuzzy -#| msgctxt "Sonnet::Highlighter|" -#| msgid "As-you-type spell checking enabled." msgctxt "SpellcheckHighlighter|" msgid "As-you-type spell checking enabled." msgstr "Kontrola pravopisu po??as p??sania zapnut??." #: quick/spellcheckhighlighter.cpp:240 -#, fuzzy -#| msgctxt "Sonnet::Highlighter|" -#| msgid "Too many misspelled words. As-you-type spell checking disabled." msgctxt "SpellcheckHighlighter|" msgid "Too many misspelled words. As-you-type spell checking disabled." msgstr "Pr??li?? ve??a chybn??ch slov. Kontrola pravopisu po??as p??sania vypnut??." #: quick/spellcheckhighlighter.cpp:262 -#, fuzzy -#| msgctxt "Sonnet::Highlighter|" -#| msgid "As-you-type spell checking disabled." msgctxt "SpellcheckHighlighter|" msgid "As-you-type spell checking disabled." msgstr "Kontrola pravopisu po??as p??sania vypnut??." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sonnet-5.91.0/po/zh_CN/sonnet5_qt.po new/sonnet-5.92.0/po/zh_CN/sonnet5_qt.po --- old/sonnet-5.91.0/po/zh_CN/sonnet5_qt.po 2022-02-05 22:32:46.000000000 +0100 +++ new/sonnet-5.92.0/po/zh_CN/sonnet5_qt.po 2022-03-05 14:09:51.000000000 +0100 @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" -"PO-Revision-Date: 2022-01-08 15:23\n" +"PO-Revision-Date: 2022-02-26 05:17\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/sonnet-5.91.0/src/core/CMakeLists.txt new/sonnet-5.92.0/src/core/CMakeLists.txt --- old/sonnet-5.91.0/src/core/CMakeLists.txt 2022-02-05 22:32:46.000000000 +0100 +++ new/sonnet-5.92.0/src/core/CMakeLists.txt 2022-03-05 14:09:51.000000000 +0100 @@ -116,5 +116,13 @@ endif() include(ECMGeneratePriFile) -ecm_generate_pri_file(BASE_NAME SonnetCore LIB_NAME KF5SonnetCore DEPS "core" FILENAME_VAR PRI_FILENAME INCLUDE_INSTALL_DIR ${KDE_INSTALL_INCLUDEDIR_KF}/SonnetCore) +ecm_generate_pri_file( + BASE_NAME SonnetCore + LIB_NAME KF5SonnetCore + DEPS "core" + FILENAME_VAR PRI_FILENAME + INCLUDE_INSTALL_DIRS + ${KDE_INSTALL_INCLUDEDIR_KF}/Sonnet + ${KDE_INSTALL_INCLUDEDIR_KF}/SonnetCore +) install(FILES ${PRI_FILENAME} DESTINATION ${ECM_MKSPECS_INSTALL_DIR}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sonnet-5.91.0/src/core/settings.cpp new/sonnet-5.92.0/src/core/settings.cpp --- old/sonnet-5.91.0/src/core/settings.cpp 2022-02-05 22:32:46.000000000 +0100 +++ new/sonnet-5.92.0/src/core/settings.cpp 2022-03-05 14:09:51.000000000 +0100 @@ -190,7 +190,7 @@ if (!d->loader->settings()->setAutodetectLanguage(detect)) { return; } - Q_EMIT autodetectLanguage(); + Q_EMIT autodetectLanguageChanged(); Q_EMIT modifiedChanged(); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sonnet-5.91.0/src/core/settings.h new/sonnet-5.92.0/src/core/settings.h --- old/sonnet-5.91.0/src/core/settings.h 2022-02-05 22:32:46.000000000 +0100 +++ new/sonnet-5.92.0/src/core/settings.h 2022-03-05 14:09:51.000000000 +0100 @@ -29,7 +29,7 @@ Q_PROPERTY(bool backgroundCheckerEnabled READ backgroundCheckerEnabled WRITE setBackgroundCheckerEnabled NOTIFY backgroundCheckerEnabledChanged) /// This property holds whether Sonnet should be enabled by default. Q_PROPERTY(bool checkerEnabledByDefault READ checkerEnabledByDefault WRITE setCheckerEnabledByDefault NOTIFY checkerEnabledByDefaultChanged) - /// This property holds whether Sonnet sould skip checking compounds words. + /// This property holds whether Sonnet should skip checking compounds words. Q_PROPERTY(bool skipRunTogether READ skipRunTogether WRITE setSkipRunTogether NOTIFY skipRunTogetherChanged) /// This property holds the list of ignored words. Q_PROPERTY(QStringList currentIgnoreList READ currentIgnoreList WRITE setCurrentIgnoreList NOTIFY currentIgnoreListChanged) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sonnet-5.91.0/src/core/spellerplugin_p.h new/sonnet-5.92.0/src/core/spellerplugin_p.h --- old/sonnet-5.91.0/src/core/spellerplugin_p.h 2022-02-05 22:32:46.000000000 +0100 +++ new/sonnet-5.92.0/src/core/spellerplugin_p.h 2022-03-05 14:09:51.000000000 +0100 @@ -18,7 +18,7 @@ * as the actual spellchecker. * * @author Zack Rusin <[email protected]> - * @short class used for actuall spell checking + * @short class used for actual spell checking */ class SpellerPluginPrivate; class SONNETCORE_EXPORT SpellerPlugin @@ -46,7 +46,7 @@ virtual QStringList suggest(const QString &word) const = 0; /** - * Convience method calling isCorrect() and suggest() + * Convenient method calling isCorrect() and suggest() * if the word isn't correct. */ virtual bool checkAndSuggest(const QString &word, QStringList &suggestions) const; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sonnet-5.91.0/src/quick/spellcheckhighlighter.h new/sonnet-5.92.0/src/quick/spellcheckhighlighter.h --- old/sonnet-5.91.0/src/quick/spellcheckhighlighter.h 2022-02-05 22:32:46.000000000 +0100 +++ new/sonnet-5.92.0/src/quick/spellcheckhighlighter.h 2022-03-05 14:09:51.000000000 +0100 @@ -44,7 +44,7 @@ /// } /// \endcode /// -/// Additionally SpellcheckHighlighter provides some conveninent methods to create +/// Additionally SpellcheckHighlighter provides some convenient methods to create /// a context menu with suggestions. \see suggestions /// /// \since 5.88 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sonnet-5.91.0/src/ui/CMakeLists.txt new/sonnet-5.92.0/src/ui/CMakeLists.txt --- old/sonnet-5.91.0/src/ui/CMakeLists.txt 2022-02-05 22:32:46.000000000 +0100 +++ new/sonnet-5.92.0/src/ui/CMakeLists.txt 2022-03-05 14:09:51.000000000 +0100 @@ -110,5 +110,13 @@ endif() include(ECMGeneratePriFile) -ecm_generate_pri_file(BASE_NAME SonnetUi LIB_NAME KF5SonnetUi DEPS "widgets" FILENAME_VAR PRI_FILENAME INCLUDE_INSTALL_DIR ${KDE_INSTALL_INCLUDEDIR_KF}/SonnetUi) +ecm_generate_pri_file( + BASE_NAME SonnetUi + LIB_NAME KF5SonnetUi + DEPS "widgets" + FILENAME_VAR PRI_FILENAME + INCLUDE_INSTALL_DIRS + ${KDE_INSTALL_INCLUDEDIR_KF}/Sonnet + ${KDE_INSTALL_INCLUDEDIR_KF}/SonnetUi +) install(FILES ${PRI_FILENAME} DESTINATION ${ECM_MKSPECS_INSTALL_DIR})
