Hello community,

here is the log from the commit of package khelpcenter5 for openSUSE:Factory 
checked in at 2017-08-24 17:44:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/khelpcenter5 (Old)
 and      /work/SRC/openSUSE:Factory/.khelpcenter5.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "khelpcenter5"

Thu Aug 24 17:44:38 2017 rev:29 rq:516367 version:17.08.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/khelpcenter5/khelpcenter5.changes        
2017-07-25 11:29:12.187183459 +0200
+++ /work/SRC/openSUSE:Factory/.khelpcenter5.new/khelpcenter5.changes   
2017-08-24 17:44:42.197461247 +0200
@@ -1,0 +2,26 @@
+Fri Aug 11 22:45:31 UTC 2017 - [email protected]
+
+- Update to KDE Applications 17.08.0
+  * New feature release
+  * https://www.kde.org/announcements/announce-applications-17.08.0.php
+- Changes since 17.04.3 :
+  * Fix version comparison (unbreak compilation with 5.36) 
+  * Optional usage of documentationDirs from KDocTools 
+  * glossary: fix a sentence 
+  * Increase the default number of search results 
+  * Fix: look for dirs doc/HTML in the resource path 
+  * Fix minor typo 
+  * glossary: fix the definition of KDE 
+  * Bump the minimum Frameworks to 5.20.0 
+  * Use Q_DECL_OVERRIDE 
+  * Use the newer ECM variable for the doc directory 
+
+-------------------------------------------------------------------
+Sat Aug  5 18:17:49 UTC 2017 - [email protected]
+
+- Update to KDE Applications 17.07.90
+  * KDE Applications 17.07.90
+  * https://www.kde.org/announcements/announce-applications-17.07.90.php
+
+
+-------------------------------------------------------------------

Old:
----
  khelpcenter-17.04.3.tar.xz

New:
----
  khelpcenter-17.08.0.tar.xz

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

Other differences:
------------------
++++++ khelpcenter5.spec ++++++
--- /var/tmp/diff_new_pack.kM548m/_old  2017-08-24 17:44:43.465282672 +0200
+++ /var/tmp/diff_new_pack.kM548m/_new  2017-08-24 17:44:43.465282672 +0200
@@ -19,10 +19,10 @@
 %bcond_without lang
 
 %define kf5_version 5.26.0
-# Latest stable Applications (e.g. 16.08 in KA, but 16.11.80 in KUA)
+# Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)
 %{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 Name:           khelpcenter5
-Version:        17.04.3
+Version:        17.08.0
 Release:        0
 Summary:        KDE Documentation Application
 License:        GPL-2.0+
@@ -52,7 +52,9 @@
 Requires:       kdoctools
 Provides:       suse_help_viewer
 Conflicts:      kdebase4-runtime < 17.04.1
+%if %{with lang}
 Recommends:     %{name}-lang
+%endif
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -84,18 +86,18 @@
 %files
 %defattr(-,root,root)
 %doc COPYING* README*
-%{_kf5_libdir}/libkdeinit5_khelpcenter.so
-%{_kf5_bindir}/khelpcenter
+%config %{_kf5_configdir}/khelpcenter.categories
+%doc %lang(en) %{_kf5_htmldir}/en/*/
 %{_kf5_applicationsdir}/org.kde.Help.desktop
-%{_kf5_configkcfgdir}/
-%{_kf5_servicesdir}/
 %{_kf5_appstreamdir}/org.kde.Help.appdata.xml
-%{_kf5_sharedir}/kxmlgui5/
-%{_kf5_sharedir}/khelpcenter/
+%{_kf5_bindir}/khelpcenter
+%{_kf5_configkcfgdir}/
 %{_kf5_libdir}/libexec/
+%{_kf5_libdir}/libkdeinit5_khelpcenter.so
+%{_kf5_servicesdir}/
 %{_kf5_sharedir}/kde4/
-%doc %lang(en) %{_kf5_htmldir}/en/*/
-%config %{_kf5_configdir}/khelpcenter.categories
+%{_kf5_sharedir}/khelpcenter/
+%{_kf5_sharedir}/kxmlgui5/
 
 %if %{with lang}
 %files lang -f %{name}.lang

++++++ khelpcenter-17.04.3.tar.xz -> khelpcenter-17.08.0.tar.xz ++++++
++++ 10542 lines of diff (skipped)

++++++ khelpcenter-fallback-to-kde4-docs.patch ++++++
--- /var/tmp/diff_new_pack.kM548m/_old  2017-08-24 17:44:44.301164936 +0200
+++ /var/tmp/diff_new_pack.kM548m/_new  2017-08-24 17:44:44.301164936 +0200
@@ -1,23 +1,27 @@
 diff --git a/toc.cpp b/toc.cpp
-index e293ae8..42653d1 100644
+index 929c2d9..f4f3306 100644
 --- a/toc.cpp
 +++ b/toc.cpp
-@@ -84,7 +84,9 @@ void TOC::build( const QString &file )
- {
+@@ -89,10 +89,12 @@ void TOC::build( const QString &file )
      QFileInfo fileInfo( file );
      QString fileName = fileInfo.absoluteFilePath();
--    const QStringList resourceDirs = 
QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, "doc/HTML");
-+    QStringList resourceDirs = 
QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, "doc/HTML");
+ #if KCOREADDONS_VERSION >= QT_VERSION_CHECK(5, 36, 0)
+-    const QStringList resourceDirs = KDocTools::documentationDirs();
++    QStringList resourceDirs = KDocTools::documentationDirs();
+ #else
+-    const QStringList resourceDirs = 
QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, "doc/HTML", 
QStandardPaths::LocateDirectory);
++    QStringList resourceDirs = 
QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, "doc/HTML", 
QStandardPaths::LocateDirectory);
+ #endif
 +    QStringList fallbackresourceDirs = 
QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, "doc/kde/HTML");
 +    resourceDirs.append(fallbackresourceDirs);
      QStringList::ConstIterator it = resourceDirs.begin();
      QStringList::ConstIterator end = resourceDirs.end();
      for ( ; it != end; ++it ) {
 diff --git a/view.cpp b/view.cpp
-index 2e86960..2ab76f1 100644
+index 0df177e..b3e6823 100644
 --- a/view.cpp
 +++ b/view.cpp
-@@ -115,6 +115,19 @@ QString View::langLookup( const QString &fname )
+@@ -125,6 +125,19 @@ QString View::langLookup( const QString &fname )
          }
      }
  


Reply via email to