commit k4dirstat for openSUSE:Factory

2020-07-09 Thread root
Hello community,

here is the log from the commit of package k4dirstat for openSUSE:Factory 
checked in at 2020-07-09 13:16:40

Comparing /work/SRC/openSUSE:Factory/k4dirstat (Old)
 and  /work/SRC/openSUSE:Factory/.k4dirstat.new.3060 (New)


Package is "k4dirstat"

Thu Jul  9 13:16:40 2020 rev:5 rq:819522 version:3.2.1

Changes:

--- /work/SRC/openSUSE:Factory/k4dirstat/k4dirstat.changes  2020-01-13 
22:22:07.366534883 +0100
+++ /work/SRC/openSUSE:Factory/.k4dirstat.new.3060/k4dirstat.changes
2020-07-09 13:16:41.604762501 +0200
@@ -1,0 +2,6 @@
+Wed Jul  8 16:22:11 UTC 2020 - Wolfgang Bauer 
+
+- Update to 3.2.1 (boo#1173905):
+  * Fix crashes on startup in some certain KIO related circumstances
+
+---

Old:

  k4dirstat-3.2.0.tar.gz

New:

  k4dirstat-3.2.1.tar.gz



Other differences:
--
++ k4dirstat.spec ++
--- /var/tmp/diff_new_pack.ZlgGaD/_old  2020-07-09 13:16:43.356768038 +0200
+++ /var/tmp/diff_new_pack.ZlgGaD/_new  2020-07-09 13:16:43.356768038 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   k4dirstat
-Version:3.2.0
+Version:3.2.1
 Release:0
 Summary:Graphical Disk Usage Utility
 License:GPL-2.0-only AND LGPL-2.0-only

++ k4dirstat-3.2.0.tar.gz -> k4dirstat-3.2.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/k4dirstat-3.2.0/CMakeLists.txt 
new/k4dirstat-3.2.1/CMakeLists.txt
--- old/k4dirstat-3.2.0/CMakeLists.txt  2019-11-23 12:51:27.0 +0100
+++ new/k4dirstat-3.2.1/CMakeLists.txt  2020-04-20 10:41:03.0 +0200
@@ -47,7 +47,7 @@
 
 add_definitions(-DQT_NO_URL_CAST_FROM_STRING)
 
-git_version(K4DIRSTAT_VERSION 3.2.0 k4dirstat-)
+git_version(K4DIRSTAT_VERSION 3.2.1 k4dirstat-)
 add_subdirectory( doc )
 add_subdirectory( src )
 add_subdirectory( icons )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/k4dirstat-3.2.0/src/kdirtreeview.cpp 
new/k4dirstat-3.2.1/src/kdirtreeview.cpp
--- old/k4dirstat-3.2.0/src/kdirtreeview.cpp2019-11-23 12:51:27.0 
+0100
+++ new/k4dirstat-3.2.1/src/kdirtreeview.cpp2020-04-20 10:41:03.0 
+0200
@@ -34,9 +34,9 @@
 #define SEPARATE_READ_JOBS_COL 0
 #define VERBOSE_PROGRESS_INFO 0
 
-using namespace KDirStat;
+namespace KDirStat {
 
-class KDirStat::KDirModel: public QStandardItemModel {
+class KDirModel: public QStandardItemModel {
   KDirTreeView & view_;
   QStringList headers_;
 
@@ -1070,11 +1070,11 @@
 }
 
 
-QString KDirStat::formatSizeLong(KFileSize size) {
+QString formatSizeLong(KFileSize size) {
   return QLocale().toString(size);
 }
 
-QString KDirStat::hexKey(KFileSize size) {
+QString hexKey(KFileSize size) {
   /**
* This is optimized for performance, not for aesthetics.
* And every now and then the old C hacker breaks through in most of us...
@@ -1096,7 +1096,7 @@
   return QString(key);
 }
 
-QString KDirStat::formatTime(long millisec, bool showMilliSeconds) {
+QString formatTime(long millisec, bool showMilliSeconds) {
   QString formattedTime;
   int hours;
   int min;
@@ -1120,7 +1120,7 @@
   return formattedTime;
 }
 
-QString KDirStat::formatCount(int count, bool suppressZero) {
+QString formatCount(int count, bool suppressZero) {
   if (suppressZero && count == 0)
 return "";
 
@@ -1130,7 +1130,7 @@
   return countString;
 }
 
-QString KDirStat::formatPercent(float percent) {
+QString formatPercent(float percent) {
   QString percentString;
 
   percentString.sprintf("%.1f%%", percent);
@@ -1138,7 +1138,7 @@
   return percentString;
 }
 
-QString KDirStat::formatTimeDate(time_t rawTime) {
+QString formatTimeDate(time_t rawTime) {
   QString timeDateString;
   struct tm *t = localtime();
 
@@ -1186,13 +1186,13 @@
   return timeDateString;
 }
 
-QString KDirStat::localeTimeDate(time_t rawTime) {
+QString localeTimeDate(time_t rawTime) {
   QDateTime timeDate;
   timeDate.setTime_t(rawTime);
   return timeDate.toString(Qt::DefaultLocaleShortDate);
 }
 
-QColor KDirStat::contrastingColor(const QColor ,
+QColor contrastingColor(const QColor ,
   const QColor ) {
   if (desiredColor != contrastColor) {
 return desiredColor;
@@ -1207,3 +1207,4 @@
   }
 }
 
+} //namespace




commit k4dirstat for openSUSE:Factory

2020-01-13 Thread root
Hello community,

here is the log from the commit of package k4dirstat for openSUSE:Factory 
checked in at 2020-01-13 22:21:57

Comparing /work/SRC/openSUSE:Factory/k4dirstat (Old)
 and  /work/SRC/openSUSE:Factory/.k4dirstat.new.6675 (New)


Package is "k4dirstat"

Mon Jan 13 22:21:57 2020 rev:4 rq:763967 version:3.2.0

Changes:

--- /work/SRC/openSUSE:Factory/k4dirstat/k4dirstat.changes  2019-04-03 
09:28:32.391830071 +0200
+++ /work/SRC/openSUSE:Factory/.k4dirstat.new.6675/k4dirstat.changes
2020-01-13 22:22:07.366534883 +0100
@@ -1,0 +2,11 @@
+Mon Jan 13 12:35:34 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 3.2.0:
+  * Rewrite the tree view to support navigation with keyboard and
+multi-selection
+  * 'Open in terminal' now open Konsole in the selected folder
+  * Move from bitbucket to github
+- Add patch to fix build on Leap 15.1
+  * 0001-Add-the-missing-cassert-include.patch
+
+---

Old:

  k4dirstat-3.1.4.tar.bz2

New:

  0001-Add-the-missing-cassert-include.patch
  k4dirstat-3.2.0.tar.gz



Other differences:
--
++ k4dirstat.spec ++
--- /var/tmp/diff_new_pack.JbqexM/_old  2020-01-13 22:22:07.966535161 +0100
+++ /var/tmp/diff_new_pack.JbqexM/_new  2020-01-13 22:22:07.970535163 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package k4dirstat
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,15 @@
 
 
 Name:   k4dirstat
-Version:3.1.4
+Version:3.2.0
 Release:0
 Summary:Graphical Disk Usage Utility
 License:GPL-2.0-only AND LGPL-2.0-only
 Group:  Productivity/File utilities
-URL:https://bitbucket.org/jeromerobert/k4dirstat/wiki/Home
-Source0:
https://bitbucket.org/jeromerobert/k4dirstat/get/%{name}-%{version}.tar.bz2
+URL:https://github.com/jeromerobert/k4dirstat
+Source0:
https://github.com/jeromerobert/k4dirstat/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM
+Patch0: 0001-Add-the-missing-cassert-include.patch
 BuildRequires:  kf5-filesystem
 BuildRequires:  zlib-devel
 BuildRequires:  cmake(KF5CoreAddons)
@@ -50,7 +52,7 @@
 %lang_package
 
 %prep
-%setup -q -n jeromerobert-k4dirstat-0fd87f361645
+%autosetup -p1
 
 %build
 %cmake_kf5 -d build
@@ -67,7 +69,7 @@
 
 %files
 %license COPYING*
-%doc AUTHORS CREDITS TODO
+%doc AUTHORS CREDITS
 %doc %lang(en) %{_kf5_htmldir}/en/k4dirstat
 %dir %{_kf5_configkcfgdir}
 %{_kf5_applicationsdir}/k4dirstat.desktop

++ 0001-Add-the-missing-cassert-include.patch ++
>From dec30fec70d9ec9bcb52372b054d0d409f8c3075 Mon Sep 17 00:00:00 2001
From: Christophe Giboudeaux 
Date: Mon, 13 Jan 2020 13:50:23 +0100
Subject: [PATCH] Add the missing cassert include

---
 src/kdirtreeview.cpp | 1 +
 src/ktreemaptile.cpp | 1 +
 2 files changed, 2 insertions(+)

diff --git a/src/kdirtreeview.cpp b/src/kdirtreeview.cpp
index 808d20a..88b2ee3 100644
--- a/src/kdirtreeview.cpp
+++ b/src/kdirtreeview.cpp
@@ -7,6 +7,7 @@
 
 #include 
 #include 
+#include 
 
 #include 
 #include 
diff --git a/src/ktreemaptile.cpp b/src/ktreemaptile.cpp
index 3c140eb..27c4632 100644
--- a/src/ktreemaptile.cpp
+++ b/src/ktreemaptile.cpp
@@ -6,6 +6,7 @@
 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
-- 
2.24.1




commit k4dirstat for openSUSE:Factory

2019-04-03 Thread root
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 
+
+- 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.0 +0100
+++ new/jeromerobert-k4dirstat-0fd87f361645/CMakeLists.txt  2019-02-16 
20:27:39.0 +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.0 +0100
+++ new/jeromerobert-k4dirstat-0fd87f361645/README.md   2019-02-16 
20:27:39.0 +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.0 +0100
+++ new/jeromerobert-k4dirstat-0fd87f361645/src/kdirtreecache.cpp   
2019-02-16 20:27:39.0 +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.cpp2017-12-30 
16:37:32.0 +0100
+++ new/jeromerobert-k4dirstat-0fd87f361645/src/main.cpp2019-02-16 
20:27:39.0 +0100
@@ -92,7 

commit k4dirstat for openSUSE:Factory

2018-05-29 Thread root
Hello community,

here is the log from the commit of package k4dirstat for openSUSE:Factory 
checked in at 2018-05-29 10:44:47

Comparing /work/SRC/openSUSE:Factory/k4dirstat (Old)
 and  /work/SRC/openSUSE:Factory/.k4dirstat.new (New)


Package is "k4dirstat"

Tue May 29 10:44:47 2018 rev:2 rq:612300 version:3.1.3

Changes:

--- /work/SRC/openSUSE:Factory/k4dirstat/k4dirstat.changes  2017-04-12 
18:11:58.469945160 +0200
+++ /work/SRC/openSUSE:Factory/.k4dirstat.new/k4dirstat.changes 2018-05-29 
10:45:03.904171103 +0200
@@ -1,0 +2,5 @@
+Fri May 25 20:41:44 UTC 2018 - christo...@krop.fr
+
+- Update to 3.1.3. No changelog available.
+
+---

Old:

  k4dirstat-3.1.2.tar.bz2

New:

  k4dirstat-3.1.3.tar.bz2



Other differences:
--
++ k4dirstat.spec ++
--- /var/tmp/diff_new_pack.vJ32NJ/_old  2018-05-29 10:45:04.552147191 +0200
+++ /var/tmp/diff_new_pack.vJ32NJ/_new  2018-05-29 10:45:04.564146748 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package k4dirstat
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -17,30 +17,29 @@
 
 
 Name:   k4dirstat
-Version:3.1.2
+Version:3.1.3
 Release:0
 Summary:Graphical Disk Usage Utility
-License:GPL-2.0 and LGPL-2.0
+License:GPL-2.0-only AND LGPL-2.0-only
 Group:  Productivity/File utilities
-Url:https://bitbucket.org/jeromerobert/k4dirstat/wiki/Home
+URL:https://bitbucket.org/jeromerobert/k4dirstat/wiki/Home
 Source0:
https://bitbucket.org/jeromerobert/k4dirstat/get/%{name}-%{version}.tar.bz2
-BuildRequires:  kcoreaddons-devel
-BuildRequires:  kdoctools-devel
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel
-BuildRequires:  kiconthemes-devel
-BuildRequires:  kio-devel
-BuildRequires:  kjobwidgets-devel
-BuildRequires:  kxmlgui-devel
+BuildRequires:  zlib-devel
+BuildRequires:  cmake(KF5CoreAddons)
+BuildRequires:  cmake(KF5DocTools)
+BuildRequires:  cmake(KF5I18n)
+BuildRequires:  cmake(KF5IconThemes)
+BuildRequires:  cmake(KF5JobWidgets)
+BuildRequires:  cmake(KF5KIO)
+BuildRequires:  cmake(KF5XmlGui)
+BuildRequires:  cmake(Qt5Core)
+BuildRequires:  cmake(Qt5Gui)
+BuildRequires:  cmake(Qt5Widgets)
+Recommends: k4dirstat-lang = %{version}
 %if 0%{?suse_version}
 BuildRequires:  update-desktop-files
 %endif
-BuildRequires:  zlib-devel
-BuildRequires:  pkgconfig(Qt5Core)
-BuildRequires:  pkgconfig(Qt5Gui)
-BuildRequires:  pkgconfig(Qt5Widgets)
-Recommends: k4dirstat-lang = %{version}
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 K4DirStat (KDE Directory Statistics) is a small utility program that sums up
@@ -51,7 +50,7 @@
 %lang_package
 
 %prep
-%setup -q -n jeromerobert-k4dirstat-0b055582e48c
+%setup -q -n jeromerobert-k4dirstat-fcf698417d42
 
 %build
 %cmake_kf5 -d build
@@ -67,18 +66,17 @@
 %find_lang k4dirstat %{name}.lang
 
 %files
-%defattr(-,root,root)
-%doc AUTHORS COPYING* CREDITS TODO
+%license COPYING*
+%doc AUTHORS CREDITS TODO
 %doc %lang(en) %{_kf5_htmldir}/en/k4dirstat
+%dir %{_kf5_configkcfgdir}
 %{_kf5_applicationsdir}/k4dirstat.desktop
 %{_kf5_bindir}/k4dirstat
-%dir %{_kf5_configkcfgdir}
 %{_kf5_configkcfgdir}/k4dirstat.kcfg
 %{_kf5_iconsdir}/hicolor/*/apps/k4dirstat.*
 %{_kf5_mandir}/man1/k4dirstat.*
 
 %files lang -f %{name}.lang
-%defattr(-,root,root)
 %exclude %{_kf5_htmldir}/en/k4dirstat
 
 %changelog

++ k4dirstat-3.1.2.tar.bz2 -> k4dirstat-3.1.3.tar.bz2 ++
 2537 lines of diff (skipped)