Hello community, here is the log from the commit of package kconfig for openSUSE:Factory checked in at 2017-08-24 17:54:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kconfig (Old) and /work/SRC/openSUSE:Factory/.kconfig.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kconfig" Thu Aug 24 17:54:12 2017 rev:46 rq:516663 version:5.37.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kconfig/kconfig.changes 2017-07-17 10:22:45.858677178 +0200 +++ /work/SRC/openSUSE:Factory/.kconfig.new/kconfig.changes 2017-08-24 17:55:47.515750603 +0200 @@ -1,0 +2,15 @@ +Sat Aug 12 09:23:19 UTC 2017 - [email protected] + +- Update to 5.37.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/kde-frameworks-5.37.0.php +- Changes since 5.36.0 : + * Allow to build KConfig without Qt5Gui + * autotests: fix the failures I got here. + * Standard shortcuts: use Ctrl+PageUp/PageDown for prev/next tab. + * API dox: fix QT_*_HOME notes (typo, wrong enum type, markup) + * API dox: update url from kdelibs to kconfig + * API dox: use @param for normal parameter listing, not @arg + +------------------------------------------------------------------- Old: ---- kconfig-5.36.0.tar.xz New: ---- kconfig-5.37.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kconfig.spec ++++++ --- /var/tmp/diff_new_pack.hj92Al/_old 2017-08-24 17:55:48.055674555 +0200 +++ /var/tmp/diff_new_pack.hj92Al/_new 2017-08-24 17:55:48.059673992 +0200 @@ -18,9 +18,9 @@ %bcond_without lang %define sonum 5 -%define _tar_path 5.36 +%define _tar_path 5.37 Name: kconfig -Version: 5.36.0 +Version: 5.37.0 Release: 0 BuildRequires: cmake >= 3.0 BuildRequires: extra-cmake-modules >= %{_tar_path} ++++++ kconfig-5.36.0.tar.xz -> kconfig-5.37.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/.arcconfig new/kconfig-5.37.0/.arcconfig --- old/kconfig-5.36.0/.arcconfig 1970-01-01 01:00:00.000000000 +0100 +++ new/kconfig-5.37.0/.arcconfig 2017-08-06 19:58:14.000000000 +0200 @@ -0,0 +1,3 @@ +{ + "phabricator.uri" : "https://phabricator.kde.org/" +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/CMakeLists.txt new/kconfig-5.37.0/CMakeLists.txt --- old/kconfig-5.36.0/CMakeLists.txt 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/CMakeLists.txt 2017-08-06 19:58:14.000000000 +0200 @@ -1,18 +1,22 @@ cmake_minimum_required(VERSION 3.0) -set(KF5_VERSION "5.36.0") # handled by release scripts +set(KF5_VERSION "5.37.0") # handled by release scripts project(KConfig VERSION ${KF5_VERSION}) include(FeatureSummary) -find_package(ECM 5.36.0 NO_MODULE) +find_package(ECM 5.37.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) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) -set(REQUIRED_QT_VERSION 5.6.0) +set(REQUIRED_QT_VERSION 5.7.0) -find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Gui Xml) +find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Xml) +option(KCONFIG_USE_GUI "Build components using Qt5Gui" ON) +if(KCONFIG_USE_GUI) + find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Gui) +endif() include(KDEInstallDirs) include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) include(KDECMakeSettings) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/autotests/CMakeLists.txt new/kconfig-5.37.0/autotests/CMakeLists.txt --- old/kconfig-5.36.0/autotests/CMakeLists.txt 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/autotests/CMakeLists.txt 2017-08-06 19:58:14.000000000 +0200 @@ -52,6 +52,7 @@ target_include_directories(test_kconf_update PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/../src/kconf_update) +if(TARGET Qt5::Gui) ecm_add_tests( kconfigguitest.cpp kconfigloadertest.cpp @@ -61,5 +62,10 @@ LINK_LIBRARIES KF5::ConfigGui Qt5::Test ) -add_subdirectory(kconfig_compiler) +# These tests do a global cleanup of ~/.qttest, so they can't run in parallel +set_tests_properties(kconfigcore-kconfigtest PROPERTIES RUN_SERIAL TRUE) +set_tests_properties(kconfigcore-kconfignokdehometest PROPERTIES RUN_SERIAL TRUE) +set_tests_properties(kconfiggui-kconfigguitest PROPERTIES RUN_SERIAL TRUE) +add_subdirectory(kconfig_compiler) +endif() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/autotests/kconfigskeletontest.cpp new/kconfig-5.37.0/autotests/kconfigskeletontest.cpp --- old/kconfig-5.36.0/autotests/kconfigskeletontest.cpp 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/autotests/kconfigskeletontest.cpp 2017-08-06 19:58:14.000000000 +0200 @@ -35,6 +35,11 @@ #define WRITE_SETTING3 QFont("helvetica",14) #define WRITE_SETTING4 QString("KDE") +void KConfigSkeletonTest::initTestCase() +{ + QStandardPaths::setTestModeEnabled(true); +} + void KConfigSkeletonTest::init() { QFile::remove(QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation) + "/kconfigskeletontestrc"); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/autotests/kconfigskeletontest.h new/kconfig-5.37.0/autotests/kconfigskeletontest.h --- old/kconfig-5.36.0/autotests/kconfigskeletontest.h 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/autotests/kconfigskeletontest.h 2017-08-06 19:58:14.000000000 +0200 @@ -27,6 +27,7 @@ public: private Q_SLOTS: + void initTestCase(); void init(); void cleanup(); void testSimple(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/docs/options.md new/kconfig-5.37.0/docs/options.md --- old/kconfig-5.36.0/docs/options.md 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/docs/options.md 2017-08-06 19:58:14.000000000 +0200 @@ -91,9 +91,9 @@ Name[$ei]=${USER} There are three environment variables that have a fallback strategy if the -environment variable is not set. They instead map to a location from QStanardPaths. +environment variable is not set. They instead map to a location from QStandardPaths. They are: - `$QT_CACHE_HOME` - QStandardPaths::GenericConfigLocation - `$QT_CONFIG_HOME` - QStandardPaths::GenericConfigLocation - `$QT_DATA_HOME` - QStandardPaths::GenericDataLocation +* `$QT_CACHE_HOME` - QStandardPaths::GenericCacheLocation +* `$QT_CONFIG_HOME` - QStandardPaths::GenericConfigLocation +* `$QT_DATA_HOME` - QStandardPaths::GenericDataLocation diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/po/gl/kconfig5_qt.po new/kconfig-5.37.0/po/gl/kconfig5_qt.po --- old/kconfig-5.36.0/po/gl/kconfig5_qt.po 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/po/gl/kconfig5_qt.po 2017-08-06 19:58:14.000000000 +0200 @@ -11,9 +11,8 @@ "Project-Id-Version: kwriteconfig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2014-04-11 02:17+0000\n" -"PO-Revision-Date: 2017-03-15 21:50+0100\n" -"Last-Translator: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail." -"com>\n" +"PO-Revision-Date: 2017-07-24 17:13+0100\n" +"Last-Translator: Adrián Chaves <[email protected]>\n" "Language-Team: Galician <[email protected]>\n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -436,22 +435,22 @@ #: gui/kstandardshortcut.cpp:167 msgctxt "KStandardShortcut|@action" msgid "Delete File" -msgstr "" +msgstr "Eliminar o ficheiro" #: gui/kstandardshortcut.cpp:168 msgctxt "KStandardShortcut|@action" msgid "Rename File" -msgstr "" +msgstr "Cambiar o nome do ficheiro" #: gui/kstandardshortcut.cpp:169 msgctxt "KStandardShortcut|@action" msgid "Move to Trash" -msgstr "" +msgstr "Botar no lixo" #: gui/kstandardshortcut.cpp:170 msgctxt "KStandardShortcut|@action" msgid "Donate" -msgstr "" +msgstr "Doar" #: kconf_update/kconf_update.cpp:953 msgctxt "main|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/po/sr/kconfig5_qt.po new/kconfig-5.37.0/po/sr/kconfig5_qt.po --- old/kconfig-5.36.0/po/sr/kconfig5_qt.po 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/po/sr/kconfig5_qt.po 2017-08-06 19:58:14.000000000 +0200 @@ -3,7 +3,6 @@ msgid "" msgstr "" "Project-Id-Version: kconfig5_qt\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2014-04-11 02:17+0000\n" "PO-Revision-Date: 2016-09-25 23:34+0200\n" "Last-Translator: Chusslove Illich <[email protected]>\n" @@ -18,6 +17,7 @@ "X-Text-Markup: qtrich\n" "X-Environment: kde\n" "X-Qt-Contexts: true\n" +"Report-Msgid-Bugs-To: http://bugs.kde.org\n" #: core/kconfig.cpp:909 msgctxt "KConfig|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/po/sr@ijekavian/kconfig5_qt.po new/kconfig-5.37.0/po/sr@ijekavian/kconfig5_qt.po --- old/kconfig-5.36.0/po/sr@ijekavian/kconfig5_qt.po 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/po/sr@ijekavian/kconfig5_qt.po 2017-08-06 19:58:14.000000000 +0200 @@ -3,7 +3,6 @@ msgid "" msgstr "" "Project-Id-Version: kconfig5_qt\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2014-04-11 02:17+0000\n" "PO-Revision-Date: 2016-09-25 23:34+0200\n" "Last-Translator: Chusslove Illich <[email protected]>\n" @@ -18,6 +17,7 @@ "X-Text-Markup: qtrich\n" "X-Environment: kde\n" "X-Qt-Contexts: true\n" +"Report-Msgid-Bugs-To: http://bugs.kde.org\n" #: core/kconfig.cpp:909 msgctxt "KConfig|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/po/sr@ijekavianlatin/kconfig5_qt.po new/kconfig-5.37.0/po/sr@ijekavianlatin/kconfig5_qt.po --- old/kconfig-5.36.0/po/sr@ijekavianlatin/kconfig5_qt.po 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/po/sr@ijekavianlatin/kconfig5_qt.po 2017-08-06 19:58:14.000000000 +0200 @@ -3,7 +3,6 @@ msgid "" msgstr "" "Project-Id-Version: kconfig5_qt\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2014-04-11 02:17+0000\n" "PO-Revision-Date: 2016-09-25 23:34+0200\n" "Last-Translator: Chusslove Illich <[email protected]>\n" @@ -18,6 +17,7 @@ "X-Text-Markup: qtrich\n" "X-Environment: kde\n" "X-Qt-Contexts: true\n" +"Report-Msgid-Bugs-To: http://bugs.kde.org\n" #: core/kconfig.cpp:909 msgctxt "KConfig|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/po/sr@latin/kconfig5_qt.po new/kconfig-5.37.0/po/sr@latin/kconfig5_qt.po --- old/kconfig-5.36.0/po/sr@latin/kconfig5_qt.po 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/po/sr@latin/kconfig5_qt.po 2017-08-06 19:58:14.000000000 +0200 @@ -3,7 +3,6 @@ msgid "" msgstr "" "Project-Id-Version: kconfig5_qt\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2014-04-11 02:17+0000\n" "PO-Revision-Date: 2016-09-25 23:34+0200\n" "Last-Translator: Chusslove Illich <[email protected]>\n" @@ -18,6 +17,7 @@ "X-Text-Markup: qtrich\n" "X-Environment: kde\n" "X-Qt-Contexts: true\n" +"Report-Msgid-Bugs-To: http://bugs.kde.org\n" #: core/kconfig.cpp:909 msgctxt "KConfig|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/po/zh_CN/kconfig5_qt.po new/kconfig-5.37.0/po/zh_CN/kconfig5_qt.po --- old/kconfig-5.36.0/po/zh_CN/kconfig5_qt.po 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/po/zh_CN/kconfig5_qt.po 2017-08-06 19:58:14.000000000 +0200 @@ -1,24 +1,20 @@ -# -# Yan Shuangchun <[email protected]>, 2003. -# Feng Chao <[email protected]>, 2014. -# Xuetian Weng <[email protected]>, 2014. -# Weng Xuetian <[email protected]>, 2016. -# Guo Yunhe <[email protected]>, 2017. msgid "" msgstr "" -"Project-Id-Version: kwriteconfig\n" +"Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2014-04-11 02:17+0000\n" -"PO-Revision-Date: 2017-02-02 17:41+0200\n" -"Last-Translator: Guo Yunhe <[email protected]>\n" -"Language-Team: Chinese <[email protected]>\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2017-07-13 11:17-0400\n" +"Last-Translator: guoyunhebrave <[email protected]>\n" +"Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "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" -"X-Generator: Lokalize 2.0\n" -"X-Qt-Contexts: true\n" +"X-Generator: crowdin.com\n" +"X-Crowdin-Project: kdeorg\n" +"X-Crowdin-Language: zh-CN\n" +"X-Crowdin-File: /kf5-trunk/messages/frameworks/baloo_file5.pot\n" #: core/kconfig.cpp:909 msgctxt "KConfig|" @@ -477,7 +473,7 @@ #: kconfig_compiler/kconfig_compiler.cpp:1572 msgctxt "main|" msgid "Directory to generate files in [.]" -msgstr "生成文件的目录" +msgstr "在 [.] 中生成文件的目录" #: kconfig_compiler/kconfig_compiler.cpp:1573 msgctxt "main|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/src/CMakeLists.txt new/kconfig-5.37.0/src/CMakeLists.txt --- old/kconfig-5.36.0/src/CMakeLists.txt 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/src/CMakeLists.txt 2017-08-06 19:58:14.000000000 +0200 @@ -1,5 +1,7 @@ add_subdirectory(core) -add_subdirectory(gui) +if(TARGET Qt5::Gui) + add_subdirectory(gui) +endif() add_subdirectory(kconfig_compiler) add_subdirectory(kconf_update) add_subdirectory(kreadconfig) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/src/core/CMakeLists.txt new/kconfig-5.37.0/src/core/CMakeLists.txt --- old/kconfig-5.36.0/src/core/CMakeLists.txt 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/src/core/CMakeLists.txt 2017-08-06 19:58:14.000000000 +0200 @@ -1,6 +1,3 @@ - -find_package(Qt5Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) - set(libkconfigcore_SRCS kconfig.cpp kconfigbase.cpp diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/src/core/kconfigbackend.desktop new/kconfig-5.37.0/src/core/kconfigbackend.desktop --- old/kconfig-5.36.0/src/core/kconfigbackend.desktop 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/src/core/kconfigbackend.desktop 2017-08-06 19:58:14.000000000 +0200 @@ -24,7 +24,7 @@ Comment[eu]=KConfig-en biltegiratze euskarria Comment[fa]=پشتیبان دخیرهگاه برای KConfig Comment[fi]=Asetusvaraston taustaosa -Comment[fr]=Module de stockage pour KConfig +Comment[fr]=Moteur de stockage pour KConfig Comment[fy]=Opslach efterein foar KConfig Comment[ga]=Inneall stórais KConfig Comment[gd]=Backend stòrais airson KConfig diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/src/core/kcoreconfigskeleton.h new/kconfig-5.37.0/src/core/kcoreconfigskeleton.h --- old/kconfig-5.36.0/src/core/kcoreconfigskeleton.h 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/src/core/kcoreconfigskeleton.h 2017-08-06 19:58:14.000000000 +0200 @@ -1379,7 +1379,7 @@ /** * Removes and deletes an item by name - * @arg name the name of the item to remove + * @param name the name of the item to remove */ void removeItem(const QString &name); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/src/gui/CMakeLists.txt new/kconfig-5.37.0/src/gui/CMakeLists.txt --- old/kconfig-5.36.0/src/gui/CMakeLists.txt 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/src/gui/CMakeLists.txt 2017-08-06 19:58:14.000000000 +0200 @@ -1,7 +1,3 @@ - -find_package(Qt5Gui ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) -find_package(Qt5Xml ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) - set(libkconfiggui_SRCS kconfiggui.cpp kconfiggroupgui.cpp diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/src/gui/kstandardshortcut.cpp new/kconfig-5.37.0/src/gui/kstandardshortcut.cpp --- old/kconfig-5.36.0/src/gui/kstandardshortcut.cpp 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/src/gui/kstandardshortcut.cpp 2017-08-06 19:58:14.000000000 +0200 @@ -119,8 +119,8 @@ { FullScreen, "FullScreen", QT_TRANSLATE_NOOP3("KStandardShortcut", "Full Screen Mode", "@action"), CTRLSHIFT(F), 0, QList<QKeySequence>(), false }, { ShowMenubar, "ShowMenubar", QT_TRANSLATE_NOOP3("KStandardShortcut", "Show Menu Bar", "@action"), CTRL(M), 0, QList<QKeySequence>(), false }, - { TabNext, "Activate Next Tab", QT_TRANSLATE_NOOP3("KStandardShortcut", "Activate Next Tab", "@action"), CTRL(Period), CTRL(BracketRight), QList<QKeySequence>(), false }, - { TabPrev, "Activate Previous Tab", QT_TRANSLATE_NOOP3("KStandardShortcut", "Activate Previous Tab", "@action"), CTRL(Comma), CTRL(BracketLeft), QList<QKeySequence>(), false }, + { TabNext, "Activate Next Tab", QT_TRANSLATE_NOOP3("KStandardShortcut", "Activate Next Tab", "@action"), CTRL(PageDown), CTRL(BracketRight), QList<QKeySequence>(), false }, + { TabPrev, "Activate Previous Tab", QT_TRANSLATE_NOOP3("KStandardShortcut", "Activate Previous Tab", "@action"), CTRL(PageUp), CTRL(BracketLeft), QList<QKeySequence>(), false }, //Group Help { Help, "Help", QT_TRANSLATE_NOOP3("KStandardShortcut", "Help", "@action"), Qt::Key_F1, 0, QList<QKeySequence>(), false }, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/src/kconf_update/CMakeLists.txt new/kconfig-5.37.0/src/kconf_update/CMakeLists.txt --- old/kconfig-5.36.0/src/kconf_update/CMakeLists.txt 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/src/kconf_update/CMakeLists.txt 2017-08-06 19:58:14.000000000 +0200 @@ -1,5 +1,3 @@ -find_package(Qt5Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) - remove_definitions(-DQT_NO_CAST_FROM_ASCII) ########### next target ############### diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/src/kconf_update/Mainpage.dox new/kconfig-5.37.0/src/kconf_update/Mainpage.dox --- old/kconfig-5.36.0/src/kconf_update/Mainpage.dox 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/src/kconf_update/Mainpage.dox 2017-08-06 19:58:14.000000000 +0200 @@ -16,7 +16,7 @@ kconf_update addresses these problems by offering a framework to update configuration files without adding code to the application itself. -See the <a href="http://websvn.kde.org/trunk/KDE/kdelibs/kconf_update/README.kconf_update?view=markup">README file</a> for more information. +See the <a href="https://commits.kde.org/kconfig?path=src/kconf_update/README.kconf_update">README file</a> for more information. @authors Waldo Bastian \<[email protected]\> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.36.0/src/kconfig_compiler/CMakeLists.txt new/kconfig-5.37.0/src/kconfig_compiler/CMakeLists.txt --- old/kconfig-5.36.0/src/kconfig_compiler/CMakeLists.txt 2017-07-02 09:58:21.000000000 +0200 +++ new/kconfig-5.37.0/src/kconfig_compiler/CMakeLists.txt 2017-08-06 19:58:14.000000000 +0200 @@ -16,8 +16,6 @@ add_executable(KF5::kconfig_compiler ALIAS kconfig_compiler) endif() -find_package(Qt5Xml ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) - target_link_libraries(kconfig_compiler Qt5::Xml) ecm_mark_nongui_executable(kconfig_compiler)
