Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kconfig for openSUSE:Factory checked 
in at 2021-07-15 23:59:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kconfig (Old)
 and      /work/SRC/openSUSE:Factory/.kconfig.new.2625 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kconfig"

Thu Jul 15 23:59:25 2021 rev:96 rq:905480 version:5.84.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kconfig/kconfig.changes  2021-06-16 
20:35:09.663152958 +0200
+++ /work/SRC/openSUSE:Factory/.kconfig.new.2625/kconfig.changes        
2021-07-16 00:01:03.557240701 +0200
@@ -1,0 +2,11 @@
+Sun Jul  4 07:45:14 UTC 2021 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.84.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.84.0
+- Changes since 5.83.0:
+  * kconfigtest: save/restore XDG_CONFIG_DIRS
+- Only install the license files once
+
+-------------------------------------------------------------------

Old:
----
  kconfig-5.83.0.tar.xz
  kconfig-5.83.0.tar.xz.sig

New:
----
  kconfig-5.84.0.tar.xz
  kconfig-5.84.0.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kconfig.spec ++++++
--- /var/tmp/diff_new_pack.yDC6d0/_old  2021-07-16 00:01:04.081236907 +0200
+++ /var/tmp/diff_new_pack.yDC6d0/_new  2021-07-16 00:01:04.085236879 +0200
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.83
+%define _tar_path 5.84
 # 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:           kconfig
-Version:        5.83.0
+Version:        5.84.0
 Release:        0
 Summary:        Advanced configuration system
 License:        LGPL-2.1-or-later AND GPL-2.0-or-later
@@ -163,18 +163,15 @@
 %{_kf5_libdir}/libKF5ConfigCore.so.*
 
 %files -n libKF5ConfigGui%{sonum}
-%license LICENSES/*
 %doc README*
 %{_kf5_libdir}/libKF5ConfigGui.so.*
 
 %files -n kconf_update5
-%license LICENSES/*
 %doc README*
 %dir %{_kf5_libexecdir}
 %{_kf5_libexecdir}/kconf_update
 
 %files devel
-%license LICENSES/*
 %{_kf5_includedir}/
 %{_kf5_libdir}/cmake/KF5Config/
 %{_kf5_libdir}/libKF5ConfigCore.so


++++++ kconfig-5.83.0.tar.xz -> kconfig-5.84.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.83.0/CMakeLists.txt 
new/kconfig-5.84.0/CMakeLists.txt
--- old/kconfig-5.83.0/CMakeLists.txt   2021-06-05 11:14:10.000000000 +0200
+++ new/kconfig-5.84.0/CMakeLists.txt   2021-07-03 14:08:03.000000000 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.83.0") # handled by release scripts
+set(KF_VERSION "5.84.0") # handled by release scripts
 project(KConfig VERSION ${KF_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.83.0  NO_MODULE)
+find_package(ECM 5.84.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.83.0/autotests/kconfigtest.cpp 
new/kconfig-5.84.0/autotests/kconfigtest.cpp
--- old/kconfig-5.83.0/autotests/kconfigtest.cpp        2021-06-05 
11:14:10.000000000 +0200
+++ new/kconfig-5.84.0/autotests/kconfigtest.cpp        2021-07-03 
14:08:03.000000000 +0200
@@ -960,6 +960,7 @@
 #ifdef Q_XDG_PLATFORM
     QTemporaryDir middleDir;
     QTemporaryDir globalDir;
+    const QByteArray oldConfigDirs = qgetenv("XDG_CONFIG_DIRS");
     qputenv("XDG_CONFIG_DIRS", qPrintable(middleDir.path() + QLatin1Char(':') 
+ globalDir.path()));
 
     const QString globalConfigDir = globalDir.path() + QLatin1Char('/') + 
s_test_subdir;
@@ -999,6 +1000,7 @@
     QCOMPARE(group.readEntry("FromLocal"), QStringLiteral("vrai"));
     QCOMPARE(group.readEntry("Name"), QStringLiteral("FR"));
     QCOMPARE(group.readEntry("Other"), QStringLiteral("English Only")); // 
Global_FR is locally overriden
+    qputenv("XDG_CONFIG_DIRS", oldConfigDirs);
 #endif
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.83.0/po/de/kconfig5_qt.po 
new/kconfig-5.84.0/po/de/kconfig5_qt.po
--- old/kconfig-5.83.0/po/de/kconfig5_qt.po     2021-06-05 11:14:10.000000000 
+0200
+++ new/kconfig-5.84.0/po/de/kconfig5_qt.po     2021-07-03 14:08:03.000000000 
+0200
@@ -16,7 +16,6 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
-"X-Generator: Lokalize 19.12.3\n"
 
 #: core/kconfig.cpp:918
 msgctxt "KConfig|"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.83.0/po/hi/kconfig5_qt.po 
new/kconfig-5.84.0/po/hi/kconfig5_qt.po
--- old/kconfig-5.83.0/po/hi/kconfig5_qt.po     2021-06-05 11:14:10.000000000 
+0200
+++ new/kconfig-5.84.0/po/hi/kconfig5_qt.po     2021-07-03 14:08:03.000000000 
+0200
@@ -10,21 +10,21 @@
 "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: 2021-02-03 12:45+0530\n"
+"PO-Revision-Date: 2021-06-29 20:35+0530\n"
 "Last-Translator: Raghavendra Kamath <[email protected]>\n"
 "Language-Team: kde-hindi\n"
 "Language: hi\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 20.12.1\n"
+"X-Generator: Lokalize 21.04.2\n"
 "Plural-Forms: nplurals=2; plural=(n!=1);\n"
 "X-Qt-Contexts: true\n"
 
 #: core/kconfig.cpp:918
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
-msgstr "??????????????? ???????????? ?????????????????? 
?????????????????????????????? ?????? ?????????????????? ??????????????? "
+msgstr "??????????????? ???????????? ??????????????? 
?????????????????????????????? ?????? ?????????????????? ??????????????? "
 
 #: core/kconfigini.cpp:567
 #, qt-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.83.0/po/zh_CN/kconfig5_qt.po 
new/kconfig-5.84.0/po/zh_CN/kconfig5_qt.po
--- old/kconfig-5.83.0/po/zh_CN/kconfig5_qt.po  2021-06-05 11:14:10.000000000 
+0200
+++ new/kconfig-5.84.0/po/zh_CN/kconfig5_qt.po  2021-07-03 14:08:03.000000000 
+0200
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
-"PO-Revision-Date: 2021-06-03 16:05\n"
+"PO-Revision-Date: 2021-06-20 07:35\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"

Reply via email to