Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2016-08-29 14:33:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdelibs4 (Old)
 and      /work/SRC/openSUSE:Factory/.kdelibs4.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kdelibs4"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes        
2016-07-21 07:42:10.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2016-08-29 14:33:47.000000000 +0200
@@ -1,0 +2,12 @@
+Sat Aug 14 18:26:16 UTC 2016 - [email protected]
+
+- Update to 4.14.23
+   * KDE Applications 16.08.0
+   * https://www.kde.org/announcements/announce-applications-16.08.0.php
+
+-------------------------------------------------------------------
+Tue Aug  9 09:26:23 UTC 2016 - [email protected]
+
+- get rid of opensuse_bs macro
+
+-------------------------------------------------------------------
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes        2016-06-20 
11:06:06.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2016-08-29 
14:33:50.000000000 +0200
@@ -1,0 +2,15 @@
+Sat Aug 14 18:26:16 UTC 2016 - [email protected]
+
+- Update to 4.14.23
+   * KDE Applications 16.08.0
+   * https://www.kde.org/announcements/announce-applications-16.08.0.php
+
+- Add upstream patch KDE_HAVE_GCC_VISIBILITY-fix.patch to fix the
+  value so that GCC6 is taken into account
+
+-------------------------------------------------------------------
+Tue Aug  9 09:26:23 UTC 2016 - [email protected]
+
+- get rid of opensuse_bs macro
+
+-------------------------------------------------------------------

Old:
----
  kdelibs-4.14.22.tar.xz

New:
----
  KDE_HAVE_GCC_VISIBILITY-fix.patch
  kdelibs-4.14.23.tar.xz

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

Other differences:
------------------
++++++ kdelibs4-apidocs.spec ++++++
--- /var/tmp/diff_new_pack.pPVimw/_old  2016-08-29 14:33:52.000000000 +0200
+++ /var/tmp/diff_new_pack.pPVimw/_new  2016-08-29 14:33:52.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           kdelibs4-apidocs
-Version:        4.14.22
+Version:        4.14.23
 Release:        0
 Summary:        KDE 4 API documentation
 License:        LGPL-2.1+
@@ -40,6 +40,8 @@
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildArch:      noarch
 
+%define debug_package_requires %{name} = %{version}-%{release} libqt4-debuginfo
+
 %description
 This package includes the KDE 4 API documentation in HTML
 format for easy browsing.

++++++ kdelibs4.spec ++++++
--- /var/tmp/diff_new_pack.pPVimw/_old  2016-08-29 14:33:52.000000000 +0200
+++ /var/tmp/diff_new_pack.pPVimw/_new  2016-08-29 14:33:52.000000000 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:           kdelibs4
-Version:        4.14.22
+Version:        4.14.23
 Release:        0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -90,6 +90,8 @@
 Patch16:        omit-strigi.patch
 # PATCH-FIX-OPENSUSE gcc6-fix-errors.patch -- Fix errors spotted by GCC6.
 Patch17:        gcc6-fix-errors.patch
+# PATCH-FIX-UPSTREAM KDE_HAVE_GCC_VISIBILITY-fix.patch -- fix wrong value on 
systems with GCC6
+Patch18:        KDE_HAVE_GCC_VISIBILITY-fix.patch
 PreReq:         permissions
 Requires:       libattica0_4 >= %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
 Recommends:     media-player-info
@@ -104,10 +106,6 @@
 %requires_ge        shared-mime-info
 %requires_ge        libqt4-x11
 
-%if 0%{?opensuse_bs}
-%define debug_package_requires %{name} = %{version}-%{release} libqt4-debuginfo
-%endif
-
 Requires:       %{name}-branding = %{_kde_branding_version}
 
 %description
@@ -151,6 +149,7 @@
 %patch15 -p1
 %patch16 -p1
 %patch17
+%patch18 -p1
 
 %build
   EXTRA_FLAGS="-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++++++ KDE_HAVE_GCC_VISIBILITY-fix.patch ++++++
From: David Faure <[email protected]>
Date: Tue, 16 Aug 2016 13:50:57 +0000
Subject: Fix wrong value of __KDE_HAVE_GCC_VISIBILITY on systems with gcc 6.
X-Git-Url: 
http://quickgit.kde.org/?p=kdelibs.git&a=commitdiff&h=e9b25c7c040d8526fe8675b97d1067c8ffa7249f
---
Fix wrong value of __KDE_HAVE_GCC_VISIBILITY on systems with gcc 6.

Clearly the author of this regexp, in 2006, thought gcc would never
hit version 6 :-)

REVIEW: 128697
---


--- a/cmake/modules/FindKDE4Internal.cmake
+++ b/cmake/modules/FindKDE4Internal.cmake
@@ -1221,7 +1221,7 @@
    # get the gcc version
    exec_program(${CMAKE_C_COMPILER} ARGS ${CMAKE_C_COMPILER_ARG1} --version 
OUTPUT_VARIABLE _gcc_version_info)
 
-   string (REGEX MATCH "[345]\\.[0-9]\\.[0-9]" _gcc_version 
"${_gcc_version_info}")
+   string (REGEX MATCH "[3-9]\\.[0-9]\\.[0-9]" _gcc_version 
"${_gcc_version_info}")
    # gcc on mac just reports: "gcc (GCC) 3.3 20030304 ..." without the patch 
level, handle this here:
    if (NOT _gcc_version)
       string (REGEX MATCH ".*\\(GCC\\).* ([34]\\.[0-9]) .*" "\\1.0" 
_gcc_version "${gcc_on_macos}")

++++++ kdelibs-4.14.22.tar.xz -> kdelibs-4.14.23.tar.xz ++++++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.22.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.23.tar.xz differ: char 
27, line 1



Reply via email to