Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2015-09-08 17:45:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdelibs3 (Old)
 and      /work/SRC/openSUSE:Factory/.kdelibs3.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kdelibs3"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes        2015-06-06 
09:54:22.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2015-09-08 
18:09:19.000000000 +0200
@@ -1,0 +2,6 @@
+Mon Sep  7 00:00:00 CEST 2015 - [email protected]
+
+- fix build on factory
+  * Added: fix-perl-no-defined-array.diff
+
+-------------------------------------------------------------------

New:
----
  fix-perl-no-defined-array.diff

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

Other differences:
------------------
++++++ kdelibs3.spec ++++++
--- /var/tmp/diff_new_pack.wzi77F/_old  2015-09-08 18:10:04.000000000 +0200
+++ /var/tmp/diff_new_pack.wzi77F/_new  2015-09-08 18:10:04.000000000 +0200
@@ -208,6 +208,7 @@
 Patch231:       kdelibs-3.5.10-cups16.patch
 Patch232:       kdelibs-3.5.10-cups20.patch
 Patch233:       kdelibs-3.5.10-CVE-2013-2074.patch
+Patch234:       fix-perl-no-defined-array.diff
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -416,6 +417,7 @@
 %patch230 -p1
 %patch231 -p1
 %patch232 -p1
+%patch234 -p1
 
 # disable a debug feature
 sed -i 's|#define KICONLOADER_CHECKS||g' kdecore/kiconloader.cpp


++++++ fix-perl-no-defined-array.diff ++++++
defined(@array) is deprecated and is an error newer perl


Index: kdelibs-3.5.10/dcop/dcopidlng/kdocAstUtil.pm
===================================================================
--- kdelibs-3.5.10.orig/dcop/dcopidlng/kdocAstUtil.pm
+++ kdelibs-3.5.10/dcop/dcopidlng/kdocAstUtil.pm
@@ -438,7 +438,7 @@ sub dumpAst
                dumpAst( $kid );
        }
 
-       print "\t" x $depth, "Documentation nodes:\n" if defined 
+       print "\t" x $depth, "Documentation nodes:\n" if
                @{ $node->{Doc}->{ "Text" }};
 
        foreach $kid ( @{ $node->{Doc}->{ "Text" }} ) {

Reply via email to