commit kconfig for openSUSE:Factory
Hello community, here is the log from the commit of package kconfig for openSUSE:Factory checked in at 2015-10-19 22:23:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kconfig (Old) and /work/SRC/openSUSE:Factory/.kconfig.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "kconfig" Changes: -------- --- /work/SRC/openSUSE:Factory/kconfig/kconfig.changes 2015-09-24 07:10:20.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.kconfig.new/kconfig.changes 2015-10-19 22:23:08.000000000 +0200 @@ -1,0 +2,8 @@ +Mon Oct 5 17:37:04 UTC 2015 - hrvoje.senjan@gmail.com + +- Update to 5.15.0 + * Mark kconfig-compiler as non-gui tool + * For more details please see: + https://www.kde.org/announcements/kde-frameworks-5.15.0.php + +------------------------------------------------------------------- Old: ---- kconfig-5.14.0.tar.xz New: ---- kconfig-5.15.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kconfig.spec ++++++ --- /var/tmp/diff_new_pack.x8WPKl/_old 2015-10-19 22:23:09.000000000 +0200 +++ /var/tmp/diff_new_pack.x8WPKl/_new 2015-10-19 22:23:09.000000000 +0200 @@ -18,9 +18,9 @@ %bcond_without lang %define sonum 5 -%define _tar_path 5.14 +%define _tar_path 5.15 Name: kconfig -Version: 5.14.0 +Version: 5.15.0 Release: 0 BuildRequires: cmake >= 2.8.12 BuildRequires: extra-cmake-modules >= %{_tar_path} ++++++ kconfig-5.14.0.tar.xz -> kconfig-5.15.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.14.0/CMakeLists.txt new/kconfig-5.15.0/CMakeLists.txt --- old/kconfig-5.14.0/CMakeLists.txt 2015-09-05 10:52:56.000000000 +0200 +++ new/kconfig-5.15.0/CMakeLists.txt 2015-10-05 09:55:41.000000000 +0200 @@ -3,7 +3,7 @@ project(KConfig) include(FeatureSummary) -find_package(ECM 5.14.0 NO_MODULE) +find_package(ECM 5.15.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) @@ -23,7 +23,7 @@ include(ECMMarkNonGuiExecutable) include(ECMPoQmTools) -set(KF5_VERSION "5.14.0") # handled by release scripts +set(KF5_VERSION "5.15.0") # handled by release scripts ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KCONFIG VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kconfig_version.h" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.14.0/autotests/kdesktopfiletest.cpp new/kconfig-5.15.0/autotests/kdesktopfiletest.cpp --- old/kconfig-5.14.0/autotests/kdesktopfiletest.cpp 2015-09-05 10:52:56.000000000 +0200 +++ new/kconfig-5.15.0/autotests/kdesktopfiletest.cpp 2015-10-05 09:55:41.000000000 +0200 @@ -37,6 +37,7 @@ "Type=Application\n" "Name=My Application\n" "Icon=foo\n" + "MimeType=text/plain;image/png;\n" "\n"; file.close(); QVERIFY(QFile::exists(fileName)); @@ -46,6 +47,8 @@ QVERIFY(df.hasApplicationType()); QCOMPARE(df.readName(), QString::fromLatin1("My Application")); QCOMPARE(df.readIcon(), QString::fromLatin1("foo")); + QCOMPARE(df.readMimeTypes(), QStringList() << QString::fromLatin1("text/plain") + << QString::fromLatin1("image/png")); QVERIFY(!df.hasLinkType()); QCOMPARE(df.fileName(), QFileInfo(fileName).canonicalFilePath()); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.14.0/po/de/kconfig5_qt.po new/kconfig-5.15.0/po/de/kconfig5_qt.po --- old/kconfig-5.14.0/po/de/kconfig5_qt.po 2015-09-05 10:52:56.000000000 +0200 +++ new/kconfig-5.15.0/po/de/kconfig5_qt.po 2015-10-05 09:55:41.000000000 +0200 @@ -1,13 +1,13 @@ # Thomas Diehl <thd@kde.org>, 2003. # Thomas Reitelbach <tr@erdfunkstelle.de>, 2006, 2007, 2008. # Frederik Schwarzer <schwarzer@kde.org>, 2012, 2014. -# Burkhard Lück <lueck@hube-lueck.de>, 2014. +# Burkhard Lück <lueck@hube-lueck.de>, 2014, 2015. msgid "" msgstr "" "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: 2014-09-18 17:55+0200\n" +"PO-Revision-Date: 2015-09-14 17:42+0200\n" "Last-Translator: Burkhard Lück <lueck@hube-lueck.de>\n" "Language-Team: German <kde-i18n-de@kde.org>\n" "Language: de\n" @@ -452,7 +452,7 @@ #: kconf_update/kconf_update.cpp:957 msgctxt "main|" msgid "File(s) to read update instructions from" -msgstr "" +msgstr "Dateien, der die Aktualisierungs-Informationen entnommen werden sollen" #: kconfig_compiler/kconfig_compiler.cpp:1577 msgctxt "main|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.14.0/po/en_GB/kconfig5_qt.po new/kconfig-5.15.0/po/en_GB/kconfig5_qt.po --- old/kconfig-5.14.0/po/en_GB/kconfig5_qt.po 2015-09-05 10:52:56.000000000 +0200 +++ new/kconfig-5.15.0/po/en_GB/kconfig5_qt.po 2015-10-05 09:55:41.000000000 +0200 @@ -3,14 +3,14 @@ # # Malcolm Hunter <malcolm.hunter@gmx.co.uk>, 2003, 2008. # Andrew Coles <andrew_coles@yahoo.co.uk>, 2009. -# Steve Allewell <steve.allewell@gmail.com>, 2014. +# Steve Allewell <steve.allewell@gmail.com>, 2014, 2015. msgid "" msgstr "" "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: 2014-08-17 12:57+0100\n" -"Last-Translator: Steve Allewell <steve.allewell@gmail.com>\n" +"PO-Revision-Date: 2015-09-12 11:39+0100\n" +"Last-Translator: \n" "Language-Team: British English <kde-l10n-en_gb@kde.org>\n" "Language: en_GB\n" "MIME-Version: 1.0\n" @@ -443,6 +443,8 @@ "For unit tests only: use test directories to stay away from the user's real " "files" msgstr "" +"For unit tests only: use test directories to stay away from the user's real " +"files" #: kconf_update/kconf_update.cpp:956 msgctxt "main|" @@ -452,7 +454,7 @@ #: kconf_update/kconf_update.cpp:957 msgctxt "main|" msgid "File(s) to read update instructions from" -msgstr "" +msgstr "File(s) to read update instructions from" #: kconfig_compiler/kconfig_compiler.cpp:1577 msgctxt "main|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.14.0/po/eo/kconfig5_qt.po new/kconfig-5.15.0/po/eo/kconfig5_qt.po --- old/kconfig-5.14.0/po/eo/kconfig5_qt.po 2015-09-05 10:52:56.000000000 +0200 +++ new/kconfig-5.15.0/po/eo/kconfig5_qt.po 2015-10-05 09:55:41.000000000 +0200 @@ -473,22 +473,16 @@ msgstr "" #: kreadconfig/kreadconfig.cpp:56 kreadconfig/kwriteconfig.cpp:35 -#, fuzzy -#| msgid "Use <file> instead of global config" msgctxt "main|" msgid "Use <file> instead of global config" msgstr "Uzi <file> anstataŭ ol ĉieaj agordoj" #: kreadconfig/kreadconfig.cpp:57 kreadconfig/kwriteconfig.cpp:36 -#, fuzzy -#| msgid "Group to look in. Use repeatedly for nested groups." msgctxt "main|" msgid "Group to look in. Use repeatedly for nested groups." msgstr "Ekzaminenda grupo. Iteracie uzu por ingitaj grupoj." #: kreadconfig/kreadconfig.cpp:58 kreadconfig/kwriteconfig.cpp:37 -#, fuzzy -#| msgid "Key to look for" msgctxt "main|" msgid "Key to look for" msgstr "Serĉenda ŝlosilo" @@ -501,13 +495,9 @@ #: kreadconfig/kreadconfig.cpp:60 msgctxt "main|" msgid "Type of variable" -msgstr "" +msgstr "Speco de variablo" #: kreadconfig/kwriteconfig.cpp:38 -#, fuzzy -#| msgid "" -#| "Type of variable. Use \"bool\" for a boolean, otherwise it is treated as " -#| "a string" msgctxt "main|" msgid "" "Type of variable. Use \"bool\" for a boolean, otherwise it is treated as a " @@ -517,8 +507,6 @@ "ĉeno" #: kreadconfig/kwriteconfig.cpp:39 -#, fuzzy -#| msgid "The value to write. Mandatory, on a shell use '' for empty" msgctxt "main|" msgid "The value to write. Mandatory, on a shell use '' for empty" msgstr "La skribenda valoro. Nepre, en ŝelo uzu '' kiel malplena" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.14.0/po/nb/kconfig5_qt.po new/kconfig-5.15.0/po/nb/kconfig5_qt.po --- old/kconfig-5.14.0/po/nb/kconfig5_qt.po 2015-09-05 10:52:56.000000000 +0200 +++ new/kconfig-5.15.0/po/nb/kconfig5_qt.po 2015-10-05 09:55:41.000000000 +0200 @@ -1,5 +1,3 @@ -# Translation of kconfig5_qt to Norwegian Bokmål -# # Knut Yrvin <knut.yrvin@gmail.com>, 2003. # Bjørn Kvisli <bjorn.kvisli@gmail.com>, 2007. # Bjørn Steensrud <bjornst@skogkatt.homelinux.org>, 2008, 2014. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.14.0/po/nn/kconfig5_qt.po new/kconfig-5.15.0/po/nn/kconfig5_qt.po --- old/kconfig-5.14.0/po/nn/kconfig5_qt.po 2015-09-05 10:52:56.000000000 +0200 +++ new/kconfig-5.15.0/po/nn/kconfig5_qt.po 2015-10-05 09:55:41.000000000 +0200 @@ -8,7 +8,7 @@ "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: 2015-06-02 19:26+0100\n" +"PO-Revision-Date: 2015-09-12 19:07+0100\n" "Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n" "Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n" "Language: nn\n" @@ -444,7 +444,7 @@ msgid "" "For unit tests only: use test directories to stay away from the user's real " "files" -msgstr "" +msgstr "Berre for einingstestar: bruk testmapper for å unngå brukarens filer" #: kconf_update/kconf_update.cpp:956 msgctxt "main|" @@ -454,7 +454,7 @@ #: kconf_update/kconf_update.cpp:957 msgctxt "main|" msgid "File(s) to read update instructions from" -msgstr "" +msgstr "Fil(er) å lesa oppdateringsinstruksjonar frå" #: kconfig_compiler/kconfig_compiler.cpp:1577 msgctxt "main|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.14.0/po/se/kconfig5_qt.po new/kconfig-5.15.0/po/se/kconfig5_qt.po --- old/kconfig-5.14.0/po/se/kconfig5_qt.po 2015-09-05 10:52:56.000000000 +0200 +++ new/kconfig-5.15.0/po/se/kconfig5_qt.po 2015-10-05 09:55:41.000000000 +0200 @@ -1,5 +1,3 @@ -# Translation of kconfig5_qt to Northern Sami -# # Børre Gaup <boerre@skolelinux.no>, 2004, 2005. msgid "" msgstr "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.14.0/po/sr/kconfig5_qt.po new/kconfig-5.15.0/po/sr/kconfig5_qt.po --- old/kconfig-5.14.0/po/sr/kconfig5_qt.po 2015-09-05 10:52:56.000000000 +0200 +++ new/kconfig-5.15.0/po/sr/kconfig5_qt.po 2015-10-05 09:55:41.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: 2015-08-09 11:30+0200\n" "Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\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:903 msgctxt "KConfig|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.14.0/po/sr@ijekavian/kconfig5_qt.po new/kconfig-5.15.0/po/sr@ijekavian/kconfig5_qt.po --- old/kconfig-5.14.0/po/sr@ijekavian/kconfig5_qt.po 2015-09-05 10:52:56.000000000 +0200 +++ new/kconfig-5.15.0/po/sr@ijekavian/kconfig5_qt.po 2015-10-05 09:55:41.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: 2015-08-09 11:30+0200\n" "Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\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:903 msgctxt "KConfig|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.14.0/po/sr@ijekavianlatin/kconfig5_qt.po new/kconfig-5.15.0/po/sr@ijekavianlatin/kconfig5_qt.po --- old/kconfig-5.14.0/po/sr@ijekavianlatin/kconfig5_qt.po 2015-09-05 10:52:56.000000000 +0200 +++ new/kconfig-5.15.0/po/sr@ijekavianlatin/kconfig5_qt.po 2015-10-05 09:55:41.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: 2015-08-09 11:30+0200\n" "Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\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:903 msgctxt "KConfig|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.14.0/po/sr@latin/kconfig5_qt.po new/kconfig-5.15.0/po/sr@latin/kconfig5_qt.po --- old/kconfig-5.14.0/po/sr@latin/kconfig5_qt.po 2015-09-05 10:52:56.000000000 +0200 +++ new/kconfig-5.15.0/po/sr@latin/kconfig5_qt.po 2015-10-05 09:55:41.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: 2015-08-09 11:30+0200\n" "Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\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:903 msgctxt "KConfig|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.14.0/src/core/kdesktopfile.cpp new/kconfig-5.15.0/src/core/kdesktopfile.cpp --- old/kconfig-5.14.0/src/core/kdesktopfile.cpp 2015-09-05 10:52:56.000000000 +0200 +++ new/kconfig-5.15.0/src/core/kdesktopfile.cpp 2015-10-05 09:55:41.000000000 +0200 @@ -237,6 +237,12 @@ return d->desktopGroup.readXdgListEntry("Actions"); } +QStringList KDesktopFile::readMimeTypes() const +{ + Q_D(const KDesktopFile); + return d->desktopGroup.readXdgListEntry("MimeType"); +} + KConfigGroup KDesktopFile::actionGroup(const QString &group) { return KConfigGroup(this, QLatin1String("Desktop Action ") + group); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.14.0/src/core/kdesktopfile.h new/kconfig-5.15.0/src/core/kdesktopfile.h --- old/kconfig-5.14.0/src/core/kdesktopfile.h 2015-09-05 10:52:56.000000000 +0200 +++ new/kconfig-5.15.0/src/core/kdesktopfile.h 2015-10-05 09:55:41.000000000 +0200 @@ -160,6 +160,13 @@ QStringList readActions() const; /** + * Returns a list of the "MimeType=" entries. + * @return the list of mime types + * @since 5.15 + */ + QStringList readMimeTypes() const; + + /** * Sets the desktop action group. * @param group the new action group */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.14.0/src/kconfig_compiler/CMakeLists.txt new/kconfig-5.15.0/src/kconfig_compiler/CMakeLists.txt --- old/kconfig-5.14.0/src/kconfig_compiler/CMakeLists.txt 2015-09-05 10:52:56.000000000 +0200 +++ new/kconfig-5.15.0/src/kconfig_compiler/CMakeLists.txt 2015-10-05 09:55:41.000000000 +0200 @@ -20,4 +20,6 @@ target_link_libraries(kconfig_compiler Qt5::Xml) +ecm_mark_nongui_executable(kconfig_compiler) + install(TARGETS kconfig_compiler EXPORT KF5ConfigCompilerTargets DESTINATION ${KDE_INSTALL_LIBEXECDIR_KF5})
participants (1)
-
root@hilbert.suse.de