Hello community,

here is the log from the commit of package lxqt-themes for openSUSE:Factory 
checked in at 2019-02-25 17:49:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/lxqt-themes (Old)
 and      /work/SRC/openSUSE:Factory/.lxqt-themes.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "lxqt-themes"

Mon Feb 25 17:49:43 2019 rev:3 rq:670397 version:0.14.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/lxqt-themes/lxqt-themes.changes  2018-06-29 
22:31:17.838260386 +0200
+++ /work/SRC/openSUSE:Factory/.lxqt-themes.new.28833/lxqt-themes.changes       
2019-02-25 17:49:48.730797730 +0100
@@ -1,0 +2,7 @@
+Thu Jan 31 10:32:36 UTC 2019 - Michael Vetter <[email protected]>
+
+- Update to 0.14.0:
+  * Set cmake_minimum_required to 3.1.0
+  * Set informal version to 0.14.0
+
+-------------------------------------------------------------------

Old:
----
  lxqt-themes-0.13.0.tar.xz
  lxqt-themes-0.13.0.tar.xz.asc

New:
----
  lxqt-themes-0.14.0.tar.xz
  lxqt-themes-0.14.0.tar.xz.asc

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

Other differences:
------------------
++++++ lxqt-themes.spec ++++++
--- /var/tmp/diff_new_pack.eA606x/_old  2019-02-25 17:49:51.458796609 +0100
+++ /var/tmp/diff_new_pack.eA606x/_new  2019-02-25 17:49:51.462796608 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package lxqt-themes
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,12 +12,12 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:           lxqt-themes
-Version:        0.13.0
+Version:        0.14.0
 Release:        0
 Summary:        Themes, graphics and icons for LXQt
 License:        GPL-2.0-or-later AND LGPL-2.1-or-later
@@ -26,11 +26,11 @@
 Source:         
https://github.com/lxde/%{name}/releases/download/%{version}/%{name}-%{version}.tar.xz
 Source1:        
https://github.com/lxde/%{name}/releases/download/%{version}/%{name}-%{version}.tar.xz.asc
 Source2:        lxqt-themes.keyring
-BuildRequires:  cmake >= 3.0.2
+BuildRequires:  cmake >= 3.1.0
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  hicolor-icon-theme
-BuildRequires:  lxqt-build-tools-devel >= 0.5.0
+BuildRequires:  lxqt-build-tools-devel >= 0.6.0
 BuildArch:      noarch
 
 %description

++++++ lxqt-themes-0.13.0.tar.xz -> lxqt-themes-0.14.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-themes-0.13.0/CHANGELOG 
new/lxqt-themes-0.14.0/CHANGELOG
--- old/lxqt-themes-0.13.0/CHANGELOG    2018-05-21 19:30:17.000000000 +0200
+++ new/lxqt-themes-0.14.0/CHANGELOG    2019-01-24 22:45:41.000000000 +0100
@@ -1,14 +1,19 @@
+lxqt-themes-0.14.0 / 2019-01-25
+===============================
 
+  * Set cmake_minimum_required to 3.1.0
+  * Set informal version to 0.14.0
+  
 lxqt-themes-0.13.0 / 2018-05-21
 ===============================
 
-  * Set informa version to 0.13.0
+  * Set informal version to 0.13.0
   * CMake: Prevent in-source builds
   * fixed authors and bump the year (#8)
   * fixed lxde mention (#7)
 
-0.12.0 / 2017-10-10
-===================
+lxqt-themes-0.12.0 / 2017-10-10
+===============================
 
   * Release 0.12.0: Update changelog
   * Fixed CHANGELOG
@@ -23,8 +28,8 @@
   * liblxqt make no sense here
   * Copied issue template
 
-0.11.96 / 2017-07-07
-====================
+lxqt-themes-0.11.96 / 2017-07-07
+================================
 
   * Release 0.11.96: Update changelog
   * Remove some more session stuff from CMakeLists.txt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-themes-0.13.0/CMakeLists.txt 
new/lxqt-themes-0.14.0/CMakeLists.txt
--- old/lxqt-themes-0.13.0/CMakeLists.txt       2018-05-21 19:30:17.000000000 
+0200
+++ new/lxqt-themes-0.14.0/CMakeLists.txt       2019-01-24 22:45:41.000000000 
+0100
@@ -1,11 +1,16 @@
-cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
-
+cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR)
+# CMP0000: Call the cmake_minimum_required() command at the beginning of the 
top-level
+# CMakeLists.txt file even before calling the project() command.
+# The cmake_minimum_required(VERSION) command implicitly invokes the 
cmake_policy(VERSION)
+# command to specify that the current project code is written for the given 
range of CMake
+# versions.
 project(lxqt-themes)
 
-set(LXQTBT_MINIMUM_VERSION "0.5.0")
+# Minimum Versions
+set(LXQTBT_MINIMUM_VERSION "0.6.0")
 
 # lxqt-themes has no binaries - but we can set an informal version
-# Version 0.13.0
+# Version 0.14.0
 
 find_package(lxqt-build-tools ${LXQTBT_MINIMUM_VERSION} REQUIRED)
 



Reply via email to