Hello community, here is the log from the commit of package k4dirstat for openSUSE:Factory checked in at 2019-04-03 09:28:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/k4dirstat (Old) and /work/SRC/openSUSE:Factory/.k4dirstat.new.25356 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "k4dirstat" Wed Apr 3 09:28:29 2019 rev:3 rq:690699 version:3.1.4 Changes: -------- --- /work/SRC/openSUSE:Factory/k4dirstat/k4dirstat.changes 2018-05-29 10:45:03.904171103 +0200 +++ /work/SRC/openSUSE:Factory/.k4dirstat.new.25356/k4dirstat.changes 2019-04-03 09:28:32.391830071 +0200 @@ -1,0 +2,7 @@ +Tue Apr 2 15:30:22 UTC 2019 - Christophe Giboudeaux <[email protected]> + +- Update to 3.1.4: + * No longer ignore files containing dot when reading cache file + * Remove trailing slash from command line argument + +------------------------------------------------------------------- Old: ---- k4dirstat-3.1.3.tar.bz2 New: ---- k4dirstat-3.1.4.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ k4dirstat.spec ++++++ --- /var/tmp/diff_new_pack.Aec18N/_old 2019-04-03 09:28:33.075830393 +0200 +++ /var/tmp/diff_new_pack.Aec18N/_new 2019-04-03 09:28:33.075830393 +0200 @@ -1,7 +1,7 @@ # # spec file for package k4dirstat # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,12 +12,12 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # Name: k4dirstat -Version: 3.1.3 +Version: 3.1.4 Release: 0 Summary: Graphical Disk Usage Utility License: GPL-2.0-only AND LGPL-2.0-only @@ -50,7 +50,7 @@ %lang_package %prep -%setup -q -n jeromerobert-k4dirstat-fcf698417d42 +%setup -q -n jeromerobert-k4dirstat-0fd87f361645 %build %cmake_kf5 -d build ++++++ k4dirstat-3.1.3.tar.bz2 -> k4dirstat-3.1.4.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jeromerobert-k4dirstat-fcf698417d42/CMakeLists.txt new/jeromerobert-k4dirstat-0fd87f361645/CMakeLists.txt --- old/jeromerobert-k4dirstat-fcf698417d42/CMakeLists.txt 2017-12-30 16:37:32.000000000 +0100 +++ new/jeromerobert-k4dirstat-0fd87f361645/CMakeLists.txt 2019-02-16 20:27:39.000000000 +0100 @@ -47,7 +47,7 @@ add_definitions(-DQT_NO_URL_CAST_FROM_STRING) -git_version(K4DIRSTAT_VERSION 3.1.3 k4dirstat-) +git_version(K4DIRSTAT_VERSION 3.1.4 k4dirstat-) add_subdirectory( doc ) add_subdirectory( src ) add_subdirectory( icons ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jeromerobert-k4dirstat-fcf698417d42/README.md new/jeromerobert-k4dirstat-0fd87f361645/README.md --- old/jeromerobert-k4dirstat-fcf698417d42/README.md 2017-12-30 16:37:32.000000000 +0100 +++ new/jeromerobert-k4dirstat-0fd87f361645/README.md 2019-02-16 20:27:39.000000000 +0100 @@ -6,7 +6,10 @@ First install [Qt 5](http://www.qt.io) and [KDE Framework 5](https://www.kde.org) headers. On Debian and its derivatives it can be done with: - apt-get install extra-cmake-modules qtbase5-dev libkf5coreaddons-dev libkf5i18n-dev libkf5xmlgui-dev kdoctools-dev kio-dev +``` +apt-get install extra-cmake-modules qtbase5-dev libkf5coreaddons-dev \ + libkf5i18n-dev libkf5xmlgui-dev libkf5doctools-dev libkf5kio-dev +``` Then run [cmake](http://www.cmake.org): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jeromerobert-k4dirstat-fcf698417d42/src/kdirtreecache.cpp new/jeromerobert-k4dirstat-0fd87f361645/src/kdirtreecache.cpp --- old/jeromerobert-k4dirstat-fcf698417d42/src/kdirtreecache.cpp 2017-12-30 16:37:32.000000000 +0100 +++ new/jeromerobert-k4dirstat-0fd87f361645/src/kdirtreecache.cpp 2019-02-16 20:27:39.000000000 +0100 @@ -355,7 +355,7 @@ QString path, name; if(_tree->root()) { path = fileInfo.dir().path(); - name = fileInfo.baseName(); + name = fileInfo.fileName(); } else { path = fileInfo.filePath(); name = path; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jeromerobert-k4dirstat-fcf698417d42/src/main.cpp new/jeromerobert-k4dirstat-0fd87f361645/src/main.cpp --- old/jeromerobert-k4dirstat-fcf698417d42/src/main.cpp 2017-12-30 16:37:32.000000000 +0100 +++ new/jeromerobert-k4dirstat-0fd87f361645/src/main.cpp 2019-02-16 20:27:39.000000000 +0100 @@ -92,7 +92,7 @@ { // Process command line arguments as URLs or paths to scan QUrl u = QUrl::fromUserInput(args[0], QDir::currentPath(), QUrl::AssumeLocalFile); - kdirstat->openURL(u); + kdirstat->openURL(u.adjusted(QUrl::StripTrailingSlash | QUrl::NormalizePathSegments)); } }
