Hello community, here is the log from the commit of package kdepim3 for openSUSE:Factory checked in at 2015-09-08 17:45:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdepim3 (Old) and /work/SRC/openSUSE:Factory/.kdepim3.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdepim3" Changes: -------- --- /work/SRC/openSUSE:Factory/kdepim3/kdepim3.changes 2015-07-14 17:44:25.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.kdepim3.new/kdepim3.changes 2015-09-08 18:10:05.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: ------------------ ++++++ kdepim3.spec ++++++ --- /var/tmp/diff_new_pack.Segt8m/_old 2015-09-08 18:10:47.000000000 +0200 +++ /var/tmp/diff_new_pack.Segt8m/_new 2015-09-08 18:10:47.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package kdepim3 # -# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 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 @@ -84,6 +84,7 @@ Patch144: kdepim3-gentoo-fix-imap4.patch Patch145: kdepim-trinity-fix-memory-leak.diff Patch146: trinity-fix-kmail-crash-when-started-offline.patch +Patch147: fix-perl-no-defined-array.diff Provides: cryptplug Obsoletes: cryptplug @@ -291,6 +292,7 @@ %patch144 -p1 %patch145 -p1 %patch146 -p1 +%patch147 -p1 . /etc/opt/kde3/common_options update_admin ++++++ fix-perl-no-defined-array.diff ++++++ defined(@array) is deprecated and is an error newer perl Index: kdepim-3.5.10/dcopidlng/kdocAstUtil.pm =================================================================== --- kdepim-3.5.10.orig/dcopidlng/kdocAstUtil.pm +++ kdepim-3.5.10/dcopidlng/kdocAstUtil.pm @@ -647,7 +647,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" }} ) {
