commit breeze5-icons for openSUSE:Factory

2020-10-12 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2020-10-12 13:53:14

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.3486 (New)


Package is "breeze5-icons"

Mon Oct 12 13:53:14 2020 rev:61 rq:840789 version:5.75.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2020-09-18 14:44:48.588189289 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.3486/breeze5-icons.changes
2020-10-12 13:53:45.454078449 +0200
@@ -1,0 +2,18 @@
+Mon Oct  5 08:32:48 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.75.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.75.0
+- Changes since 5.74.0:
+  * Add new generic "behavior" icon
+  * Make icon validation depend on icon generation only if enabled
+  * Only run Test24x24Icons if icon generation is enabled
+  * Replace 24px icon bash script with python script
+  * Use flag style iconography for view-calendar-holiday
+  * Add Plasma Nano logo
+  * Add application-x-kmymoney
+  * Lengthen the horizontal lines in the KMyMoney icon
+  * Add KMyMoney icon
+
+---

Old:

  breeze-icons-5.74.0.tar.xz
  breeze-icons-5.74.0.tar.xz.sig

New:

  breeze-icons-5.75.0.tar.xz
  breeze-icons-5.75.0.tar.xz.sig



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.1LhYpT/_old  2020-10-12 13:53:46.122078720 +0200
+++ /var/tmp/diff_new_pack.1LhYpT/_new  2020-10-12 13:53:46.126078722 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define _tar_path 5.74
+%define _tar_path 5.75
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -24,7 +24,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   breeze5-icons
-Version:5.74.0
+Version:5.75.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only
@@ -39,6 +39,8 @@
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libxml2-tools
+BuildRequires:  python3
+BuildRequires:  python3-lxml
 BuildRequires:  cmake(Qt5Core) >= 5.12.0
 BuildRequires:  cmake(Qt5Test) >= 5.12.0
 BuildArch:  noarch

++ breeze-icons-5.74.0.tar.xz -> breeze-icons-5.75.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.74.0/CMakeLists.txt 
new/breeze-icons-5.75.0/CMakeLists.txt
--- old/breeze-icons-5.74.0/CMakeLists.txt  2020-09-06 11:04:40.0 
+0200
+++ new/breeze-icons-5.75.0/CMakeLists.txt  2020-10-04 11:45:37.0 
+0200
@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.74.0") # handled by release scripts
+set(KF5_VERSION "5.75.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF5_VERSION})
 
 # Disallow in-source build
@@ -10,7 +10,7 @@
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.74.0  NO_MODULE)
+find_package(ECM 5.75.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)
 
@@ -24,6 +24,31 @@
 # Dependencies
 set(REQUIRED_QT_VERSION 5.12.0)
 
+# Find Python 3
+find_package (Python 3 COMPONENTS Interpreter)
+
+if(Python_FOUND)
+# Find lxml Python 3 module
+exec_program(${Python_EXECUTABLE}
+ARGS "-c \"import lxml; print(lxml.get_include())\""
+RETURN_VALUE LXML_NOT_FOUND # Returns 0 or false if successful
+)
+
+# Generating icons is not required, but strongly recommended in most cases
+if(LXML_NOT_FOUND)
+message(WARNING "lxml not found; icon generation disabled")
+set(WITH_ICON_GENERATION OFF)
+else()
+option(WITH_ICON_GENERATION "Icon generation" ON)
+endif()
+else()
+set(WITH_ICON_GENERATION OFF)
+endif()
+
+add_feature_info("Icon generation" ${WITH_ICON_GENERATION} "for 24x24 icons.
+   This feature requires Python 3 and the lxml Python 3 module."
+) # The exact amount of indentation used in the line(s) above is intentional
+
 # When cross-compiling, we should compile qrcAlias natively (against a native 
Qt build)
 if (CMAKE_CROSSCOMPILING)
 set(BINARY_ICONS_RESOURCE_OPTION_DEFAULT OFF)
@@ -86,10 +111,6 @@
 endif()
 
 if(NOT WIN32)
-# generate-24px in subdirs.
-find_program(BASH_EXE bash)
-add_feature_info("24x24 generation" BASH_EXE "'bash' is required to 
generate 24x24 variants")
-
 # validate
 

commit breeze5-icons for openSUSE:Factory

2020-09-18 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2020-09-18 14:44:15

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.4249 (New)


Package is "breeze5-icons"

Fri Sep 18 14:44:15 2020 rev:60 rq:835199 version:5.74.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2020-08-12 12:22:36.832073238 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.4249/breeze5-icons.changes
2020-09-18 14:44:48.588189289 +0200
@@ -1,0 +2,19 @@
+Thu Sep 17 12:48:45 UTC 2020 - Fabian Vogt 
+
+- Drop patch to no longer inherit from oxygen, it's not been
+  necessary for a long time now:
+  * oxygen.diff
+
+---
+Sun Sep  6 12:48:21 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.74.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.74.0
+- Too many changes since 5.73.0, only listing bugfixes:
+  * Add another alias for keepass icon (kde#425928)
+  * Run application-x-bzip-compressed-tar through `scour` (kde#425089)
+  * Add aliases for MP3 icons (kde#425059)
+
+---
@@ -9 +28 @@
-  * Add SMART status icon BUG: 423997 (kde#423997)
+  * Add SMART status icon (kde#423997)

Old:

  breeze-icons-5.73.0.tar.xz
  breeze-icons-5.73.0.tar.xz.sig
  oxygen.diff

New:

  breeze-icons-5.74.0.tar.xz
  breeze-icons-5.74.0.tar.xz.sig



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.yqp4x5/_old  2020-09-18 14:44:49.392190103 +0200
+++ /var/tmp/diff_new_pack.yqp4x5/_new  2020-09-18 14:44:49.396190106 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define _tar_path 5.73
+%define _tar_path 5.74
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -24,7 +24,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   breeze5-icons
-Version:5.73.0
+Version:5.74.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only
@@ -35,23 +35,19 @@
 Source1:
https://download.kde.org/stable/frameworks/%{_tar_path}/breeze-icons-%{version}.tar.xz.sig
 Source2:frameworks.keyring
 %endif
-# PATCH-FIX-OPENSUSE oxygen.diff -- inherit from oxygen
-Patch0: oxygen.diff
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libxml2-tools
 BuildRequires:  cmake(Qt5Core) >= 5.12.0
 BuildRequires:  cmake(Qt5Test) >= 5.12.0
-Requires:   oxygen5-icon-theme
 BuildArch:  noarch
 
 %description
 Breeze-icons is a freedesktop.org compatible icon theme.
 
 %prep
-%setup -q -n breeze-icons-%{version}
-%patch0 -p1
+%autosetup -p1 -n breeze-icons-%{version}
 
 %build
   %cmake_kf5 -d build -- -DBINARY_ICONS_RESOURCE=ON

++ breeze-icons-5.73.0.tar.xz -> breeze-icons-5.74.0.tar.xz ++
 3365 lines of diff (skipped)





commit breeze5-icons for openSUSE:Factory

2020-08-12 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2020-08-12 12:22:32

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.3399 (New)


Package is "breeze5-icons"

Wed Aug 12 12:22:32 2020 rev:59 rq:825047 version:5.73.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2020-07-14 07:51:16.272231857 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.3399/breeze5-icons.changes
2020-08-12 12:22:36.832073238 +0200
@@ -1,0 +2,10 @@
+Sun Aug  2 07:12:59 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.73.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.73.0
+- Too many changes since 5.72.0, only listing bugfixes:
+  * Add SMART status icon BUG: 423997 (kde#423997)
+
+---

Old:

  breeze-icons-5.72.0.tar.xz
  breeze-icons-5.72.0.tar.xz.sig

New:

  breeze-icons-5.73.0.tar.xz
  breeze-icons-5.73.0.tar.xz.sig



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.jY2ylf/_old  2020-08-12 12:22:37.712072679 +0200
+++ /var/tmp/diff_new_pack.jY2ylf/_new  2020-08-12 12:22:37.716072677 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define _tar_path 5.72
+%define _tar_path 5.73
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -24,7 +24,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   breeze5-icons
-Version:5.72.0
+Version:5.73.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.72.0.tar.xz -> breeze-icons-5.73.0.tar.xz ++
 66353 lines of diff (skipped)





commit breeze5-icons for openSUSE:Factory

2020-07-13 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2020-07-14 07:51:13

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.3060 (New)


Package is "breeze5-icons"

Tue Jul 14 07:51:13 2020 rev:58 rq:820335 version:5.72.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2020-06-16 13:39:41.820480466 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.3060/breeze5-icons.changes
2020-07-14 07:51:16.272231857 +0200
@@ -1,0 +2,17 @@
+Sun Jul  5 07:54:59 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.72.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.72.0
+- Changes since 5.71.0:
+  * Fixed three 16px icons for application-x-... to be more pixel-perfet 
(kde#423727)
+  * Add support for >200% scale for icons which should stay monochrome
+  * Cut out center of window-close-symbolic
+  * Fix cervisia icon
+  * cervisia app and action icon update
+  * Add README section about the webfont
+  * Use grunt-webfonts instead of grunt-webfont and disable generation for 
symbolic linked icons.
+  * add kup icon from kup repo
+
+---

Old:

  breeze-icons-5.71.0.tar.xz
  breeze-icons-5.71.0.tar.xz.sig

New:

  breeze-icons-5.72.0.tar.xz
  breeze-icons-5.72.0.tar.xz.sig



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.aoOwaa/_old  2020-07-14 07:51:16.888233853 +0200
+++ /var/tmp/diff_new_pack.aoOwaa/_new  2020-07-14 07:51:16.888233853 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define _tar_path 5.71
+%define _tar_path 5.72
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -24,7 +24,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   breeze5-icons
-Version:5.71.0
+Version:5.72.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only
@@ -37,7 +37,6 @@
 %endif
 # PATCH-FIX-OPENSUSE oxygen.diff -- inherit from oxygen
 Patch0: oxygen.diff
-BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme

++ breeze-icons-5.71.0.tar.xz -> breeze-icons-5.72.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.71.0/CMakeLists.txt 
new/breeze-icons-5.72.0/CMakeLists.txt
--- old/breeze-icons-5.71.0/CMakeLists.txt  2020-06-06 21:33:14.0 
+0200
+++ new/breeze-icons-5.72.0/CMakeLists.txt  2020-07-04 11:44:25.0 
+0200
@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.71.0") # handled by release scripts
+set(KF5_VERSION "5.72.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF5_VERSION})
 
 # Disallow in-source build
@@ -10,7 +10,7 @@
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.71.0  NO_MODULE)
+find_package(ECM 5.72.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/breeze-icons-5.71.0/README.md 
new/breeze-icons-5.72.0/README.md
--- old/breeze-icons-5.71.0/README.md   2020-06-06 21:33:14.0 +0200
+++ new/breeze-icons-5.72.0/README.md   2020-07-04 11:44:25.0 +0200
@@ -8,6 +8,14 @@
 
 The Breeze icons guidelines are described at 
[hig.kde.org](https://hig.kde.org).
 
+### Web Usage 
+
+Breeze Icons can be used as a webfont from here: 
[https://cdn.kde.org/breeze-icons/icons.html](https://cdn.kde.org/breeze-icons/icons.html).
+
+```html
+
+```
+
 ## Issues
 
 To report a bug or request new icons, use the [KDE 
Bugtracker](https://bugs.kde.org/enter_bug.cgi?product=Breeze=Icons).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.71.0/icons/actions/16x@3x 
new/breeze-icons-5.72.0/icons/actions/16x@3x
--- old/breeze-icons-5.71.0/icons/actions/16x@3x1970-01-01 
01:00:00.0 +0100
+++ new/breeze-icons-5.72.0/icons/actions/16x@3x2020-07-14 
07:52:10.260406668 +0200
@@ -0,0 +1 @@
+symbolic link to 16
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.71.0/icons/actions/22/vcs-commit-cvs-cervisia.svg 

commit breeze5-icons for openSUSE:Factory

2020-06-16 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2020-06-16 13:39:38

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.3606 (New)


Package is "breeze5-icons"

Tue Jun 16 13:39:38 2020 rev:57 rq:814330 version:5.71.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2020-05-11 13:27:00.651313598 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.3606/breeze5-icons.changes
2020-06-16 13:39:41.820480466 +0200
@@ -1,0 +2,15 @@
+Sun Jun  7 08:06:13 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.71.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.71.0
+- Changes since 5.70.0:
+  * Improve accuracy of battery percentage icons
+  * Fix KML mimetype icon
+  * Change mouse icon to have better dark theme contrast (kde#406453)
+  * Require in-source build (kde#421637)
+  * Add 48px places icons (kde#421144)
+  * Adds a missing LibreOffice icon shortcut
+
+---

Old:

  breeze-icons-5.70.0.tar.xz
  breeze-icons-5.70.0.tar.xz.sig

New:

  breeze-icons-5.71.0.tar.xz
  breeze-icons-5.71.0.tar.xz.sig



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.oIE3r3/_old  2020-06-16 13:39:43.316485071 +0200
+++ /var/tmp/diff_new_pack.oIE3r3/_new  2020-06-16 13:39:43.320485084 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define _tar_path 5.70
+%define _tar_path 5.71
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -24,7 +24,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   breeze5-icons
-Version:5.70.0
+Version:5.71.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.70.0.tar.xz -> breeze-icons-5.71.0.tar.xz ++
 3648 lines of diff (skipped)





commit breeze5-icons for openSUSE:Factory

2020-05-11 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2020-05-11 13:26:55

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.2738 (New)


Package is "breeze5-icons"

Mon May 11 13:26:55 2020 rev:56 rq:802056 version:5.70.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2020-04-15 20:00:32.845845821 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.2738/breeze5-icons.changes
2020-05-11 13:27:00.651313598 +0200
@@ -1,0 +2,9 @@
+Sun May  3 09:39:40 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.70.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.70.0
+- Too many changes to list here.
+
+---

Old:

  breeze-icons-5.69.0.tar.xz
  breeze-icons-5.69.0.tar.xz.sig

New:

  breeze-icons-5.70.0.tar.xz
  breeze-icons-5.70.0.tar.xz.sig



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.OiJmwH/_old  2020-05-11 13:27:01.483315341 +0200
+++ /var/tmp/diff_new_pack.OiJmwH/_new  2020-05-11 13:27:01.487315350 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define _tar_path 5.69
+%define _tar_path 5.70
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -24,7 +24,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   breeze5-icons
-Version:5.69.0
+Version:5.70.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.69.0.tar.xz -> breeze-icons-5.70.0.tar.xz ++
 4610 lines of diff (skipped)





commit breeze5-icons for openSUSE:Factory

2020-04-15 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2020-04-15 20:00:29

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.2738 (New)


Package is "breeze5-icons"

Wed Apr 15 20:00:29 2020 rev:55 rq:793123 version:5.69.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2020-03-19 19:41:38.155894349 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.2738/breeze5-icons.changes
2020-04-15 20:00:32.845845821 +0200
@@ -1,0 +2,10 @@
+Sun Apr  5 19:45:15 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.69.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.69.0
+- Too many changes since 5.68.0, only listing bugfixes:
+  * Make find-location show a magnifier on a map, to be different to 
mark-location (kde#407061)
+
+---

Old:

  breeze-icons-5.68.0.tar.xz
  breeze-icons-5.68.0.tar.xz.sig

New:

  breeze-icons-5.69.0.tar.xz
  breeze-icons-5.69.0.tar.xz.sig



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.udwIqY/_old  2020-04-15 20:00:33.621846403 +0200
+++ /var/tmp/diff_new_pack.udwIqY/_new  2020-04-15 20:00:33.621846403 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define _tar_path 5.68
+%define _tar_path 5.69
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -24,7 +24,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   breeze5-icons
-Version:5.68.0
+Version:5.69.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.68.0.tar.xz -> breeze-icons-5.69.0.tar.xz ++
 5627 lines of diff (skipped)





commit breeze5-icons for openSUSE:Factory

2020-03-19 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2020-03-19 19:41:25

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.3160 (New)


Package is "breeze5-icons"

Thu Mar 19 19:41:25 2020 rev:54 rq:785292 version:5.68.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2020-02-14 16:31:01.767374816 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.3160/breeze5-icons.changes
2020-03-19 19:41:38.155894349 +0100
@@ -1,0 +2,11 @@
+Sun Mar  8 09:17:31 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.68.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.68.0.php
+- Too many changes since 5.67.0, only listing bugfixes:
+  * [breeze-icons] Add telegram-desktop tray icons (kde#417583)
+  * New icon for KTimeTracker (kde#410708)
+
+---

Old:

  breeze-icons-5.67.0.tar.xz
  breeze-icons-5.67.0.tar.xz.sig

New:

  breeze-icons-5.68.0.tar.xz
  breeze-icons-5.68.0.tar.xz.sig



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.gGbluR/_old  2020-03-19 19:41:38.695894662 +0100
+++ /var/tmp/diff_new_pack.gGbluR/_new  2020-03-19 19:41:38.703894667 +0100
@@ -16,7 +16,7 @@
 #
 
 
-%define _tar_path 5.67
+%define _tar_path 5.68
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -24,7 +24,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   breeze5-icons
-Version:5.67.0
+Version:5.68.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.67.0.tar.xz -> breeze-icons-5.68.0.tar.xz ++
 36943 lines of diff (skipped)





commit breeze5-icons for openSUSE:Factory

2020-02-14 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2020-02-14 16:31:00

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.26092 (New)


Package is "breeze5-icons"

Fri Feb 14 16:31:00 2020 rev:53 rq:773230 version:5.67.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2020-01-14 20:59:24.926544352 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.26092/breeze5-icons.changes   
2020-02-14 16:31:01.767374816 +0100
@@ -1,0 +2,22 @@
+Sun Feb  2 18:06:40 UTC 2020 - Christophe Giboudeaux 
+
+- Replace %make_jobs with %cmake_build.
+
+---
+Sun Feb  2 14:32:26 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.67.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.67.0.php
+- Changes since 5.66.0:
+  * create Breeze style Kate icon based on new design by Tyson Tan
+  * Change VLC icon to be more like official VLC icons
+  * add ktrip icon from ktrip repo
+  * Clean up wayland icon shadow
+  * Add icon for application/sql
+  * Cleanup and add 22px media repeat icons
+  * Add icon for text/vnd.kde.kcrash-report
+  * Turn application/x-ms-shortcut into an actual shortcut icon
+
+---

Old:

  breeze-icons-5.66.0.tar.xz
  breeze-icons-5.66.0.tar.xz.sig

New:

  breeze-icons-5.67.0.tar.xz
  breeze-icons-5.67.0.tar.xz.sig



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.dYpVBB/_old  2020-02-14 16:31:02.515375222 +0100
+++ /var/tmp/diff_new_pack.dYpVBB/_new  2020-02-14 16:31:02.515375222 +0100
@@ -16,7 +16,7 @@
 #
 
 
-%define _tar_path 5.66
+%define _tar_path 5.67
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -24,7 +24,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   breeze5-icons
-Version:5.66.0
+Version:5.67.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only
@@ -42,8 +42,8 @@
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libxml2-tools
-BuildRequires:  cmake(Qt5Core) >= 5.11.0
-BuildRequires:  cmake(Qt5Test) >= 5.11.0
+BuildRequires:  cmake(Qt5Core) >= 5.12.0
+BuildRequires:  cmake(Qt5Test) >= 5.12.0
 Requires:   oxygen5-icon-theme
 BuildArch:  noarch
 
@@ -56,7 +56,7 @@
 
 %build
   %cmake_kf5 -d build -- -DBINARY_ICONS_RESOURCE=ON
-  %make_jobs
+  %cmake_build
 
 %install
   %kf5_makeinstall -C build

++ breeze-icons-5.66.0.tar.xz -> breeze-icons-5.67.0.tar.xz ++
 13032 lines of diff (skipped)





commit breeze5-icons for openSUSE:Factory

2019-12-18 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2019-12-18 14:39:51

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.4691 (New)


Package is "breeze5-icons"

Wed Dec 18 14:39:51 2019 rev:51 rq:757004 version:5.65.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2019-11-12 11:41:39.878489029 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.4691/breeze5-icons.changes
2019-12-18 14:39:58.241709524 +0100
@@ -1,0 +2,14 @@
+Sun Dec  8 11:18:15 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.65.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.65.0.php
+- Changes since 5.64.0:
+  * Pixel align color-picker
+  * Add new baloo icons
+  * Add new preferences search icons
+  * Use an eyedropper for color-picker icons (kde#403924)
+  * Add "all applications" category icon
+
+---

Old:

  breeze-icons-5.64.0.tar.xz
  breeze-icons-5.64.0.tar.xz.sig

New:

  breeze-icons-5.65.0.tar.xz
  breeze-icons-5.65.0.tar.xz.sig



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.xuKoTU/_old  2019-12-18 14:39:59.169709948 +0100
+++ /var/tmp/diff_new_pack.xuKoTU/_new  2019-12-18 14:39:59.181709954 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package breeze5-icons
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,7 +16,7 @@
 #
 
 
-%define _tar_path 5.64
+%define _tar_path 5.65
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -24,7 +24,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   breeze5-icons
-Version:5.64.0
+Version:5.65.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.64.0.tar.xz -> breeze-icons-5.65.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.64.0/CMakeLists.txt 
new/breeze-icons-5.65.0/CMakeLists.txt
--- old/breeze-icons-5.64.0/CMakeLists.txt  2019-11-02 12:41:46.0 
+0100
+++ new/breeze-icons-5.65.0/CMakeLists.txt  2019-12-07 20:40:47.0 
+0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.64.0") # handled by release scripts
+set(KF5_VERSION "5.65.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.64.0  NO_MODULE)
+find_package(ECM 5.65.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.64.0/icons/actions/16/color-picker.svg 
new/breeze-icons-5.65.0/icons/actions/16/color-picker.svg
--- old/breeze-icons-5.64.0/icons/actions/16/color-picker.svg   2019-11-02 
12:41:46.0 +0100
+++ new/breeze-icons-5.65.0/icons/actions/16/color-picker.svg   2019-12-07 
20:40:47.0 +0100
@@ -1,13 +1,8 @@
-http://www.w3.org/2000/svg; viewBox="0 0 16 16">
-  
+http://www.w3.org/2000/svg;>
 
-  .ColorScheme-Text {
-color:#232629;
-  }
-  
-  
- 
+.ColorScheme-Text {
+color:#232629;
+}
+
+
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.64.0/icons/actions/22/color-picker.svg 
new/breeze-icons-5.65.0/icons/actions/22/color-picker.svg
--- old/breeze-icons-5.64.0/icons/actions/22/color-picker.svg   2019-11-02 
12:41:46.0 +0100
+++ new/breeze-icons-5.65.0/icons/actions/22/color-picker.svg   2019-12-07 
20:40:47.0 +0100
@@ -1,14 +1,8 @@
-http://www.w3.org/2000/svg; viewBox="0 0 22 22">
-  
-
-  .ColorScheme-Text {
-color:#232629;
-  }
-  
-  
- 
-
+http://www.w3.org/2000/svg;>
+
+.ColorScheme-Text {
+color:#232629;
+}
+
+
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.64.0/icons/actions/24/color-picker.svg 

commit breeze5-icons for openSUSE:Factory

2019-11-12 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2019-11-12 11:41:39

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.2990 (New)


Package is "breeze5-icons"

Tue Nov 12 11:41:39 2019 rev:50 rq:747080 version:5.64.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2019-10-14 13:32:48.358757322 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.2990/breeze5-icons.changes
2019-11-12 11:41:39.878489029 +0100
@@ -1,0 +2,16 @@
+Sun Nov  3 15:46:45 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.64.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.64.0.php
+- Too many changes since 5.63.0, only listing bugfixes:
+  * Center-align the non-square 64px audio mimetype icons (kde#393550)
+  * Move colorful 32px help-about icon into actions (kde#396626)
+  * Improve draw icons (kde#399665)
+  * Use a more correct and appropriate visual metaphor for
+"get hot new stuff" icon (kde#400500)
+  * Add edit-opacity icons (kde#408283)
+  * Icons for windy weather (kde#412718)
+
+---

Old:

  breeze-icons-5.63.0.tar.xz
  breeze-icons-5.63.0.tar.xz.sig

New:

  breeze-icons-5.64.0.tar.xz
  breeze-icons-5.64.0.tar.xz.sig



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.9EPE9a/_old  2019-11-12 11:41:41.450490684 +0100
+++ /var/tmp/diff_new_pack.9EPE9a/_new  2019-11-12 11:41:41.454490688 +0100
@@ -16,7 +16,7 @@
 #
 
 
-%define _tar_path 5.63
+%define _tar_path 5.64
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -24,7 +24,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   breeze5-icons
-Version:5.63.0
+Version:5.64.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.63.0.tar.xz -> breeze-icons-5.64.0.tar.xz ++
 7495 lines of diff (skipped)





commit breeze5-icons for openSUSE:Factory

2019-10-14 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2019-10-14 13:32:46

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.2352 (New)


Package is "breeze5-icons"

Mon Oct 14 13:32:46 2019 rev:49 rq:737999 version:5.63.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2019-09-23 12:20:29.653776489 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.2352/breeze5-icons.changes
2019-10-14 13:32:48.358757322 +0200
@@ -1,0 +2,18 @@
+Sun Oct  6 13:26:11 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.63.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.63.0.php
+- Changes since 5.62.0:
+  * Make 22px squiggle more like 16px squiggle
+  * Improve KFloppy icon
+  * Add format-text-underline-squiggle actions icons
+  * Add colorful preferences-desktop-filter icon (kde#406900)
+  * Add app icon for the Kirogi Drone control app
+  * Added scripts to create a webfont out of all breeze action icons
+  * Add enablefont and disablefont icon for kfontinst KCM
+  * Remove superfluous 32px recent documents icons
+  * Fix large system-reboot icons rotating in an inconsistent direction 
(kde#411671)
+
+---

Old:

  breeze-icons-5.62.0.tar.xz
  breeze-icons-5.62.0.tar.xz.sig

New:

  breeze-icons-5.63.0.tar.xz
  breeze-icons-5.63.0.tar.xz.sig



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.BjGha2/_old  2019-10-14 13:32:49.270754945 +0200
+++ /var/tmp/diff_new_pack.BjGha2/_new  2019-10-14 13:32:49.274754934 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define _tar_path 5.62
+%define _tar_path 5.63
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -24,7 +24,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   breeze5-icons
-Version:5.62.0
+Version:5.63.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only
@@ -42,8 +42,8 @@
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libxml2-tools
-BuildRequires:  cmake(Qt5Core) >= 5.6.0
-BuildRequires:  cmake(Qt5Test) >= 5.6.0
+BuildRequires:  cmake(Qt5Core) >= 5.11.0
+BuildRequires:  cmake(Qt5Test) >= 5.11.0
 Requires:   oxygen5-icon-theme
 BuildArch:  noarch
 

++ breeze-icons-5.62.0.tar.xz -> breeze-icons-5.63.0.tar.xz ++
 2099 lines of diff (skipped)





commit breeze5-icons for openSUSE:Factory

2019-09-23 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2019-09-23 12:20:28

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.7948 (New)


Package is "breeze5-icons"

Mon Sep 23 12:20:28 2019 rev:48 rq:730900 version:5.62.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2019-08-19 21:00:27.016939794 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.7948/breeze5-icons.changes
2019-09-23 12:20:29.653776489 +0200
@@ -1,0 +2,36 @@
+Sat Sep  7 21:01:57 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.62.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.62.0.php
+- Changes since 5.61.0:
+  * Fix *-loading-symbolic icon symlinks
+  * Add new activities and virtual desktops icons
+  * Make small recent documents icons look like documents and improve clock 
emblems
+  * Create new "Recent folders" icon (kde#411635)
+  * Add "preferences-desktop-navigation" icon (kde#402910)
+  * Add 22px dialog-scripts, change script actions/places icons to match it
+  * Improve "user-trash" icon
+  * Use empty/filled style for monochrome empty/full trash
+  * Make notification icons use outline style
+  * Make user-trash icons look like trashcans
+  * Add breeze icons for ROOT cern files
+  * Remove applets/22/computer (kde#410854)
+  * Add view-barcode-qr icons
+  * Krita has split from Calligra and now uses Krita name instead of 
calligrakrita
+  * Add battery-ups icons
+  * Make "monitor" a link to "computer" icon
+  * Add FictionBook 2 icons
+  * Add icon for kuiviewer, needs updating -> bug 407527
+  * Symlink "port" to "anchor", which displays more appropriate iconography
+  * Change radio to device icon, add more sizes
+  * Make `pin` icon point to an icon that looks like a pin, not something 
unrelated
+  * Fix missing digit and pixel-perfect alignment of depth action icons 
(kde#406502)
+  * Make 16px folder-activites look more like larger sizes
+  * add icon for clazy, should be remade in svg
+  * add latte-dock icon from latte dock repo for kde.org/applications
+  * icon for kdesrc-build used by kde.org/applications to be redrawn.
+  * Rename media-show-active-track-amarok to media-track-show-active
+
+---

Old:

  breeze-icons-5.61.0.tar.xz
  breeze-icons-5.61.0.tar.xz.sig

New:

  breeze-icons-5.62.0.tar.xz
  breeze-icons-5.62.0.tar.xz.sig



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.Cx9Swz/_old  2019-09-23 12:20:30.541776344 +0200
+++ /var/tmp/diff_new_pack.Cx9Swz/_new  2019-09-23 12:20:30.545776343 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define _tar_path 5.61
+%define _tar_path 5.62
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -24,7 +24,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   breeze5-icons
-Version:5.61.0
+Version:5.62.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.61.0.tar.xz -> breeze-icons-5.62.0.tar.xz ++
 4774 lines of diff (skipped)





commit breeze5-icons for openSUSE:Factory

2019-08-19 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2019-08-19 21:00:23

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.22127 (New)


Package is "breeze5-icons"

Mon Aug 19 21:00:23 2019 rev:47 rq:722437 version:5.61.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2019-07-26 12:07:28.394877345 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.22127/breeze5-icons.changes   
2019-08-19 21:00:27.016939794 +0200
@@ -1,0 +2,21 @@
+Wed Aug  7 17:51:02 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.61.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.61.0.php
+- Changes since 5.60.0:
+  * Add "user-others" icon (kde#407782) 
+  * Make "edit-none" a symlink to "dialog-cancel" 
+  * Delete redundant and monochrome versions of applications-internet 
+  * Add view-pages-* icons, as needed in Okular for page layout selection 
(kde#409082) 
+  * Fix typo in stylesheets 
+  * Change Highlight to ButtonFocus in stylesheets 
+  * Use clockwise arrows for *refresh* and update-* icons (kde#409914)
+
+---
+Fri Jul 19 11:37:46 UTC 2019 - Wolfgang Bauer 
+
+- Don't lower minimum Qt version anymore, it requires 5.11 now
+
+---

Old:

  breeze-icons-5.60.0.tar.xz

New:

  breeze-icons-5.61.0.tar.xz
  breeze-icons-5.61.0.tar.xz.sig
  frameworks.keyring



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.Jafghj/_old  2019-08-19 21:00:27.960939641 +0200
+++ /var/tmp/diff_new_pack.Jafghj/_new  2019-08-19 21:00:27.988939637 +0200
@@ -16,19 +16,25 @@
 #
 
 
-%define _tar_path 5.60
+%define _tar_path 5.61
 # 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}')}
+# Only needed for the package signature condition
+%bcond_without lang
 Name:   breeze5-icons
-Version:5.60.0
+Version:5.61.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only
 Group:  System/GUI/KDE
 URL:https://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/breeze-icons-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/frameworks/%{_tar_path}/breeze-icons-%{version}.tar.xz
+%if %{with lang}
+Source1:
https://download.kde.org/stable/frameworks/%{_tar_path}/breeze-icons-%{version}.tar.xz.sig
+Source2:frameworks.keyring
+%endif
 # PATCH-FIX-OPENSUSE oxygen.diff -- inherit from oxygen
 Patch0: oxygen.diff
 BuildRequires:  cmake >= 3.0
@@ -47,9 +53,6 @@
 %prep
 %setup -q -n breeze-icons-%{version}
 %patch0 -p1
-%if 0%{?suse_version} == 1500
-sed -i -e "s/^set *(REQUIRED_QT_VERSION 5.10.0)$/set(REQUIRED_QT_VERSION 
5.9.0)/" CMakeLists.txt
-%endif
 
 %build
   %cmake_kf5 -d build -- -DBINARY_ICONS_RESOURCE=ON

++ breeze-icons-5.60.0.tar.xz -> breeze-icons-5.61.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.60.0/CMakeLists.txt 
new/breeze-icons-5.61.0/CMakeLists.txt
--- old/breeze-icons-5.60.0/CMakeLists.txt  2019-07-07 14:26:06.0 
+0200
+++ new/breeze-icons-5.61.0/CMakeLists.txt  2019-08-03 21:30:28.0 
+0200
@@ -1,15 +1,15 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.60.0") # handled by release scripts
+set(KF5_VERSION "5.61.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.60.0  NO_MODULE)
+find_package(ECM 5.61.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)
 
-set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake)
+set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
 
 include(KDEInstallDirs)
 include(KDECMakeSettings)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.60.0/icons/actions/16/edit-none.svg 
new/breeze-icons-5.61.0/icons/actions/16/edit-none.svg
--- old/breeze-icons-5.60.0/icons/actions/16/edit-none.svg  2019-07-07 
14:26:06.0 +0200
+++ 

commit breeze5-icons for openSUSE:Factory

2019-07-26 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2019-07-26 12:07:25

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.4126 (New)


Package is "breeze5-icons"

Fri Jul 26 12:07:25 2019 rev:46 rq:715850 version:5.60.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2019-06-22 11:07:08.784111662 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.4126/breeze5-icons.changes
2019-07-26 12:07:28.394877345 +0200
@@ -1,0 +2,18 @@
+Sun Jul 14 06:41:36 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.60.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.60.0.php
+- Changes since 5.59.0:
+  * Add id="current-color-scheme" to collapse-all icons (kde#409546)
+  * Add disk-quota icons (kde#389311)
+  * Symlink install to edit-download
+  * Change joystick settings icon to game controller (kde#406679)
+  * Add edit-select-text, make 16px draw-text like 22px
+  * Update KBruch icon
+  * Add help-donate-[currency] icons
+  * Make Breeze Dark use same Kolourpaint icon as Breeze
+  * Add 22px notifications icons
+
+---

Old:

  breeze-icons-5.59.0.tar.xz

New:

  breeze-icons-5.60.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.WVRLSI/_old  2019-07-26 12:07:30.142877068 +0200
+++ /var/tmp/diff_new_pack.WVRLSI/_new  2019-07-26 12:07:30.142877068 +0200
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.59
+%define _tar_path 5.60
 # 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}')}
 Name:   breeze5-icons
-Version:5.59.0
+Version:5.60.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.59.0.tar.xz -> breeze-icons-5.60.0.tar.xz ++
 4492 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2019-06-22 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2019-06-22 11:07:04

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.4615 (New)


Package is "breeze5-icons"

Sat Jun 22 11:07:04 2019 rev:45 rq:710711 version:5.59.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2019-05-21 10:23:26.823586645 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.4615/breeze5-icons.changes
2019-06-22 11:07:08.784111662 +0200
@@ -1,0 +2,26 @@
+Sun Jun 09 07:35:11 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.59.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.59.0.php
+- Changes since 5.58.0:
+  * add krita icon
+  * gcompris-qt too
+  * Make falkon icon a real SVG
+  * add missing icons from the apps, to be redone (kde#407527)
+  * add icon for kfourinline from app, needs updating too
+  * add kigo icon (kde#407527)
+  * icon for symboleditor app
+  * kajongg icon
+  * add kwave icon from kwave, to be redone in breeze style
+  * Symlink arrow-*-double to go-*-skip, add 24px go-*-skip
+  * Change input-* device icon styles, add 16px icons
+  * Add dark version of new Knights icon which escaped from my previous commit
+  * Create new icon for Knights based on Anjuta's icon
+  * add icons for apps which miss them in breeze, these should be updated to 
be more breezy but they are needed for the new kde.org/applications for now
+  * kxstitch icon from kde:kxstitch, to be updated
+  * don't glob everything and the kitchen sink
+  * make sure to also assert ScaledDirectories
+
+---

Old:

  breeze-icons-5.58.0.tar.xz

New:

  breeze-icons-5.59.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.Rfjh81/_old  2019-06-22 11:07:10.520114564 +0200
+++ /var/tmp/diff_new_pack.Rfjh81/_new  2019-06-22 11:07:10.544114604 +0200
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.58
+%define _tar_path 5.59
 # 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}')}
 Name:   breeze5-icons
-Version:5.58.0
+Version:5.59.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.58.0.tar.xz -> breeze-icons-5.59.0.tar.xz ++
 41006 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2019-05-21 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2019-05-21 10:23:25

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.5148 (New)


Package is "breeze5-icons"

Tue May 21 10:23:25 2019 rev:44 rq:703323 version:5.58.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2019-04-19 21:20:28.53557 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.5148/breeze5-icons.changes
2019-05-21 10:23:26.823586645 +0200
@@ -1,0 +2,20 @@
+Wed May 15 18:16:15 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.58.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.58.0.php
+- Changes since 5.57.0:
+  * Add non-symbolic 16px versions of find-location and mark-location
+  * Symlink preferences-system-windows-effect-flipswitch to 
preferences-system-tabbox
+  * Rename "edit-remove" icon to "edit-delete-remove" to support Oxygen and 
other icon themes
+  * Add "edit-remove" icon symlink and add 22px version of "paint-none" and 
"edit-none"
+  * Use consistent default Kickoff user icon
+  * Add an icon for Thunderbolt KCM
+  * Sharpen Z's in system-suspend* icons
+  * Improve "widget-alternatives" icon
+  * Add go-up/down/next/previous-skip
+  * Update KDE logo to be closer to original
+  * Add alternatives icon
+
+---

Old:

  breeze-icons-5.57.0.tar.xz

New:

  breeze-icons-5.58.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.xCHJi9/_old  2019-05-21 10:23:27.431586522 +0200
+++ /var/tmp/diff_new_pack.xCHJi9/_new  2019-05-21 10:23:27.431586522 +0200
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.57
+%define _tar_path 5.58
 # 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}')}
 Name:   breeze5-icons
-Version:5.57.0
+Version:5.58.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.57.0.tar.xz -> breeze-icons-5.58.0.tar.xz ++
 1725 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2019-04-19 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2019-04-19 21:20:25

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.5536 (New)


Package is "breeze5-icons"

Fri Apr 19 21:20:25 2019 rev:43 rq:695194 version:5.57.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2019-03-21 09:42:52.086944985 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.5536/breeze5-icons.changes
2019-04-19 21:20:28.53557 +0200
@@ -1,0 +2,24 @@
+Sun Apr 14 20:21:41 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.57.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.57.0.php
+- Changes since 5.56.0:
+  * Add "notifications" and "notifications-disabled" icons (kde#406121)
+  * make start-here-kde also available as start-here-kde-plasma
+  * Sublime Merge Icon.
+  * Give applications-games and input-gaming more contrast with Breeze Dark
+  * Make 24px go-up actually 24px
+  * Add preferences-desktop-theme-applications and 
preferences-desktop-theme-windowdecorations icons
+  * Add symlinks from "preferences-desktop-theme" to 
"preferences-desktop-theme-applications"
+  * Remove preferences-desktop-theme in preparation to making it a symlink
+  * Add collapse/expand-all, window-shade/unshade (kde#404344)
+  * Improve consistency of window-* and add more
+  * Make go-bottom/first/last/top look more like media-skip*
+  * Change go-up/down-search symlinks target to go-up/down
+  * Improve pixel grid alignment of go-up/down/next/previous/jump
+  * Change media-skip* and media-seek* style
+  * Enforce new muted icon style in all action icons
+
+---

Old:

  breeze-icons-5.56.0.tar.xz

New:

  breeze-icons-5.57.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.lYvUss/_old  2019-04-19 21:20:29.115576294 +0200
+++ /var/tmp/diff_new_pack.lYvUss/_new  2019-04-19 21:20:29.115576294 +0200
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.56
+%define _tar_path 5.57
 # 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}')}
 Name:   breeze5-icons
-Version:5.56.0
+Version:5.57.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.56.0.tar.xz -> breeze-icons-5.57.0.tar.xz ++
 4211 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2019-03-21 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2019-03-21 09:42:47

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.28833 (New)


Package is "breeze5-icons"

Thu Mar 21 09:42:47 2019 rev:42 rq:686712 version:5.56.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2019-02-28 21:27:03.885859633 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.28833/breeze5-icons.changes   
2019-03-21 09:42:52.086944985 +0100
@@ -1,0 +2,26 @@
+Sun Mar 10 20:15:34 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.56.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.56.0.php
+- Changes since 5.55.0:
+  * Add code-oss icon
+  * [breeze-icons] Add video camera icons
+  * [breeze-icons] Use new suspend, hibernate and switch user icons in Breeze 
icon theme
+  * Add 16 px and 22 px versions of the gamepad icon to devices/
+  * Make Breeze theme tooltip texts consistent
+  * Add battery icons
+  * Rename "visibility" and "hint" icons to "view-visible" and "view-hidden" 
Also add compatibility symlinks pointing to the original names
+  * [breeze-icons] Add monochrome/smaller SD card and memory stick icons 
(kde#404231)
+  * Add device icons for drones
+  * Change C/C++ header/source mimetype icons to circle/line style
+  * Fix missing shadows on C/C++ header mimetype icons (kde#401793)
+  * Remove monochrome font preferences icon
+  * Improve font selection icon
+  * Use new bell-style icon for all users of preferences-desktop-notification 
(kde#404094)
+  * [breeze-icons] Add 16px versions of gnumeric-font.svg and link 
gnumeric-font.svg to font.svg
+  * Add preferences-system-users symlinks that point to yast-users icon
+  * Add edit-none icon
+
+---

Old:

  breeze-icons-5.55.0.tar.xz

New:

  breeze-icons-5.56.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.Ro23y7/_old  2019-03-21 09:42:52.878944802 +0100
+++ /var/tmp/diff_new_pack.Ro23y7/_new  2019-03-21 09:42:52.882944802 +0100
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.55
+%define _tar_path 5.56
 # 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}')}
 Name:   breeze5-icons
-Version:5.55.0
+Version:5.56.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.55.0.tar.xz -> breeze-icons-5.56.0.tar.xz ++
 6453 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2019-02-28 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2019-02-28 21:27:03

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.28833 (New)


Package is "breeze5-icons"

Thu Feb 28 21:27:03 2019 rev:41 rq:678661 version:5.55.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2019-02-14 14:30:37.643727654 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.28833/breeze5-icons.changes   
2019-02-28 21:27:03.885859633 +0100
@@ -1,0 +2,5 @@
+Fri Feb 15 09:25:42 UTC 2019 - alarr...@suse.com
+
+- Downgrade the Qt version requirement to build with 5.9
+
+---



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.ObzpsX/_old  2019-02-28 21:27:04.401859461 +0100
+++ /var/tmp/diff_new_pack.ObzpsX/_new  2019-02-28 21:27:04.405859459 +0100
@@ -47,6 +47,9 @@
 %prep
 %setup -q -n breeze-icons-%{version}
 %patch0 -p1
+%if 0%{?suse_version} == 1500
+sed -i -e "s/^set *(REQUIRED_QT_VERSION 5.10.0)$/set(REQUIRED_QT_VERSION 
5.9.0)/" CMakeLists.txt
+%endif
 
 %build
   %cmake_kf5 -d build -- -DBINARY_ICONS_RESOURCE=ON




commit breeze5-icons for openSUSE:Factory

2019-02-14 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2019-02-14 14:30:22

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.28833 (New)


Package is "breeze5-icons"

Thu Feb 14 14:30:22 2019 rev:40 rq:674683 version:5.55.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2019-01-21 10:17:45.422231654 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.28833/breeze5-icons.changes   
2019-02-14 14:30:37.643727654 +0100
@@ -1,0 +2,15 @@
+Wed Feb 13 09:45:37 UTC 2019 - Fabian Vogt 
+
+- Workaround yast2-theme incompatibility by adding a symlink
+
+---
+Sun Feb 10 22:02:58 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.55.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.55.0.php
+- Changes since 5.54.0:
+  * Too many changes to list here
+
+---

Old:

  breeze-icons-5.54.0.tar.xz

New:

  breeze-icons-5.55.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.1q8MRq/_old  2019-02-14 14:30:38.995727032 +0100
+++ /var/tmp/diff_new_pack.1q8MRq/_new  2019-02-14 14:30:38.999727030 +0100
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.54
+%define _tar_path 5.55
 # 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}')}
 Name:   breeze5-icons
-Version:5.54.0
+Version:5.55.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only
@@ -55,6 +55,10 @@
 %install
   %kf5_makeinstall -C build
 
+  # yast2-theme uses these, but it got renamed in 5.55.0
+  ln -s yast-software-group.svg 
%{buildroot}%{_kf5_iconsdir}/breeze/preferences/32/yast-software.svg
+  ln -s yast-software-group.svg 
%{buildroot}%{_kf5_iconsdir}/breeze-dark/preferences/32/yast-software.svg
+
   %fdupes -s %{buildroot}%{_kf5_iconsdir}
 
   %icon_theme_cache_create_ghost breeze

++ breeze-icons-5.54.0.tar.xz -> breeze-icons-5.55.0.tar.xz ++
 3560 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2019-01-21 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2019-01-21 10:17:45

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.28833 (New)


Package is "breeze5-icons"

Mon Jan 21 10:17:45 2019 rev:39 rq:665769 version:5.54.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2018-12-19 13:38:35.308196750 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.28833/breeze5-icons.changes   
2019-01-21 10:17:45.422231654 +0100
@@ -1,0 +2,30 @@
+Mon Jan 14 06:08:41 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.54.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.54.0.php
+- Changes since 5.53.0:
+  * Change preferences-system-network to symlink
+  * Use a Kolf icon with nice background and shadows
+  * Copy some changed icons from Breeze to Breeze Dark
+  * Better plasma-media-center icon
+  * Fix gradient positions (Breeze Dark)
+  * Fix shadow gradients
+  * Better desktop icon colors
+  * Better multimedia related icons
+  * Add YaST and new preference icons
+  * Add a proper python-bytecode icon, use consistent color in python icons 
(kde#381051)
+  * Delete python bytecode symlinks in preparation for them becoming their own 
icons
+  * Make the python mimetype icon the base, and the python bytecode icon a 
link to it
+  * Add device icons for RJ11 and RJ45 ports
+  * Add missing directory separator (kde#401836)
+  * Use correct icon for Python 3 scripts BUG: 402367 FIXED-IN: 5.54 
(kde#402367)
+  * Change network/web color icons to consistent style
+  * Add new name for sqlite files, so the icons actually show up BUG: 402095 
FIXED-IN: 5.54 (kde#402095)
+  * Add drive-* icons for YaST Partitioner
+  * Add view-private icon (kde#401646)
+  * Add flashlight action icons
+  * Improve symbolism for off and muted status icon (kde#398975)
+
+---

Old:

  breeze-icons-5.53.0.tar.xz

New:

  breeze-icons-5.54.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.YKCGIR/_old  2019-01-21 10:17:45.914231159 +0100
+++ /var/tmp/diff_new_pack.YKCGIR/_new  2019-01-21 10:17:45.914231159 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package breeze5-icons
 #
-# 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
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.53
+%define _tar_path 5.54
 # 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}')}
 Name:   breeze5-icons
-Version:5.53.0
+Version:5.54.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.53.0.tar.xz -> breeze-icons-5.54.0.tar.xz ++
 8061 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2018-12-19 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2018-12-19 13:38:33

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new.28833 (New)


Package is "breeze5-icons"

Wed Dec 19 13:38:33 2018 rev:38 rq:658536 version:5.53.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2018-11-14 14:30:45.179479776 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.28833/breeze5-icons.changes   
2018-12-19 13:38:35.308196750 +0100
@@ -1,0 +2,25 @@
+Sun Dec 09 19:43:42 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.53.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.53.0.php
+- Changes since 5.52.0:
+  * Add icons for application-vnd.appimage/x-iso9660-appimage
+  * Add 22px dialog-warning icon (kde#397983)
+  * Move firewall-applet icons to status category
+  * Fix angle and margin of 32px dialog-ok-apply (kde#393608)
+  * Resolve merge conflict
+  * Add mouse button icons
+  * Change primary monochrome icon colors to match new HIG colors
+  * Change archive-* action icons to represent archives (kde#399253)
+  * Add help-browser symlink to 16px and 22px directories (kde#400852)
+  * Add new generic sorting icons; rename existing sorting icons
+  * Added a set of Game Folder icons
+  * Fix a small color and shadow issue with Kdots icon
+  * Fix contrast and other small visual issues of Kdots icon
+  * Create new Sublime Text icon
+  * Add new icons for root
+  * Add root version of drive-harddisk (kde#399307)
+
+---

Old:

  breeze-icons-5.52.0.tar.xz

New:

  breeze-icons-5.53.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.R2o46W/_old  2018-12-19 13:38:35.820196023 +0100
+++ /var/tmp/diff_new_pack.R2o46W/_new  2018-12-19 13:38:35.820196023 +0100
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.52
+%define _tar_path 5.53
 # 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}')}
 Name:   breeze5-icons
-Version:5.52.0
+Version:5.53.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.52.0.tar.xz -> breeze-icons-5.53.0.tar.xz ++
 75164 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2018-11-14 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2018-11-14 14:30:40

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Wed Nov 14 14:30:40 2018 rev:37 rq:648487 version:5.52.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2018-10-22 11:07:53.704044132 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2018-11-14 14:30:45.179479776 +0100
@@ -1,0 +2,13 @@
+Sun Nov 11 19:48:02 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.52.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.52.0.php
+- Changes since 5.51.0:
+  * Change package manager icons to emblems
+  * Re-add monochrome link icon as action Some action icons were symlinks to 
`emblem-symbolic-link`. When the new emblem style was applied to 
`emblem-symbolic-link`, those actions then had the wrong style. The old style 
has been re-added as an action icon and the symlinks have been changed to point 
to `link.svg`.
+  * Improve emblem contrast, legibility and consistency (kde#399356, 
kde#399357, kde#399968)
+  * Support "new" mimetype for .deb files BUG: 399421 FIXED-IN: 5.52 
(kde#399421)
+
+---

Old:

  breeze-icons-5.51.0.tar.xz

New:

  breeze-icons-5.52.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.iRNGpb/_old  2018-11-14 14:30:46.755478252 +0100
+++ /var/tmp/diff_new_pack.iRNGpb/_new  2018-11-14 14:30:46.755478252 +0100
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.51
+%define _tar_path 5.52
 # 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}')}
 Name:   breeze5-icons
-Version:5.51.0
+Version:5.52.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.51.0.tar.xz -> breeze-icons-5.52.0.tar.xz ++
 5564 lines of diff (skipped)

++ oxygen.diff ++
--- /var/tmp/diff_new_pack.iRNGpb/_old  2018-11-14 14:31:51.535415532 +0100
+++ /var/tmp/diff_new_pack.iRNGpb/_new  2018-11-14 14:31:51.535415532 +0100
@@ -1,8 +1,8 @@
-Index: breeze-icons-5.36.0/icons/index.theme
-===
 breeze-icons-5.36.0.orig/icons/index.theme
-+++ breeze-icons-5.36.0/icons/index.theme
-@@ -76,7 +76,7 @@ Comment[zh_TW]=預設的 Plasma 5 主題
+diff --git a/icons/index.theme b/icons/index.theme
+index c977e68..be58a20 100644
+--- a/icons/index.theme
 b/icons/index.theme
+@@ -19,7 +19,7 @@ Comment[x-test]=xxDefault Plasma 5 Theme
  
  DisplayDepth=32
  




commit breeze5-icons for openSUSE:Factory

2018-10-22 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2018-10-22 11:07:45

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Mon Oct 22 11:07:45 2018 rev:36 rq:642290 version:5.51.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2018-10-01 08:03:23.674449927 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2018-10-22 11:07:53.704044132 +0200
@@ -1,0 +2,23 @@
+Tue Oct 16 08:01:44 UTC 2018 - Luca Beltrame 
+
+- Run spec-cleaner
+
+---
+Mon Oct 15 11:51:45 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.51.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.51.0.php
+- Changes since 5.50.0:
+  * Fix "stack-use-after-scope" detected by ASAN in CI
+  * Fix monochrome icons missing stylesheets
+  * Change drive-harddisk to more adaptable style
+  * Add firewall-config and firewall-applet icons
+  * Make lock on plasmavault icon visible with breeze-dark
+  * Add plus symbol to document-new.svg (kde#398850)
+  * Use qprintable here
+  * Make it compile with KDEFrameworkCompilerSettings
+  * Provide icons for 2x scaling
+
+---

Old:

  breeze-icons-5.50.0.tar.xz

New:

  breeze-icons-5.51.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.n0GmNH/_old  2018-10-22 11:07:57.056041353 +0200
+++ /var/tmp/diff_new_pack.n0GmNH/_new  2018-10-22 11:07:57.056041353 +0200
@@ -12,22 +12,22 @@
 # 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/
 #
 
 
-%define _tar_path 5.50
+%define _tar_path 5.51
 # 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}')}
 Name:   breeze5-icons
-Version:5.50.0
+Version:5.51.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only
 Group:  System/GUI/KDE
-URL:http://www.kde.org
+URL:https://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/breeze-icons-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE oxygen.diff -- inherit from oxygen
 Patch0: oxygen.diff

++ breeze-icons-5.50.0.tar.xz -> breeze-icons-5.51.0.tar.xz ++
 3426 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2018-10-01 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2018-10-01 08:03:21

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Mon Oct  1 08:03:21 2018 rev:35 rq:635969 version:5.50.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2018-08-24 16:50:48.537128380 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2018-10-01 08:03:23.674449927 +0200
@@ -1,0 +2,11 @@
+Thu Sep 13 21:58:44 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.50.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.50.0.php
+- Changes since 5.49.0:
+  * Add LabPlot project file icon
+  * ScalableTest, add "scalable" plasma-browser-integration (kde#393999)
+
+---

Old:

  breeze-icons-5.49.0.tar.xz

New:

  breeze-icons-5.50.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.OdAM83/_old  2018-10-01 08:03:25.142449139 +0200
+++ /var/tmp/diff_new_pack.OdAM83/_new  2018-10-01 08:03:25.146449138 +0200
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.49
+%define _tar_path 5.50
 # 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}')}
 Name:   breeze5-icons
-Version:5.49.0
+Version:5.50.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.49.0.tar.xz -> breeze-icons-5.50.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.49.0/CMakeLists.txt 
new/breeze-icons-5.50.0/CMakeLists.txt
--- old/breeze-icons-5.49.0/CMakeLists.txt  2018-08-04 10:41:40.0 
+0200
+++ new/breeze-icons-5.50.0/CMakeLists.txt  2018-09-01 00:19:11.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.49.0") # handled by release scripts
+set(KF5_VERSION "5.50.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.49.0  NO_MODULE)
+find_package(ECM 5.50.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.49.0/icons/apps/48/plasma-browser-integration.svg 
new/breeze-icons-5.50.0/icons/apps/48/plasma-browser-integration.svg
--- old/breeze-icons-5.49.0/icons/apps/48/plasma-browser-integration.svg
1970-01-01 01:00:00.0 +0100
+++ new/breeze-icons-5.50.0/icons/apps/48/plasma-browser-integration.svg
2018-10-01 08:04:47.702404855 +0200
@@ -0,0 +1 @@
+symbolic link to ../22/plasma-browser-integration.svg
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.49.0/icons/apps/64/plasma-browser-integration.svg 
new/breeze-icons-5.50.0/icons/apps/64/plasma-browser-integration.svg
--- old/breeze-icons-5.49.0/icons/apps/64/plasma-browser-integration.svg
1970-01-01 01:00:00.0 +0100
+++ new/breeze-icons-5.50.0/icons/apps/64/plasma-browser-integration.svg
2018-10-01 08:04:47.602404908 +0200
@@ -0,0 +1 @@
+symbolic link to ../22/plasma-browser-integration.svg
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.49.0/icons/index.theme 
new/breeze-icons-5.50.0/icons/index.theme
--- old/breeze-icons-5.49.0/icons/index.theme   2018-08-04 10:41:40.0 
+0200
+++ new/breeze-icons-5.50.0/icons/index.theme   2018-09-01 00:19:11.0 
+0200
@@ -39,7 +39,7 @@
 Name[zh_TW]=Breeze
 
 Comment=Default Plasma 5 Theme
-Comment[ar]=سمة «بلازما ٥» الافتراضيّة
+Comment[ar]=سمة «بلازما ٥» المبدئية
 Comment[ast]=El tema por defeutu de Plasma 5
 Comment[ca]=Tema del Plasma 5 per defecte
 Comment[ca@valencia]=Tema del Plasma 5 per defecte
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.49.0/icons/mimetypes/64/application-x-labplot2.svg 
new/breeze-icons-5.50.0/icons/mimetypes/64/application-x-labplot2.svg
--- old/breeze-icons-5.49.0/icons/mimetypes/64/application-x-labplot2.svg   

commit breeze5-icons for openSUSE:Factory

2018-08-24 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2018-08-24 16:50:46

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Fri Aug 24 16:50:46 2018 rev:34 rq:630580 version:5.49.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2018-07-21 10:10:12.103170889 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2018-08-24 16:50:48.537128380 +0200
@@ -1,0 +2,10 @@
+Sun Aug 19 09:18:41 UTC 2018 - christo...@krop.fr
+
+- Update to 5.49.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.49.0.php
+- Changes since 5.48.0:
+  * Add `drive-optical` icon (kde#396432)
+
+---

Old:

  breeze-icons-5.48.0.tar.xz

New:

  breeze-icons-5.49.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.974bBr/_old  2018-08-24 16:50:49.049128983 +0200
+++ /var/tmp/diff_new_pack.974bBr/_new  2018-08-24 16:50:49.053128988 +0200
@@ -16,18 +16,18 @@
 #
 
 
-%define _tar_path 5.48
+%define _tar_path 5.49
 # 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}')}
 Name:   breeze5-icons
-Version:5.48.0
+Version:5.49.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only
 Group:  System/GUI/KDE
-Url:http://www.kde.org
+URL:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/breeze-icons-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE oxygen.diff -- inherit from oxygen
 Patch0: oxygen.diff
@@ -40,7 +40,6 @@
 BuildRequires:  cmake(Qt5Test) >= 5.6.0
 Requires:   oxygen5-icon-theme
 BuildArch:  noarch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Breeze-icons is a freedesktop.org compatible icon theme.
@@ -66,8 +65,7 @@
 %icon_theme_cache_post breeze-dark
 
 %files
-%defattr(-,root,root)
-%doc COPYING*
+%license COPYING*
 %ghost %{_kf5_iconsdir}/breeze/icon-theme.cache
 %ghost %{_kf5_iconsdir}/breeze-dark/icon-theme.cache
 %{_kf5_iconsdir}/breeze/

++ breeze-icons-5.48.0.tar.xz -> breeze-icons-5.49.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.48.0/CMakeLists.txt 
new/breeze-icons-5.49.0/CMakeLists.txt
--- old/breeze-icons-5.48.0/CMakeLists.txt  2018-07-07 23:51:45.0 
+0200
+++ new/breeze-icons-5.49.0/CMakeLists.txt  2018-08-04 10:41:40.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.48.0") # handled by release scripts
+set(KF5_VERSION "5.49.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.48.0  NO_MODULE)
+find_package(ECM 5.49.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.48.0/icons/devices/16/drive-optical.svg 
new/breeze-icons-5.49.0/icons/devices/16/drive-optical.svg
--- old/breeze-icons-5.48.0/icons/devices/16/drive-optical.svg  1970-01-01 
01:00:00.0 +0100
+++ new/breeze-icons-5.49.0/icons/devices/16/drive-optical.svg  2018-08-24 
16:51:45.897195938 +0200
@@ -0,0 +1 @@
+symbolic link to media-optical.svg
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.48.0/icons/devices/22/drive-optical.svg 
new/breeze-icons-5.49.0/icons/devices/22/drive-optical.svg
--- old/breeze-icons-5.48.0/icons/devices/22/drive-optical.svg  1970-01-01 
01:00:00.0 +0100
+++ new/breeze-icons-5.49.0/icons/devices/22/drive-optical.svg  2018-08-24 
16:51:45.841195872 +0200
@@ -0,0 +1 @@
+symbolic link to media-optical.svg
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.48.0/icons/devices/64/drive-optical.svg 
new/breeze-icons-5.49.0/icons/devices/64/drive-optical.svg
--- old/breeze-icons-5.48.0/icons/devices/64/drive-optical.svg  1970-01-01 
01:00:00.0 +0100
+++ 

commit breeze5-icons for openSUSE:Factory

2018-07-21 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2018-07-21 10:10:11

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Sat Jul 21 10:10:11 2018 rev:33 rq:623253 version:5.48.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2018-06-22 13:17:14.526902027 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2018-07-21 10:10:12.103170889 +0200
@@ -1,0 +2,14 @@
+Mon Jul 16 04:37:34 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.48.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.48.0.php
+- Changes since 5.47.0:
+  * Use the broom-style icon for edit-clear-all too
+  * Use a broom-style icon for edit-clear-history
+  * Revert "BUG 391855 update clear icon with broom"
+  * BUG 391855 update clear icon with broom
+  * change 24px view-media-artist icon
+
+---

Old:

  breeze-icons-5.47.0.tar.xz

New:

  breeze-icons-5.48.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.4McWK3/_old  2018-07-21 10:10:13.175170642 +0200
+++ /var/tmp/diff_new_pack.4McWK3/_new  2018-07-21 10:10:13.191170638 +0200
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.47
+%define _tar_path 5.48
 # 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: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
+%{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   breeze5-icons
-Version:5.47.0
+Version:5.48.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.47.0.tar.xz -> breeze-icons-5.48.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.47.0/CMakeLists.txt 
new/breeze-icons-5.48.0/CMakeLists.txt
--- old/breeze-icons-5.47.0/CMakeLists.txt  2018-06-02 18:26:17.0 
+0200
+++ new/breeze-icons-5.48.0/CMakeLists.txt  2018-07-07 23:51:45.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.47.0") # handled by release scripts
+set(KF5_VERSION "5.48.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.47.0  NO_MODULE)
+find_package(ECM 5.48.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.47.0/icons/actions/16/edit-clear-all.svg 
new/breeze-icons-5.48.0/icons/actions/16/edit-clear-all.svg
--- old/breeze-icons-5.47.0/icons/actions/16/edit-clear-all.svg 1970-01-01 
01:00:00.0 +0100
+++ new/breeze-icons-5.48.0/icons/actions/16/edit-clear-all.svg 2018-07-21 
10:11:08.991157725 +0200
@@ -0,0 +1 @@
+symbolic link to edit-clear-history.svg
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.47.0/icons/actions/16/edit-clear-history.svg 
new/breeze-icons-5.48.0/icons/actions/16/edit-clear-history.svg
--- old/breeze-icons-5.47.0/icons/actions/16/edit-clear-history.svg 
2018-07-21 10:10:39.939164454 +0200
+++ new/breeze-icons-5.48.0/icons/actions/16/edit-clear-history.svg 
2018-07-07 23:51:45.0 +0200
@@ -1 +1,13 @@
-symbolic link to edit-clear.svg
+http://www.w3.org/2000/svg; viewBox="0 0 16 16">
+  
+
+  .ColorScheme-Text {
+color:#4d4d4d;
+  }
+  
+  
+ 
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.47.0/icons/actions/22/edit-clear-all.svg 
new/breeze-icons-5.48.0/icons/actions/22/edit-clear-all.svg
--- old/breeze-icons-5.47.0/icons/actions/22/edit-clear-all.svg 1970-01-01 
01:00:00.0 +0100
+++ new/breeze-icons-5.48.0/icons/actions/22/edit-clear-all.svg 2018-07-21 
10:11:05.707158486 +0200
@@ -0,0 +1 @@
+symbolic link to edit-clear-history.svg
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.47.0/icons/actions/22/edit-clear-history.svg 

commit breeze5-icons for openSUSE:Factory

2018-06-22 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2018-06-22 13:17:11

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Fri Jun 22 13:17:11 2018 rev:32 rq:616732 version:5.47.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2018-05-18 14:18:25.11122 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2018-06-22 13:17:14.526902027 +0200
@@ -1,0 +2,12 @@
+Wed Jun 13 05:22:51 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.47.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.47.0.php
+- Changes since 5.46.0:
+  * fix handle-right
+  * updated handles and overflow-menu
+  * add varlesh to the authors list, thanks for your work
+
+---

Old:

  breeze-icons-5.46.0.tar.xz

New:

  breeze-icons-5.47.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.Mhjiv2/_old  2018-06-22 13:17:15.382870287 +0200
+++ /var/tmp/diff_new_pack.Mhjiv2/_new  2018-06-22 13:17:15.386870139 +0200
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.46
+%define _tar_path 5.47
 # 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: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   breeze5-icons
-Version:5.46.0
+Version:5.47.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.46.0.tar.xz -> breeze-icons-5.47.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.46.0/CMakeLists.txt 
new/breeze-icons-5.47.0/CMakeLists.txt
--- old/breeze-icons-5.46.0/CMakeLists.txt  2018-05-05 14:38:07.0 
+0200
+++ new/breeze-icons-5.47.0/CMakeLists.txt  2018-06-02 18:26:17.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.46.0") # handled by release scripts
+set(KF5_VERSION "5.47.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.46.0  NO_MODULE)
+find_package(ECM 5.47.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.46.0/icons/AUTHORS 
new/breeze-icons-5.47.0/icons/AUTHORS
--- old/breeze-icons-5.46.0/icons/AUTHORS   2018-05-05 14:38:07.0 
+0200
+++ new/breeze-icons-5.47.0/icons/AUTHORS   2018-06-02 18:26:17.0 
+0200
@@ -1,3 +1,3 @@
 Breeze Icon Theme has been developed by The KDE Visual Design Group.
 
-Main work for the icon theme: Uri Herrera, Ken Vermette, Andrew Lake, Alexey 
Varfolomeev, Alessandro Longo and Andreas Kainz
+Main work for the icon theme: Uri Herrera, Ken Vermette, Andrew Lake, Alexey 
Varfolomeev, Alessandro Longo, varlesh and Andreas Kainz
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.46.0/icons/actions/22/drag-surface.svg 
new/breeze-icons-5.47.0/icons/actions/22/drag-surface.svg
--- old/breeze-icons-5.46.0/icons/actions/22/drag-surface.svg   1970-01-01 
01:00:00.0 +0100
+++ new/breeze-icons-5.47.0/icons/actions/22/drag-surface.svg   2018-06-02 
18:26:17.0 +0200
@@ -0,0 +1,16 @@
+
+http://www.w3.org/2000/svg; viewBox="0 0 22 22">
+  
+
+  .ColorScheme-Text {
+color:#4d4d4d;
+  }
+  
+  
+ 
+
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.46.0/icons/actions/22/handle-left.svg 
new/breeze-icons-5.47.0/icons/actions/22/handle-left.svg
--- old/breeze-icons-5.46.0/icons/actions/22/handle-left.svg2018-06-22 
13:17:41.889887405 +0200
+++ new/breeze-icons-5.47.0/icons/actions/22/handle-left.svg2018-06-22 
13:18:22.936365410 +0200
@@ -1 +1 @@
-symbolic link to handle-right.svg
+symbolic link to overflow-menu-left.svg
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.46.0/icons/actions/22/handle-move.svg 
new/breeze-icons-5.47.0/icons/actions/22/handle-move.svg
--- 

commit breeze5-icons for openSUSE:Factory

2018-05-18 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2018-05-18 14:18:23

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Fri May 18 14:18:23 2018 rev:31 rq:607530 version:5.46.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2018-04-19 15:13:53.776717357 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2018-05-18 14:18:25.11122 +0200
@@ -1,0 +2,16 @@
+Sun May 13 21:02:59 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.46.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.46.0.php
+- Changes since 5.45.0:
+  * Add plasma-browser-integration system tray icon
+  * remove plasma-browser-integration system tray icon will waite for review
+  * Add Virt-manager icon thanks to ndavis
+  * Add video-card-inactive
+  * validate icons
+  * overflow-menu as view-more-symbolic, and horizontal
+  * Use the more appropriate "two sliders" icon for "configure"
+
+---

Old:

  breeze-icons-5.45.0.tar.xz

New:

  breeze-icons-5.46.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.E0bhsZ/_old  2018-05-18 14:18:25.607237350 +0200
+++ /var/tmp/diff_new_pack.E0bhsZ/_new  2018-05-18 14:18:25.607237350 +0200
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.45
+%define _tar_path 5.46
 # 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: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   breeze5-icons
-Version:5.45.0
+Version:5.46.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.45.0.tar.xz -> breeze-icons-5.46.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.45.0/CMakeLists.txt 
new/breeze-icons-5.46.0/CMakeLists.txt
--- old/breeze-icons-5.45.0/CMakeLists.txt  2018-04-07 09:46:27.0 
+0200
+++ new/breeze-icons-5.46.0/CMakeLists.txt  2018-05-05 14:38:07.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.45.0") # handled by release scripts
+set(KF5_VERSION "5.46.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.45.0  NO_MODULE)
+find_package(ECM 5.46.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.45.0/icons/actions/16/configure-shortcuts.svg 
new/breeze-icons-5.46.0/icons/actions/16/configure-shortcuts.svg
--- old/breeze-icons-5.45.0/icons/actions/16/configure-shortcuts.svg
2018-04-07 09:46:27.0 +0200
+++ new/breeze-icons-5.46.0/icons/actions/16/configure-shortcuts.svg
2018-05-18 14:19:38.632557352 +0200
@@ -1,13 +1 @@
-http://www.w3.org/2000/svg; viewBox="0 0 16 16">
-  
-
-  .ColorScheme-Text {
-color:#4d4d4d;
-  }
-  
-  
- 
-
+symbolic link to ../../devices/22/input-keyboard.svg
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.45.0/icons/actions/16/configure-toolbars.svg 
new/breeze-icons-5.46.0/icons/actions/16/configure-toolbars.svg
--- old/breeze-icons-5.45.0/icons/actions/16/configure-toolbars.svg 
2018-05-18 14:18:57.218077225 +0200
+++ new/breeze-icons-5.46.0/icons/actions/16/configure-toolbars.svg 
2018-05-18 14:19:36.264644251 +0200
@@ -1 +1 @@
-symbolic link to document-properties.svg
+symbolic link to configure.svg
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.45.0/icons/actions/16/configure.svg 
new/breeze-icons-5.46.0/icons/actions/16/configure.svg
--- old/breeze-icons-5.45.0/icons/actions/16/configure.svg  2018-04-07 
09:46:27.0 +0200
+++ new/breeze-icons-5.46.0/icons/actions/16/configure.svg  2018-05-05 
14:38:07.0 +0200
@@ -7,7 +7,7 @@
   
   
  
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.45.0/icons/actions/16/configure_kile.svg 

commit breeze5-icons for openSUSE:Factory

2018-04-19 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2018-04-19 15:13:52

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Thu Apr 19 15:13:52 2018 rev:30 rq:596843 version:5.45.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2018-03-20 21:42:58.939222391 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2018-04-19 15:13:53.776717357 +0200
@@ -1,0 +2,20 @@
+Sat Apr 14 13:19:02 CEST 2018 - lbeltr...@kde.org
+
+- Update to 5.45.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.45.0.php
+- Changes since 5.44.0:
+  * Remove dupe, as was done in icons/
+  * BUG:385170 add window-pin icon (kde#385170 add window-pin icon)
+  * rename 64 px icons added for elisa
+  * change 32px icons for playlist shuffle and repeat
+  * BUG 392391 Missing icons for inline Messages BUG:392391 (kde#392391)
+  * New icon for Elisa music player
+  * Add media status icons
+  * Remove frame around media action icons
+  * autotest: skip dupetest if fdupes isn't found on Windows, to fix CI
+  * add media-playlist-append and play icons
+  * add view-media-album-cover for babe
+
+---

Old:

  breeze-icons-5.44.0.tar.xz

New:

  breeze-icons-5.45.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.6xIFZ8/_old  2018-04-19 15:13:54.388693175 +0200
+++ /var/tmp/diff_new_pack.6xIFZ8/_new  2018-04-19 15:13:54.388693175 +0200
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.44
+%define _tar_path 5.45
 # 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: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   breeze5-icons
-Version:5.44.0
+Version:5.45.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0-only

++ breeze-icons-5.44.0.tar.xz -> breeze-icons-5.45.0.tar.xz ++
 2972 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2018-03-20 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2018-03-20 21:42:57

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Tue Mar 20 21:42:57 2018 rev:29 rq:586798 version:5.44.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2018-02-16 21:27:16.192774236 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2018-03-20 21:42:58.939222391 +0100
@@ -1,0 +2,15 @@
+Mon Mar 12 23:29:40 CET 2018 - lbeltr...@kde.org
+
+- Update to 5.44.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.44.0.php
+- Changes since 5.43.0:
+  * Fix inconsistencies in index.theme, detected by scalabletest
+  * remove view-media-playlist from preferences icons
+  * add 24px media-album-cover icon
+  * add Babe QML support (22px)
+  * update handle- icons for kirigami
+  * add 64px media icons for elisa
+
+---

Old:

  breeze-icons-5.43.0.tar.xz

New:

  breeze-icons-5.44.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.k6YhM3/_old  2018-03-20 21:42:59.483202812 +0100
+++ /var/tmp/diff_new_pack.k6YhM3/_new  2018-03-20 21:42:59.487202668 +0100
@@ -16,16 +16,16 @@
 #
 
 
-%define _tar_path 5.43
+%define _tar_path 5.44
 # 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: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   breeze5-icons
-Version:5.43.0
+Version:5.44.0
 Release:0
 Summary:Breeze icon theme
-License:LGPL-3.0
+License:LGPL-3.0-only
 Group:  System/GUI/KDE
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/breeze-icons-%{version}.tar.xz

++ breeze-icons-5.43.0.tar.xz -> breeze-icons-5.44.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.43.0/CMakeLists.txt 
new/breeze-icons-5.44.0/CMakeLists.txt
--- old/breeze-icons-5.43.0/CMakeLists.txt  2018-02-05 09:10:01.0 
+0100
+++ new/breeze-icons-5.44.0/CMakeLists.txt  2018-03-03 10:51:36.0 
+0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.43.0") # handled by release scripts
+set(KF5_VERSION "5.44.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.43.0  NO_MODULE)
+find_package(ECM 5.44.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.43.0/autotests/scalabletest.cpp 
new/breeze-icons-5.44.0/autotests/scalabletest.cpp
--- old/breeze-icons-5.43.0/autotests/scalabletest.cpp  2018-02-05 
09:10:01.0 +0100
+++ new/breeze-icons-5.44.0/autotests/scalabletest.cpp  2018-03-03 
10:51:36.0 +0100
@@ -175,8 +175,8 @@
 QVERIFY(!directoryPaths.isEmpty());
 for (auto directoryPath : directoryPaths) {
 config.beginGroup(directoryPath);
-QVERIFY2(keys.contains(directoryPath+"/Size"),QString("The 
theme's 'Directories' specifies '%1' as directory which appears to"
-   
  " have no associated group entry 
'[%1]'").arg(directoryPath).toLatin1());
+QVERIFY2(keys.contains(directoryPath+"/Size"),QString("The 
theme %1 has an entry 'Directories' which specifies '%2' as directory, but 
there's no"
+   
  " have no associated entry '%2/Size'").arg(themeDir + "/index.theme", 
directoryPath).toLatin1());
 auto dir = QSharedPointer::create(config, themeDir);
 config.endGroup();
 contextHash[dir->context].append(dir);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.43.0/icons/actions/22/handle-left.svg 
new/breeze-icons-5.44.0/icons/actions/22/handle-left.svg
--- old/breeze-icons-5.43.0/icons/actions/22/handle-left.svg

commit breeze5-icons for openSUSE:Factory

2018-02-16 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2018-02-16 21:27:13

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Fri Feb 16 21:27:13 2018 rev:28 rq:576504 version:5.43.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2018-01-22 15:57:42.752342803 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2018-02-16 21:27:16.192774236 +0100
@@ -1,0 +2,10 @@
+Mon Feb 12 23:42:06 CET 2018 - lbeltr...@kde.org
+
+- Update to 5.43.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.43.0.php
+- Changes since 5.42.0:
+  * Too many changes to list here
+
+---

Old:

  breeze-icons-5.42.0.tar.xz

New:

  breeze-icons-5.43.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.8sO74y/_old  2018-02-16 21:27:17.032743922 +0100
+++ /var/tmp/diff_new_pack.8sO74y/_new  2018-02-16 21:27:17.040743633 +0100
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.42
+%define _tar_path 5.43
 # 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: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   breeze5-icons
-Version:5.42.0
+Version:5.43.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.42.0.tar.xz -> breeze-icons-5.43.0.tar.xz ++
 6286 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2018-01-22 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2018-01-22 15:57:41

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Mon Jan 22 15:57:41 2018 rev:27 rq:566650 version:5.42.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2018-01-09 14:39:08.515335008 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2018-01-22 15:57:42.752342803 +0100
@@ -1,0 +2,18 @@
+Tue Jan 16 22:50:13 CET 2018 - lbeltr...@kde.org
+
+- Update to 5.42.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.42.0.php
+- Changes since 5.41.0:
+  * Fix icon name "weather-none" -> "weather-none-available" (kde#379875)
+  * Remove obsolete reviewboardrc file
+  * remove Vivaldi icon cause the origin app icon fits perfect with breeze 
BUG: 383517 (kde#383517)
+  * add Some missing mimes
+  * Breeze-icons add document-send icon BUG: 388048 (kde#388048)
+  * update album artist icon
+  * add labplot-editlayout support
+  * remove duplicates and update dark theme
+  * add gnumeric breeze-icon support
+
+---

Old:

  breeze-icons-5.41.0.tar.xz

New:

  breeze-icons-5.42.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.oOhvpm/_old  2018-01-22 15:57:43.384313226 +0100
+++ /var/tmp/diff_new_pack.oOhvpm/_new  2018-01-22 15:57:43.388313038 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package breeze5-icons
 #
-# Copyright (c) 2017 SUSE LINUX 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
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.41
+%define _tar_path 5.42
 # 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: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   breeze5-icons
-Version:5.41.0
+Version:5.42.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.41.0.tar.xz -> breeze-icons-5.42.0.tar.xz ++
 5864 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2018-01-09 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2018-01-09 14:39:07

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Tue Jan  9 14:39:07 2018 rev:26 rq:559413 version:5.41.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2017-11-16 14:35:18.851070666 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2018-01-09 14:39:08.515335008 +0100
@@ -1,0 +2,12 @@
+Sun Dec 17 09:43:47 CET 2017 - lbeltr...@kde.org
+
+- Update to 5.41.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.41.0.php
+- Changes since 5.40.0:
+  * Add missing icon sizes (kde#384473)
+  * add install and uninstall for discover
+  * add install and uninstall icons for discover
+
+---

Old:

  breeze-icons-5.40.0.tar.xz

New:

  breeze-icons-5.41.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.W2EHBT/_old  2018-01-09 14:39:09.119306681 +0100
+++ /var/tmp/diff_new_pack.W2EHBT/_new  2018-01-09 14:39:09.119306681 +0100
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.40
+%define _tar_path 5.41
 # 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: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   breeze5-icons
-Version:5.40.0
+Version:5.41.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.40.0.tar.xz -> breeze-icons-5.41.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.40.0/CMakeLists.txt 
new/breeze-icons-5.41.0/CMakeLists.txt
--- old/breeze-icons-5.40.0/CMakeLists.txt  2017-11-04 22:35:33.0 
+0100
+++ new/breeze-icons-5.41.0/CMakeLists.txt  2017-12-02 10:52:51.0 
+0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.40.0") # handled by release scripts
+set(KF5_VERSION "5.41.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.40.0  NO_MODULE)
+find_package(ECM 5.41.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.40.0/icons/index.theme 
new/breeze-icons-5.41.0/icons/index.theme
--- old/breeze-icons-5.40.0/icons/index.theme   2017-11-04 22:35:33.0 
+0100
+++ new/breeze-icons-5.41.0/icons/index.theme   2017-12-02 10:52:51.0 
+0100
@@ -238,7 +238,7 @@
 Size=64
 Context=Devices
 Type=Scalable
-MinSize=64
+MinSize=24
 MaxSize=256
 
 ## Emblems
@@ -326,7 +326,7 @@
 Size=32
 Context=Places
 Type=Scalable
-MinSize=32
+MinSize=24
 MaxSize=48
 
 #64x64 - Scalable - For folder icons >!!!ONLY!!!< - Scalable to the following 
sizes: 64x64 (default), 32x32, 128x128, 256x256 - DO_NOT_USE_ANYWHERE_ELSE - 
Color
@@ -334,7 +334,7 @@
 Size=64
 Context=Places
 Type=Scalable
-MinSize=64
+MinSize=32
 MaxSize=256
 
 ## Status
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.40.0/icons/status/22/install.svg 
new/breeze-icons-5.41.0/icons/status/22/install.svg
--- old/breeze-icons-5.40.0/icons/status/22/install.svg 1970-01-01 
01:00:00.0 +0100
+++ new/breeze-icons-5.41.0/icons/status/22/install.svg 2017-12-02 
10:52:51.0 +0100
@@ -0,0 +1,13 @@
+http://www.w3.org/2000/svg; viewBox="0 0 22 22">
+  
+
+  .ColorScheme-Text {
+color:#4d4d4d;
+  }
+  
+  
+  
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.40.0/icons/status/22/uninstall.svg 
new/breeze-icons-5.41.0/icons/status/22/uninstall.svg
--- old/breeze-icons-5.40.0/icons/status/22/uninstall.svg   1970-01-01 
01:00:00.0 +0100
+++ new/breeze-icons-5.41.0/icons/status/22/uninstall.svg   2017-12-02 
10:52:51.0 +0100
@@ -0,0 +1,13 @@
+http://www.w3.org/2000/svg; viewBox="0 0 22 22">
+  
+
+  .ColorScheme-Text {
+color:#4d4d4d;
+  }
+  
+  
+  
+
diff -urN '--exclude=CVS' 

commit breeze5-icons for openSUSE:Factory

2017-11-16 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2017-11-16 14:35:17

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Thu Nov 16 14:35:17 2017 rev:25 rq:541630 version:5.40.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2017-10-27 13:52:35.144797914 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2017-11-16 14:35:18.851070666 +0100
@@ -1,0 +2,11 @@
+Mon Nov 13 07:01:13 CET 2017 - lbeltr...@kde.org
+
+- Update to 5.40.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.40.0.php
+- Changes since 5.39.0:
+  * Fix build of breeze-icons on the Android CI
+  * add folder-stash for the stash Dolphin toolbar icon
+
+---

Old:

  breeze-icons-5.39.0.tar.xz

New:

  breeze-icons-5.40.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.8NNmN4/_old  2017-11-16 14:35:19.883033258 +0100
+++ /var/tmp/diff_new_pack.8NNmN4/_new  2017-11-16 14:35:19.891032968 +0100
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.39
+%define _tar_path 5.40
 # 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: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   breeze5-icons
-Version:5.39.0
+Version:5.40.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.39.0.tar.xz -> breeze-icons-5.40.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.39.0/CMakeLists.txt 
new/breeze-icons-5.40.0/CMakeLists.txt
--- old/breeze-icons-5.39.0/CMakeLists.txt  2017-10-07 13:06:54.0 
+0200
+++ new/breeze-icons-5.40.0/CMakeLists.txt  2017-11-04 22:35:33.0 
+0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.39.0") # handled by release scripts
+set(KF5_VERSION "5.40.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.39.0  NO_MODULE)
+find_package(ECM 5.40.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)
 
@@ -19,7 +19,14 @@
 # Dependencies
 set(REQUIRED_QT_VERSION 5.7.0)
 
-option(BINARY_ICONS_RESOURCE "Install Qt binary resource files containing 
breeze icons (breeze-icons.rcc, breeze-icons-dark.rcc)" ON)
+# When cross-compiling, we should compile qrcAlias natively (against a native 
Qt build)
+if (CMAKE_CROSSCOMPILING)
+set(BINARY_ICONS_RESOURCE_OPTION_DEFAULT OFF)
+else()
+set(BINARY_ICONS_RESOURCE_OPTION_DEFAULT ON)
+endif()
+
+option(BINARY_ICONS_RESOURCE "Install Qt binary resource files containing 
breeze icons (breeze-icons.rcc, breeze-icons-dark.rcc)" 
${BINARY_ICONS_RESOURCE_OPTION_DEFAULT})
 option(SKIP_INSTALL_ICONS "Skip installing the icons files" OFF)
 
 if(BINARY_ICONS_RESOURCE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.39.0/icons/actions/16/folder-stash.svg 
new/breeze-icons-5.40.0/icons/actions/16/folder-stash.svg
--- old/breeze-icons-5.39.0/icons/actions/16/folder-stash.svg   1970-01-01 
01:00:00.0 +0100
+++ new/breeze-icons-5.40.0/icons/actions/16/folder-stash.svg   2017-11-04 
22:35:33.0 +0100
@@ -0,0 +1,13 @@
+http://www.w3.org/2000/svg; viewBox="0 0 16 16">
+  
+
+  .ColorScheme-Text {
+color:#4d4d4d;
+  }
+  
+  
+ 
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.39.0/icons/actions/22/folder-stash.svg 
new/breeze-icons-5.40.0/icons/actions/22/folder-stash.svg
--- old/breeze-icons-5.39.0/icons/actions/22/folder-stash.svg   1970-01-01 
01:00:00.0 +0100
+++ new/breeze-icons-5.40.0/icons/actions/22/folder-stash.svg   2017-11-04 
22:35:33.0 +0100
@@ -0,0 +1,14 @@
+http://www.w3.org/2000/svg; viewBox="0 0 22 22">
+  
+
+  .ColorScheme-Text {
+color:#4d4d4d;
+  }
+  
+  
+   
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.39.0/icons/index.theme 
new/breeze-icons-5.40.0/icons/index.theme
--- 

commit breeze5-icons for openSUSE:Factory

2017-10-27 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2017-10-27 13:52:33

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Fri Oct 27 13:52:33 2017 rev:24 rq:536296 version:5.39.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2017-09-19 16:29:00.891545051 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2017-10-27 13:52:35.144797914 +0200
@@ -1,0 +2,10 @@
+Mon Oct 23 06:41:36 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.39.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.39.0.php
+- Changes since 5.38.0:
+  * add overflow-menu icon (kde#385171)
+
+---

Old:

  breeze-icons-5.38.0.tar.xz

New:

  breeze-icons-5.39.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.7BOkeV/_old  2017-10-27 13:52:36.616729115 +0200
+++ /var/tmp/diff_new_pack.7BOkeV/_new  2017-10-27 13:52:36.616729115 +0200
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.38
+%define _tar_path 5.39
 # 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: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   breeze5-icons
-Version:5.38.0
+Version:5.39.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.38.0.tar.xz -> breeze-icons-5.39.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.38.0/CMakeLists.txt 
new/breeze-icons-5.39.0/CMakeLists.txt
--- old/breeze-icons-5.38.0/CMakeLists.txt  2017-09-02 10:47:30.0 
+0200
+++ new/breeze-icons-5.39.0/CMakeLists.txt  2017-10-07 13:06:54.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.38.0") # handled by release scripts
+set(KF5_VERSION "5.39.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.38.0  NO_MODULE)
+find_package(ECM 5.39.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.38.0/icons/actions/16/overflow-menu.svg 
new/breeze-icons-5.39.0/icons/actions/16/overflow-menu.svg
--- old/breeze-icons-5.38.0/icons/actions/16/overflow-menu.svg  1970-01-01 
01:00:00.0 +0100
+++ new/breeze-icons-5.39.0/icons/actions/16/overflow-menu.svg  2017-10-07 
13:06:54.0 +0200
@@ -0,0 +1,70 @@
+
+http://purl.org/dc/elements/1.1/;
+   xmlns:cc="http://creativecommons.org/ns#;
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
+   xmlns:svg="http://www.w3.org/2000/svg;
+   xmlns="http://www.w3.org/2000/svg;
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd;
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape;
+   viewBox="0 0 16 16"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="overflow-menu.svg">
+  
+
+  
+image/svg+xml
+http://purl.org/dc/dcmitype/StillImage; />
+
+  
+
+  
+  
+
+  
+  
+
+  .ColorScheme-Text {
+color:#4d4d4d;
+  }
+  
+  
+  
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.38.0/icons/actions/22/overflow-menu.svg 
new/breeze-icons-5.39.0/icons/actions/22/overflow-menu.svg
--- old/breeze-icons-5.38.0/icons/actions/22/overflow-menu.svg  1970-01-01 
01:00:00.0 +0100
+++ new/breeze-icons-5.39.0/icons/actions/22/overflow-menu.svg  2017-10-07 
13:06:54.0 +0200
@@ -0,0 +1,69 @@
+
+http://purl.org/dc/elements/1.1/;
+   xmlns:cc="http://creativecommons.org/ns#;
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
+   xmlns:svg="http://www.w3.org/2000/svg;
+   xmlns="http://www.w3.org/2000/svg;
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd;
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape;
+   viewBox="0 0 22 22"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="overflow-menu.svg">
+  
+
+   

commit breeze5-icons for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2017-09-19 16:28:59

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Tue Sep 19 16:28:59 2017 rev:23 rq:526697 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2017-08-24 17:53:02.694965603 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2017-09-19 16:29:00.891545051 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:16 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * None
+
+---

Old:

  breeze-icons-5.37.0.tar.xz

New:

  breeze-icons-5.38.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.IhrRYl/_old  2017-09-19 16:29:01.495459487 +0200
+++ /var/tmp/diff_new_pack.IhrRYl/_new  2017-09-19 16:29:01.499458921 +0200
@@ -16,9 +16,13 @@
 #
 
 
-%define _tar_path 5.37
+%define _tar_path 5.38
+# 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: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   breeze5-icons
-Version:5.37.0
+Version:5.38.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0
@@ -28,7 +32,7 @@
 # PATCH-FIX-OPENSUSE oxygen.diff -- inherit from oxygen
 Patch0: oxygen.diff
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libxml2-tools

++ breeze-icons-5.37.0.tar.xz -> breeze-icons-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.37.0/CMakeLists.txt 
new/breeze-icons-5.38.0/CMakeLists.txt
--- old/breeze-icons-5.37.0/CMakeLists.txt  2017-08-06 18:25:08.0 
+0200
+++ new/breeze-icons-5.38.0/CMakeLists.txt  2017-09-02 10:47:30.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.37.0/icons/index.theme 
new/breeze-icons-5.38.0/icons/index.theme
--- old/breeze-icons-5.37.0/icons/index.theme   2017-08-06 18:25:08.0 
+0200
+++ new/breeze-icons-5.38.0/icons/index.theme   2017-09-02 10:47:30.0 
+0200
@@ -11,6 +11,7 @@
 Name[en_GB]=Breeze
 Name[es]=Brisa
 Name[et]=Breeze
+Name[eu]=Breeze
 Name[fi]=Breeze
 Name[fr]=Brise
 Name[gd]=Oiteag
@@ -48,6 +49,7 @@
 Comment[en_GB]=Default Plasma 5 Theme
 Comment[es]=Tema por omisión de Plasma 5
 Comment[et]=Vaikimisi Plasma 5 teema
+Comment[eu]=Plasma 5eko gai lehenetsia
 Comment[fi]=Plasma 5:n oletusteema
 Comment[fr]=Thème par défaut de Plasma 5
 Comment[gd]=Ùrlar Plasma 5 bunaiteach
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.37.0/icons-dark/index.theme 
new/breeze-icons-5.38.0/icons-dark/index.theme
--- old/breeze-icons-5.37.0/icons-dark/index.theme  2017-08-06 
18:25:08.0 +0200
+++ new/breeze-icons-5.38.0/icons-dark/index.theme  2017-09-02 
10:47:30.0 +0200
@@ -11,6 +11,7 @@
 Name[en_GB]=Breeze Dark
 Name[es]=Brisa oscura
 Name[et]=Breeze Dark
+Name[eu]=Breeze iluna
 Name[fi]=Breeze Dark
 Name[fr]=Brise Foncée
 Name[gd]=Oiteag dhorcha
@@ -48,6 +49,7 @@
 Comment[en_GB]=Default Plasma 5 Theme for Dark themes
 Comment[es]=Tema por omisión de Plasma 5 para temas oscuros
 Comment[et]=Vaikimisi Plasma 5 tume teema
+Comment[eu]=Plasma 5eko gai ilun lehenetsia
 Comment[fi]=Plasma 5:n oletusteema tummille teemoille
 Comment[fr]=Thème par défaut de Plasma 5 pour les thèmes foncés
 Comment[gd]=Ùrlar Plasma 5 bunaiteach airson ùrlaran dorcha




commit breeze5-icons for openSUSE:Factory

2017-08-24 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2017-08-24 17:53:01

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Thu Aug 24 17:53:01 2017 rev:22 rq:516651 version:5.37.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2017-07-17 10:21:19.622833656 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2017-08-24 17:53:02.694965603 +0200
@@ -1,0 +2,15 @@
+Sat Aug 12 09:23:14 UTC 2017 - christo...@krop.fr
+
+- Update to 5.37.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.37.0.php
+- Changes since 5.36.0 :
+  * flip errow center
+  * add osd icons
+  * update .h and .h++ colors BUG: 376680 (kde#376680)
+  * remove ktorrent small monochrome icon BUG: 381370 (kde#381370)
+  * bookmarks is an action icon not a folder icon BUG: 381383 (kde#381383)
+  * update utilities-system-monitor BUG: 381420 (kde#381420)
+
+---

Old:

  breeze-icons-5.36.0.tar.xz

New:

  breeze-icons-5.37.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.N5zKtC/_old  2017-08-24 17:53:03.518849559 +0200
+++ /var/tmp/diff_new_pack.N5zKtC/_new  2017-08-24 17:53:03.522848996 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.36
+%define _tar_path 5.37
 Name:   breeze5-icons
-Version:5.36.0
+Version:5.37.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.36.0.tar.xz -> breeze-icons-5.37.0.tar.xz ++
 2672 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2017-07-17 10:21:17

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Mon Jul 17 10:21:17 2017 rev:21 rq:509877 version:5.36.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2017-07-05 23:47:49.877878431 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2017-07-17 10:21:19.622833656 +0200
@@ -1,0 +2,11 @@
+Wed Jul 12 07:13:58 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.36.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.36.0.php
+- Changes since 5.35.0:
+  * Do not depend on bash uncessarily, and do not validate icons by default.
+  * add babe app icon
+
+---

Old:

  breeze-icons-5.35.0.tar.xz

New:

  breeze-icons-5.36.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.3p16Qk/_old  2017-07-17 10:21:20.210750779 +0200
+++ /var/tmp/diff_new_pack.3p16Qk/_new  2017-07-17 10:21:20.214750215 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.35
+%define _tar_path 5.36
 Name:   breeze5-icons
-Version:5.35.0
+Version:5.36.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.35.0.tar.xz -> breeze-icons-5.36.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.35.0/CMakeLists.txt 
new/breeze-icons-5.36.0/CMakeLists.txt
--- old/breeze-icons-5.35.0/CMakeLists.txt  2017-06-03 10:45:08.0 
+0200
+++ new/breeze-icons-5.36.0/CMakeLists.txt  2017-06-30 12:15:17.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.35.0") # handled by release scripts
+set(KF5_VERSION "5.36.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.35.0  NO_MODULE)
+find_package(ECM 5.36.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)
 
@@ -65,15 +65,16 @@
 endif()
 
 if(NOT WIN32)
-  find_program(BASH_EXE bash)
-  if (BASH_EXE)
-  file(GLOB_RECURSE SVGS "*.svg")
-  add_custom_target(breeze-validate-svg ALL
-  COMMAND ${BASH_EXE} ${CMAKE_SOURCE_DIR}/validate_svg.sh
-  WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
-  SOURCES ${SVGS}
-  )
-  endif()
+find_program(SH_EXE sh)
+find_program(XMLLINT_EXE xmllint)
+if(SH_EXE AND XMLLINT_EXE)
+file(GLOB_RECURSE SVGS "*.svg")
+add_custom_target(breeze-validate-svg ALL
+COMMAND ${SH_EXE} ${CMAKE_SOURCE_DIR}/validate_svg.sh
+WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
+SOURCES ${SVGS}
+)
+endif()
 endif()
 
 add_subdirectory(autotests)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.35.0/icons/apps/48/babe.svg 
new/breeze-icons-5.36.0/icons/apps/48/babe.svg
--- old/breeze-icons-5.35.0/icons/apps/48/babe.svg  1970-01-01 
01:00:00.0 +0100
+++ new/breeze-icons-5.36.0/icons/apps/48/babe.svg  2017-06-30 
12:15:17.0 +0200
@@ -0,0 +1,94 @@
+
+http://purl.org/dc/elements/1.1/;
+   xmlns:cc="http://creativecommons.org/ns#;
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
+   xmlns:svg="http://www.w3.org/2000/svg;
+   xmlns="http://www.w3.org/2000/svg;
+   xmlns:xlink="http://www.w3.org/1999/xlink;
+   version="1.1"
+   id="svg2"
+   height="48"
+   width="48">
+  
+
+  
+image/svg+xml
+http://purl.org/dc/dcmitype/StillImage; />
+
+  
+
+  
+  
+
+  
+  
+
+
+
+
+  
+  
+
+  
+  
+  
+  
+  
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.35.0/icons-dark/apps/48/babe.svg 
new/breeze-icons-5.36.0/icons-dark/apps/48/babe.svg
--- old/breeze-icons-5.35.0/icons-dark/apps/48/babe.svg 1970-01-01 
01:00:00.0 +0100
+++ new/breeze-icons-5.36.0/icons-dark/apps/48/babe.svg 2017-06-30 
12:15:17.0 +0200
@@ -0,0 +1,94 @@
+
+http://purl.org/dc/elements/1.1/;
+   xmlns:cc="http://creativecommons.org/ns#;
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
+   

commit breeze5-icons for openSUSE:Factory

2017-07-05 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2017-07-05 23:47:48

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Wed Jul  5 23:47:48 2017 rev:20 rq:502917 version:5.35.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2017-06-01 16:17:12.982413806 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2017-07-05 23:47:49.877878431 +0200
@@ -1,0 +2,11 @@
+Sun Jun 11 09:27:42 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.35.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.35.0.php
+- Changes since 5.34.0:
+  * update awk mime as it's a script language BUG:376211 (kde#376211)
+  * CMakeLists.txt - Do not find bash on Windows
+
+---

Old:

  breeze-icons-5.34.0.tar.xz

New:

  breeze-icons-5.35.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.oVaCFA/_old  2017-07-05 23:47:50.873738167 +0200
+++ /var/tmp/diff_new_pack.oVaCFA/_new  2017-07-05 23:47:50.873738167 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.34
+%define _tar_path 5.35
 Name:   breeze5-icons
-Version:5.34.0
+Version:5.35.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.34.0.tar.xz -> breeze-icons-5.35.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.34.0/CMakeLists.txt 
new/breeze-icons-5.35.0/CMakeLists.txt
--- old/breeze-icons-5.34.0/CMakeLists.txt  2017-05-06 10:19:55.0 
+0200
+++ new/breeze-icons-5.35.0/CMakeLists.txt  2017-06-03 10:45:08.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.34.0") # handled by release scripts
+set(KF5_VERSION "5.35.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.34.0  NO_MODULE)
+find_package(ECM 5.35.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)
 
@@ -64,14 +64,16 @@
 endfunction()
 endif()
 
-find_program(BASH_EXE bash)
-if (BASH_EXE)
-file(GLOB_RECURSE SVGS "*.svg")
-add_custom_target(breeze-validate-svg ALL
-COMMAND ${BASH_EXE} ${CMAKE_SOURCE_DIR}/validate_svg.sh
-WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
-SOURCES ${SVGS}
-)
+if(NOT WIN32)
+  find_program(BASH_EXE bash)
+  if (BASH_EXE)
+  file(GLOB_RECURSE SVGS "*.svg")
+  add_custom_target(breeze-validate-svg ALL
+  COMMAND ${BASH_EXE} ${CMAKE_SOURCE_DIR}/validate_svg.sh
+  WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
+  SOURCES ${SVGS}
+  )
+  endif()
 endif()
 
 add_subdirectory(autotests)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.34.0/icons/mimetypes/16/application-x-awk.svg 
new/breeze-icons-5.35.0/icons/mimetypes/16/application-x-awk.svg
--- old/breeze-icons-5.34.0/icons/mimetypes/16/application-x-awk.svg
2017-07-05 23:48:29.668274048 +0200
+++ new/breeze-icons-5.35.0/icons/mimetypes/16/application-x-awk.svg
2017-07-05 23:49:13.510098968 +0200
@@ -1 +1 @@
-symbolic link to text-x-generic.svg
+symbolic link to text-x-script.svg
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.34.0/icons/mimetypes/16/text-x-generic.svapplication-x-awk.svg
 
new/breeze-icons-5.35.0/icons/mimetypes/16/text-x-generic.svapplication-x-awk.svg
--- 
old/breeze-icons-5.34.0/icons/mimetypes/16/text-x-generic.svapplication-x-awk.svg
   2017-07-05 23:48:29.952234052 +0200
+++ 
new/breeze-icons-5.35.0/icons/mimetypes/16/text-x-generic.svapplication-x-awk.svg
   2017-07-05 23:49:13.802057845 +0200
@@ -1 +1 @@
-symbolic link to text-x-generic.svg
+symbolic link to text-x-script.svg
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.34.0/icons/mimetypes/22/application-x-awk.svg 
new/breeze-icons-5.35.0/icons/mimetypes/22/application-x-awk.svg
--- old/breeze-icons-5.34.0/icons/mimetypes/22/application-x-awk.svg
2017-07-05 23:48:26.148769763 +0200
+++ new/breeze-icons-5.35.0/icons/mimetypes/22/application-x-awk.svg
2017-07-05 23:49:09.710634121 +0200

commit breeze5-icons for openSUSE:Factory

2017-06-01 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2017-06-01 16:17:10

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Thu Jun  1 16:17:10 2017 rev:19 rq:495014 version:5.34.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2017-04-30 21:15:24.588507260 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2017-06-01 16:17:12.982413806 +0200
@@ -1,0 +2,16 @@
+Mon May 15 13:53:18 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.34.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.34.0.php
+- Changes since 5.33.0:
+  * Add icons for hotspot (https://github.com/KDAB/hotspot)
+  * icons/status/16/microphone-sensitivity-medium.svg - fix validation remove 
undefined inkscape:connector-curvature CC: andreas kainz 
+  * BUG 377380 Better version control system icons BUG#377380
+  * BUG 376780 add plasmate icon BUG:376780 (kde#376780)
+  * BUG 377012 update microphone-sensitivity icons BUG:377012 (kde#377012)
+  * Raise default for 'Panel' icons to 48
+  * Kolourpaint Icon
+
+---

Old:

  breeze-icons-5.33.0.tar.xz

New:

  breeze-icons-5.34.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.pmjPLW/_old  2017-06-01 16:17:13.538335412 +0200
+++ /var/tmp/diff_new_pack.pmjPLW/_new  2017-06-01 16:17:13.542334847 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.33
+%define _tar_path 5.34
 Name:   breeze5-icons
-Version:5.33.0
+Version:5.34.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.33.0.tar.xz -> breeze-icons-5.34.0.tar.xz ++
  lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2017-04-30 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2017-04-30 21:15:23

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Sun Apr 30 21:15:23 2017 rev:18 rq:492035 version:5.33.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2017-03-28 15:07:32.498337367 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2017-04-30 21:15:24.588507260 +0200
@@ -1,0 +2,12 @@
+Sat Apr 15 10:11:42 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.33.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.33.0.php
+- Changes since 5.32.0:
+  * Upgrade ECM and KF5 version requirements for 5.33.0 release.
+  * Added MIME-type icon for Dockerfile as text-dockerfile
+  * Upgrade KF5 version to 5.33.0.
+
+---

Old:

  breeze-icons-5.32.0.tar.xz

New:

  breeze-icons-5.33.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.49KcBc/_old  2017-04-30 21:15:25.384395058 +0200
+++ /var/tmp/diff_new_pack.49KcBc/_new  2017-04-30 21:15:25.388394494 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.32
+%define _tar_path 5.33
 Name:   breeze5-icons
-Version:5.32.0
+Version:5.33.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.32.0.tar.xz -> breeze-icons-5.33.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.32.0/CMakeLists.txt 
new/breeze-icons-5.33.0/CMakeLists.txt
--- old/breeze-icons-5.32.0/CMakeLists.txt  2017-03-03 13:39:14.0 
+0100
+++ new/breeze-icons-5.33.0/CMakeLists.txt  2017-04-01 11:05:46.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.32.0") # handled by release scripts
+set(KF5_VERSION "5.33.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.32.0  NO_MODULE)
+find_package(ECM 5.33.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.32.0/icons/mimetypes/16/text-dockerfile.svg 
new/breeze-icons-5.33.0/icons/mimetypes/16/text-dockerfile.svg
--- old/breeze-icons-5.32.0/icons/mimetypes/16/text-dockerfile.svg  
1970-01-01 01:00:00.0 +0100
+++ new/breeze-icons-5.33.0/icons/mimetypes/16/text-dockerfile.svg  
2017-04-01 11:05:46.0 +0200
@@ -0,0 +1,65 @@
+
+http://purl.org/dc/elements/1.1/;
+   xmlns:cc="http://creativecommons.org/ns#;
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
+   xmlns:svg="http://www.w3.org/2000/svg;
+   xmlns="http://www.w3.org/2000/svg;
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd;
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape;
+   width="16"
+   height="16"
+   viewBox="0 0 16 16"
+   version="1.1"
+   id="svg12"
+   sodipodi:docname="text-dockerfile.svg"
+   inkscape:version="0.92.1 r">
+  
+
+  
+image/svg+xml
+http://purl.org/dc/dcmitype/StillImage; />
+
+  
+
+  
+  
+  
+
+  
+  
+  
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.32.0/icons/mimetypes/22/text-dockerfile.svg 
new/breeze-icons-5.33.0/icons/mimetypes/22/text-dockerfile.svg
--- old/breeze-icons-5.32.0/icons/mimetypes/22/text-dockerfile.svg  
1970-01-01 01:00:00.0 +0100
+++ new/breeze-icons-5.33.0/icons/mimetypes/22/text-dockerfile.svg  
2017-04-01 11:05:46.0 +0200
@@ -0,0 +1,112 @@
+
+
+
+http://purl.org/dc/elements/1.1/;
+   xmlns:cc="http://creativecommons.org/ns#;
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
+   xmlns:svg="http://www.w3.org/2000/svg;
+   xmlns="http://www.w3.org/2000/svg;
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd;
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape;
+   width="22"
+   height="22"
+   id="svg3869"
+   version="1.1"
+   inkscape:version="0.92.1 r"
+   sodipodi:docname="text-dockerfile.svg">
+  
+  
+
+
+
+
+
+
+
+
+
+  
+  
+
+  
+image/svg+xml
+

commit breeze5-icons for openSUSE:Factory

2017-03-28 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2017-03-28 15:07:29

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Tue Mar 28 15:07:29 2017 rev:17 rq:481483 version:5.32.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2017-03-03 17:46:42.494702390 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2017-03-28 15:07:32.498337367 +0200
@@ -1,0 +2,25 @@
+Sun Mar 19 14:50:13 CET 2017 - lbeltr...@kde.org
+
+- Update to 5.32.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.32.0.php
+- Changes since 5.31.0:
+  * Upgrade ECM and KF5 version requirements for 5.32.0 release.
+  * Added missing Plasma Vault icon
+  * add a preview for the disk quota plasmoid
+  * Added icons for Plasma Vault
+  * Renamed the folder-*crypt icons in breeze-dark to follow breeze
+  * Renamed icons for encrypted and decripted folders
+  * Added arc config file
+  * Rewrite tests to not use tier3 frameworks
+  * add im-youtube icon for babe music player
+  * update blender icons
+  * Upgrade KF5 version to 5.32.0.
+  * Add torrents icon 22px
+  * add nm-tray icons BUG: 374672
+  * color-management removed undefined links hopefully BUG: 374843
+  * system-run is now an action until <= 32px and 48px an app icon BUG: 375970
+  * Make tier3 dependency for tests optional
+
+---

Old:

  breeze-icons-5.31.0.tar.xz

New:

  breeze-icons-5.32.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.hxCqVg/_old  2017-03-28 15:07:33.254230273 +0200
+++ /var/tmp/diff_new_pack.hxCqVg/_new  2017-03-28 15:07:33.258229706 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.31
+%define _tar_path 5.32
 Name:   breeze5-icons
-Version:5.31.0
+Version:5.32.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.31.0.tar.xz -> breeze-icons-5.32.0.tar.xz ++
 10066 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2017-03-03 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2017-03-03 17:46:40

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Fri Mar  3 17:46:40 2017 rev:16 rq:461388 version:5.31.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2017-02-03 17:32:21.282104222 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2017-03-03 17:46:42.494702390 +0100
@@ -1,0 +2,7 @@
+Thu Feb  9 09:21:30 UTC 2017 - hrvoje.sen...@gmail.com
+
+- Update to 5.31.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.31.0.php
+
+---

Old:

  breeze-icons-5.30.0.tar.xz

New:

  breeze-icons-5.31.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.pYZ1LH/_old  2017-03-03 17:46:43.286590478 +0100
+++ /var/tmp/diff_new_pack.pYZ1LH/_new  2017-03-03 17:46:43.286590478 +0100
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.30
+%define _tar_path 5.31
 Name:   breeze5-icons
-Version:5.30.0
+Version:5.31.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0
@@ -32,8 +32,8 @@
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libxml2-tools
-BuildRequires:  cmake(Qt5Core) >= 5.5.0
-BuildRequires:  cmake(Qt5Test) >= 5.5.0
+BuildRequires:  cmake(Qt5Core) >= 5.6.0
+BuildRequires:  cmake(Qt5Test) >= 5.6.0
 Requires:   oxygen5-icon-theme
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ breeze-icons-5.30.0.tar.xz -> breeze-icons-5.31.0.tar.xz ++
 109682 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2017-02-03 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2017-01-31 11:53:58

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2016-12-17 11:03:23.607028164 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2017-02-03 17:32:21.282104222 +0100
@@ -1,0 +2,7 @@
+Sun Jan  8 23:37:17 UTC 2017 - hrvoje.sen...@gmail.com
+
+- Update to 5.30.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.30.0.php
+
+---

Old:

  breeze-icons-5.29.0.tar.xz

New:

  breeze-icons-5.30.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.z5MlrS/_old  2017-02-03 17:32:21.754037427 +0100
+++ /var/tmp/diff_new_pack.z5MlrS/_new  2017-02-03 17:32:21.754037427 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package breeze5-icons
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.29
+%define _tar_path 5.30
 Name:   breeze5-icons
-Version:5.29.0
+Version:5.30.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0
@@ -27,7 +27,7 @@
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/breeze-icons-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE oxygen.diff -- inherit from oxygen
 Patch0: oxygen.diff
-BuildRequires:  cmake >= 2.8.12
+BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme

++ breeze-icons-5.29.0.tar.xz -> breeze-icons-5.30.0.tar.xz ++
 32767 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2016-11-17 Thread h_root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2016-11-17 12:26:08

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2016-10-28 12:15:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2016-11-17 12:26:09.0 +0100
@@ -1,0 +2,10 @@
+Sat Nov  5 20:05:42 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.28.0
+  * Update kstars action icons (kde#364981)
+  * Breeze Dark is listed as Breeze in System Settings wrong
+.themes file (kde#370213)
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.28.0.php
+
+---

Old:

  breeze-icons-5.27.0.tar.xz

New:

  breeze-icons-5.28.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.cZ1HR6/_old  2016-11-17 12:26:10.0 +0100
+++ /var/tmp/diff_new_pack.cZ1HR6/_new  2016-11-17 12:26:10.0 +0100
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.27
+%define _tar_path 5.28
 Name:   breeze5-icons
-Version:5.27.0
+Version:5.28.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.27.0.tar.xz -> breeze-icons-5.28.0.tar.xz ++
 3588 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2016-10-28 Thread h_root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2016-10-28 12:15:31

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2016-09-14 23:06:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2016-10-28 12:15:33.0 +0200
@@ -1,0 +2,16 @@
+Sun Oct  2 12:48:40 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.27.0
+  * New mimetypes icons
+  * Update some kstars icons (kde#364981)
+  * Wrong style actions/24/format-border-set (kde#368980)
+  * Add wayland app icon
+  * Add xorg app icon (kde#368813)
+  * Revert distribute-randomize, view-calendar + reapply
+the transform fix (kde#367082)
+  * Change folder-documents from one file to the multiple file
+cause in a folder more than one file is included (kde#368224)
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.27.0.php
+
+---

Old:

  breeze-icons-5.26.0.tar.xz

New:

  breeze-icons-5.27.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.fZOJHl/_old  2016-10-28 12:15:34.0 +0200
+++ /var/tmp/diff_new_pack.fZOJHl/_new  2016-10-28 12:15:34.0 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.26
+%define _tar_path 5.27
 Name:   breeze5-icons
-Version:5.26.0
+Version:5.27.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.26.0.tar.xz -> breeze-icons-5.27.0.tar.xz ++
 139836 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2016-09-14 23:06:34

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2016-08-29 14:54:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2016-09-14 23:06:36.0 +0200
@@ -1,0 +2,30 @@
+Tue Sep  6 20:46:01 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * Add missing namespace prefix definitions
+  * Check SVG icons for wellformedness
+  * Fix all edit-clear-location-ltr icons (kde#366519)
+  * Add kwin effect icon support
+  * Rename caps-on in input-caps-on
+  * Add caps icons for text input
+  * Add some gnome specific icons from Sadi58
+  * Add app icons from gnastyle
+  * Dolphin, Konsole and Umbrello icons optimized for 16px, 22px, 32px
+  * Updated VLC icon for 22px, 32px and 48px
+  * Added app icon for Subtitle Composer
+  * Fix Kleopatra new icon
+  * Added app icon for Kleopatra
+  * Added icons for Wine and Wine-qt
+  * Dix presentation word bug thanks Sadi58 (kde#358495)
+  * Add system-log-out icon in 32px
+  * Add 32px system- icons, remove colored system- icons
+  * Add pidgin, banshee icon support
+  * Remove vlc app icon due to license issue, add new VLC icon
+(kde#366490)
+  * Add gthumb icon support
+  * Use HighlightedText for folder icons
+  * Places folder icons are now use stylesheet (highlight color)
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  breeze-icons-5.25.0.tar.xz

New:

  breeze-icons-5.26.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.qZzcqW/_old  2016-09-14 23:06:38.0 +0200
+++ /var/tmp/diff_new_pack.qZzcqW/_new  2016-09-14 23:06:38.0 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   breeze5-icons
-Version:5.25.0
+Version:5.26.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0
@@ -31,6 +31,7 @@
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
+BuildRequires:  libxml2-tools
 BuildRequires:  cmake(Qt5Core) >= 5.5.0
 BuildRequires:  cmake(Qt5Test) >= 5.5.0
 Requires:   oxygen5-icon-theme

++ breeze-icons-5.25.0.tar.xz -> breeze-icons-5.26.0.tar.xz ++
 89942 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2016-08-29 Thread h_root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2016-08-29 14:54:41

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2016-07-15 12:30:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2016-08-29 14:54:42.0 +0200
@@ -1,0 +2,26 @@
+Sun Aug  7 21:49:38 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.25.0
+  * Qt >= 5.5 is now required
+  * Update mail- 16px icons to recognize the icons better
+  * Update mic and audio status icons to have the same layout and size
+  * New System Settings app icon
+  * Add symbolic status gnome icons
+  * Add gnome 3 symbolic icon support
+  * Added icons for Diaspora and Vector, see phabricator.kde.org/M59
+  * New icons for Dolphin and Gwenview
+  * Weather icons are status icons no app icons
+  * Add some links to xliff thanks gnastyle
+  * Add kig icon
+  * Add mimetype icons, krdc icon, other app icons from gnastyle
+  * Add certificate mimetype icon (kde#365094)
+  * Update gimp icons thanks gnastyle (kde#354370)
+  * Globe action icon is now no linked file please use it in digikam
+  * Update labplot icons according to mail 13.07. from Alexander Semke
+  * Add app icons from gnastyle
+  * Add kruler icon from Yuri Fabirovsky
+  * Fix broken svg files thanks fuchs (kde#365035)
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.25.0.php
+
+---

Old:

  breeze-icons-5.24.0.tar.xz

New:

  breeze-icons-5.25.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.VNeSHX/_old  2016-08-29 14:54:43.0 +0200
+++ /var/tmp/diff_new_pack.VNeSHX/_new  2016-08-29 14:54:43.0 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.24
+%define _tar_path 5.25
 Name:   breeze5-icons
-Version:5.24.0
+Version:5.25.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0
@@ -31,8 +31,8 @@
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
-BuildRequires:  cmake(Qt5Core) >= 5.4.0
-BuildRequires:  cmake(Qt5Test) >= 5.4.0
+BuildRequires:  cmake(Qt5Core) >= 5.5.0
+BuildRequires:  cmake(Qt5Test) >= 5.5.0
 Requires:   oxygen5-icon-theme
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -45,7 +45,7 @@
 %patch0 -p1
 
 %build
-  %cmake_kf5 -d build
+  %cmake_kf5 -d build -- -DBINARY_ICONS_RESOURCE=ON
   %make_jobs
 
 %install

++ breeze-icons-5.24.0.tar.xz -> breeze-icons-5.25.0.tar.xz ++
 53183 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2016-07-15 Thread h_root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2016-07-15 12:30:27

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2016-07-03 12:19:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2016-07-15 12:30:30.0 +0200
@@ -1,0 +2,11 @@
+Wed Jul  6 15:01:28 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.24.0
+  * Many new or improved icons
+  * fix kde#364931 user-idle icon was not visible
+  * Add a program to convert symbolically linked files
+to qrc aliases
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.24.0.php
+
+---

Old:

  breeze-icons-5.23.0.tar.xz

New:

  breeze-icons-5.24.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.dcBKYi/_old  2016-07-15 12:30:32.0 +0200
+++ /var/tmp/diff_new_pack.dcBKYi/_new  2016-07-15 12:30:32.0 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.23
+%define _tar_path 5.24
 Name:   breeze5-icons
-Version:5.23.0
+Version:5.24.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.23.0.tar.xz -> breeze-icons-5.24.0.tar.xz ++
 11596 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2016-07-03 Thread h_root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2016-07-03 12:19:14

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2016-05-19 12:05:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2016-07-03 12:19:15.0 +0200
@@ -1,0 +2,24 @@
+Mon Jun  6 21:22:44 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.23.0
+  * Add a CMake option to build binary Qt resource out of icons dir
+  * Many new and updated icons
+  * update disconnect network icon for bigger diference to conntected
+(kde#353369)
+  * Update mount and unmount icon (kde#358925)
+  * Add some avatars from plasma-desktop/kcms/useraccount/pics/sources
+  * Remove chromium icon cause the default chromium icon fit's well
+(kde#363595)
+  * Make the konsole icons lighter (kde#355697)
+  * Add mail icons for thunderbird (kde#357334)
+  * Add public key icon (kde#361366)
+  * Remove process-working-kde cause the konqueror icons should be used
+(kde#360304)
+  * Update krusader icons according to (kde#359863)
+  * Rename the mic icons according D1291 (kde#D1291)
+  * Add some script mimetype icons (kde#363040)
+  * Add virtual keyboard and touchpad on/off functionality for OSD
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.23.0.php
+
+---

Old:

  breeze-icons-5.22.0.tar.xz

New:

  breeze-icons-5.23.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.roi97C/_old  2016-07-03 12:19:16.0 +0200
+++ /var/tmp/diff_new_pack.roi97C/_new  2016-07-03 12:19:16.0 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.22
+%define _tar_path 5.23
 Name:   breeze5-icons
-Version:5.22.0
+Version:5.23.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.22.0.tar.xz -> breeze-icons-5.23.0.tar.xz ++
 59385 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2016-05-19 Thread h_root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2016-05-19 12:05:12

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2016-04-12 19:09:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2016-05-19 12:05:13.0 +0200
@@ -1,0 +2,9 @@
+Sat May  7 18:29:37 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.22.0 (boo#980066)
+  * Many new action and application icons.
+  * Specify offered extensions as per change in kiconthemes
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.22.0.php
+
+---

Old:

  breeze-icons-5.21.0.tar.xz

New:

  breeze-icons-5.22.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.QqihLc/_old  2016-05-19 12:05:14.0 +0200
+++ /var/tmp/diff_new_pack.QqihLc/_new  2016-05-19 12:05:14.0 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.21
+%define _tar_path 5.22
 Name:   breeze5-icons
-Version:5.21.0
+Version:5.22.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.21.0.tar.xz -> breeze-icons-5.22.0.tar.xz ++
 880174 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2016-04-12 Thread h_root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2016-04-12 19:09:10

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2016-03-16 10:27:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2016-04-12 19:09:11.0 +0200
@@ -1,0 +2,32 @@
+Mon Apr  4 14:18:23 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.21.0 (boo#974793)
+  * Add breeze lokalize icons
+  * Sync app icons between breeze and breeze dark
+  * Update theme icons and remove application-system icon fix
+kicker groups
+  * Add xpi support for firefox addons (kde#359913)
+  * Update okular icon with the right one
+  * Add ktnef app icon support
+  * Add kmenueditor, kmouse and knotes icon
+  * Change audio volume muted icon to use - for mute instead of
+only red color (kde#360953)
+  * Add djvu mimetype support (kde#360136)
+  * Add link instead of double entry
+  * Add ms-shortcut icon for gnucash (kde#360776)
+  * Change wallpaper background to generic one
+  * Update icons to use an generic wallpaper
+  * Add the icon for konqueror (kde#360304)
+  * Add process-working icon for progress animation in KDE
+(kde#360304)
+  * Add software install icon and update update icon
+with the right color
+  * Add add and remove emblem icons for dolphin select,
+add mount icon
+  * Remove stylesheet from analogclock and kickerdash applet icons
+  * Sync breeze and breeze dark (kde#360294)
+  * Upgrade Qt version requirement to 5.4.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.21.0.php
+
+---

Old:

  breeze-icons-5.20.0.tar.xz

New:

  breeze-icons-5.21.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.UswhZp/_old  2016-04-12 19:09:12.0 +0200
+++ /var/tmp/diff_new_pack.UswhZp/_new  2016-04-12 19:09:12.0 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.20
+%define _tar_path 5.21
 Name:   breeze5-icons
-Version:5.20.0
+Version:5.21.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0
@@ -31,8 +31,8 @@
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
-BuildRequires:  cmake(Qt5Core) >= 5.3.0
-BuildRequires:  cmake(Qt5Test) >= 5.3.0
+BuildRequires:  cmake(Qt5Core) >= 5.4.0
+BuildRequires:  cmake(Qt5Test) >= 5.4.0
 Requires:   oxygen5-icon-theme
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ breeze-icons-5.20.0.tar.xz -> breeze-icons-5.21.0.tar.xz ++
 728648 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2016-03-16 Thread h_root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2016-03-16 10:27:18

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2016-02-24 18:52:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2016-03-16 10:27:19.0 +0100
@@ -1,0 +2,13 @@
+Sun Mar  6 09:53:37 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.20.0 (boo#970856)
+  * Many new icons
+  * Add virtualbox mimetype icons and some other missing mimetypes
+  * Add synaptic and octopi icon support
+  * Fix cut icon (kde#354061)
+  * Fix name of audio-headphones.svg (+=d)
+  * Rating icons with smaller margin (1px)
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.20.0.php
+
+---

Old:

  breeze-icons-5.19.0.tar.xz

New:

  breeze-icons-5.20.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.B8tY1n/_old  2016-03-16 10:27:20.0 +0100
+++ /var/tmp/diff_new_pack.B8tY1n/_new  2016-03-16 10:27:20.0 +0100
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.19
+%define _tar_path 5.20
 Name:   breeze5-icons
-Version:5.19.0
+Version:5.20.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.19.0.tar.xz -> breeze-icons-5.20.0.tar.xz ++
 34485 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2016-02-24 Thread h_root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2016-02-24 18:52:51

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2016-01-20 09:40:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2016-02-24 18:52:52.0 +0100
@@ -1,0 +2,9 @@
+Sat Feb  6 17:58:06 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.19.0 (boo#967668)
+  * Many new icons
+  * Add missing mimetype icons from oxygen icon set
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.19.0.php
+
+---

Old:

  breeze-icons-5.18.0.tar.xz

New:

  breeze-icons-5.19.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.4UGFe9/_old  2016-02-24 18:52:53.0 +0100
+++ /var/tmp/diff_new_pack.4UGFe9/_new  2016-02-24 18:52:53.0 +0100
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.18
+%define _tar_path 5.19
 Name:   breeze5-icons
-Version:5.18.0
+Version:5.19.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.18.0.tar.xz -> breeze-icons-5.19.0.tar.xz ++
 165743 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2016-01-20 Thread h_root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2016-01-20 09:40:17

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2015-12-29 12:50:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2016-01-20 09:40:19.0 +0100
@@ -1,0 +2,10 @@
+Sat Jan  2 17:41:29 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.18.0
+  * Icon updates and additions
+  * 22px size status icons for 32px too as you need it in the system tray
+  * Changed Fixed to Scalable value to 32px folders in Breeze Dark
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.18.0.php
+
+---

Old:

  breeze-icons-5.17.0.tar.xz

New:

  breeze-icons-5.18.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.uaWzk4/_old  2016-01-20 09:40:20.0 +0100
+++ /var/tmp/diff_new_pack.uaWzk4/_new  2016-01-20 09:40:20.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package breeze5-icons
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.17
+%define _tar_path 5.18
 Name:   breeze5-icons
-Version:5.17.0
+Version:5.18.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0

++ breeze-icons-5.17.0.tar.xz -> breeze-icons-5.18.0.tar.xz ++
 45834 lines of diff (skipped)




commit breeze5-icons for openSUSE:Factory

2015-12-29 Thread h_root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2015-12-29 12:50:19

Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and  /work/SRC/openSUSE:Factory/.breeze5-icons.new (New)


Package is "breeze5-icons"

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2015-11-24 22:28:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2015-12-29 12:50:20.0 +0100
@@ -1,0 +2,12 @@
+Thu Dec 10 23:01:52 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.17.0
+  * Many icons added or improved
+  * Use stylesheets in breeze icons (kde#126166)
+  * Fix and changed system-lock-screen (kde#355902)
+  * Add 24px dialog-information for GTK apps (kde#355204)
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.17.0.php
+- Drop upstreamed applets.patch
+
+---

Old:

  applets.patch
  breeze-icons-5.16.0.tar.xz

New:

  breeze-icons-5.17.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.zLk60n/_old  2015-12-29 12:50:21.0 +0100
+++ /var/tmp/diff_new_pack.zLk60n/_new  2015-12-29 12:50:21.0 +0100
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.16
+%define _tar_path 5.17
 Name:   breeze5-icons
-Version:5.16.0
+Version:5.17.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0
@@ -27,12 +27,12 @@
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/breeze-icons-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE oxygen.diff -- inherit from oxygen
 Patch0: oxygen.diff
-# PATCH-FIX-UPSTREAM applets.patch -- install applet icons
-Patch1: applets.patch
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
-BuildRequires:  hicolor-icon-theme
 BuildRequires:  fdupes
+BuildRequires:  hicolor-icon-theme
+BuildRequires:  cmake(Qt5Core) >= 5.3.0
+BuildRequires:  cmake(Qt5Test) >= 5.3.0
 Requires:   oxygen5-icon-theme
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -43,7 +43,6 @@
 %prep
 %setup -q -n breeze-icons-%{version}
 %patch0 -p1
-%patch1 -p1
 
 %build
   %cmake_kf5 -d build

++ breeze-icons-5.16.0.tar.xz -> breeze-icons-5.17.0.tar.xz ++
 757707 lines of diff (skipped)