Hello community,

here is the log from the commit of package kdesdk4-scripts for openSUSE:Factory 
checked in at 2015-10-03 20:20:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdesdk4-scripts (Old)
 and      /work/SRC/openSUSE:Factory/.kdesdk4-scripts.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kdesdk4-scripts"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kdesdk4-scripts/kdesdk4-scripts.changes  
2015-07-14 17:33:58.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kdesdk4-scripts.new/kdesdk4-scripts.changes     
2015-10-03 20:20:25.000000000 +0200
@@ -1,0 +2,23 @@
+Sun Sep 13 19:12:53 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.08.1
+   * KDE Applications 15.08.1 
+   * https://www.kde.org/announcements/announce-applications-15.08.1.php
+
+
+-------------------------------------------------------------------
+Wed Aug 19 19:43:08 UTC 2015 - cgiboude...@gmx.com
+
+- Update to KDE Applications 15.08.0
+   * KDE Applications 15.08.0
+   * https://www.kde.org/announcements/announce-applications-15.08.0.php
+
+-------------------------------------------------------------------
+Fri Aug  7 06:53:24 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.07.90
+   * KDE Applications 15.08.0 RC1
+   * https://www.kde.org/announcements/announce-applications-15.07.90.php
+
+
+-------------------------------------------------------------------

Old:
----
  kde-dev-scripts-15.04.3.tar.xz

New:
----
  kde-dev-scripts-15.08.1.tar.xz

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

Other differences:
------------------
++++++ kdesdk4-scripts.spec ++++++
--- /var/tmp/diff_new_pack.aaMi21/_old  2015-10-03 20:20:25.000000000 +0200
+++ /var/tmp/diff_new_pack.aaMi21/_new  2015-10-03 20:20:25.000000000 +0200
@@ -24,7 +24,7 @@
 License:        GPL-2.0 and GFDL-1.2
 Group:          System/GUI/KDE
 Url:            http://www.kde.org/
-Version:        15.04.3
+Version:        15.08.1
 Release:        0
 Source0:        %{rname}-%{version}.tar.xz
 Patch0:         %{rname}-4.14.3-fix-bashisms.patch

++++++ kde-dev-scripts-15.04.3.tar.xz -> kde-dev-scripts-15.08.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-dev-scripts-15.04.3/cmake-dependencies.py 
new/kde-dev-scripts-15.08.1/cmake-dependencies.py
--- old/kde-dev-scripts-15.04.3/cmake-dependencies.py   2015-02-27 
09:36:09.000000000 +0100
+++ new/kde-dev-scripts-15.08.1/cmake-dependencies.py   2015-07-09 
06:53:35.000000000 +0200
@@ -104,7 +104,7 @@
                 processedFiles[moduleName]['version'] = 
checkPackageVersion(moduleName)
 
             processedFiles[moduleName]['files'].add(currentFile)
-            processedFiles[moduleName]['explicit'] |= 
(callingFile.endswith("CMakeLists.txt"))
+            processedFiles[moduleName]['explicit'] |= 
(callingFile.endswith("CMakeLists.txt") or 
callingFile.endswith("Qt5/Qt5Config.cmake") or 
callingFile.endswith("FindKF5.cmake"))
 
     print("[")
     first = True
@@ -115,10 +115,18 @@
 
         value['files'] = list(value['files'])
         value['project'] = v
-        print("\t%s" % (json.dumps(value)), end='')
         if v in lookedUpPackages:
+            if value['version'] is None:
+                line = lookedUpPackages[v]
+                isVersion = line[:line.find(' ')]
+
+                if len(isVersion)>0 and isVersion[0].isdigit():
+                    value['version'] = { 'used': None, 'requested': isVersion }
+
             del lookedUpPackages[v]
 
+        print("\t%s" % (json.dumps(value)), end='')
+
     # display missing packages
     for v in lookedUpPackages:
         if not first:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-dev-scripts-15.04.3/kf5/adapt_cmakelists_file.pl 
new/kde-dev-scripts-15.08.1/kf5/adapt_cmakelists_file.pl
--- old/kde-dev-scripts-15.04.3/kf5/adapt_cmakelists_file.pl    2015-02-27 
09:36:09.000000000 +0100
+++ new/kde-dev-scripts-15.08.1/kf5/adapt_cmakelists_file.pl    2015-07-09 
06:53:35.000000000 +0200
@@ -88,7 +88,7 @@
      $modified = 1;
   }
   if (/KDEPIMLIBS_KPIMUTILS_LIBS/) {
-     $_ =~ s/\${KDEPIMLIBS_KPIMUTILS_LIBS}/KF5::PimUtils/;
+     $_ =~ s/\${KDEPIMLIBS_KPIMUTILS_LIBS}//;
      $modified = 1;
   }
   if (/KDEPIMLIBS_MAILTRANSPORT_LIBS/) {
@@ -156,7 +156,7 @@
      $modified = 1;
   }
   if (/KDEPIMLIBS_KIMAP_LIBS/) {
-     $_ =~ s/\${KDEPIMLIBS_KIMAP_LIBS}/KF5::Imap/;
+     $_ =~ s/\${KDEPIMLIBS_KIMAP_LIBS}/KF5::IMAP/;
      $modified = 1;
   }
   if (/KDEPIMLIBS_AKONADI_KMIME_LIBS/) {
@@ -502,6 +502,10 @@
      warn "Need to add \'include(ECMOptionalAddSubdirectory)\' in $file \n";
   }
 
+  if (/kde4_moc_headers/i) {
+     $_ = "";
+     $modified = 1;
+  }
   if (/\.notifyrc/) {
      my $regexp = qr/
                   
^(\s*install\s*\(\s*FILES\s+[^\s)]+\.notifyrc\s+DESTINATION\s+)
@@ -538,7 +542,7 @@
         $modified = 1;
      }
   }
-
+ 
 
 
   #kde4_add_plugin(kio_mbox ${kio_mbox_PART_SRCS})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kde-dev-scripts-15.04.3/kf5/convert-kabc-to-kcontacts.pl 
new/kde-dev-scripts-15.08.1/kf5/convert-kabc-to-kcontacts.pl
--- old/kde-dev-scripts-15.04.3/kf5/convert-kabc-to-kcontacts.pl        
1970-01-01 01:00:00.000000000 +0100
+++ new/kde-dev-scripts-15.08.1/kf5/convert-kabc-to-kcontacts.pl        
2015-07-09 06:53:35.000000000 +0200
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+# Aleix Pol Gonzalez <aleix...@kde.org>
+
+for FS in `find $PWD  -name '*.cpp' -or -name '*.h'`; do
+    perl -p -i -e 's$#include <KABC/$#include <KContacts/$g' $FS
+    perl -p -i -e 's$#include <kabc/$#include <kcontacts/$g' $FS
+    perl -p -i -e 's$#include "kabc/$#include "kcontacts/$g' $FS
+    perl -p -i -e 's$KABC::$KContacts::$g' $FS
+    perl -p -i -e 's/namespace KABC/namespace KContacts/g' $FS
+done
+
+for FS in `find $PWD  -name '*.cmake' -or -name 'CMakeLists.txt'`; do
+    perl -p -i -e 's$find_package\(KF5Abc/$find_package(KF5Contacts$g' $FS
+    perl -p -i -e 's$KF5::Abc$KF5::Contacts$g' $FS
+done
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kde-dev-scripts-15.04.3/kf5/convert-kdebug-with-argument.sh 
new/kde-dev-scripts-15.08.1/kf5/convert-kdebug-with-argument.sh
--- old/kde-dev-scripts-15.04.3/kf5/convert-kdebug-with-argument.sh     
2015-02-27 09:36:09.000000000 +0100
+++ new/kde-dev-scripts-15.08.1/kf5/convert-kdebug-with-argument.sh     
2015-07-09 06:53:35.000000000 +0200
@@ -17,7 +17,7 @@
 # create debug.h file
 cat > $debugnamefile.h <<EOF
 /*  This file is part of the KDE project
-    Copyright (C) 2014 Laurent Montel <mon...@kde.org>
+    Copyright (C) 2015 Laurent Montel <mon...@kde.org>
 
     This library is free software; you can redistribute it and/or
     modify it under the terms of the GNU Library General Public
@@ -49,7 +49,7 @@
 #create debug.cpp file
 cat > $debugnamefile.cpp <<EOF
 /*  This file is part of the KDE project
-    Copyright (C) 2014 Laurent Montel <mon...@kde.org>
+    Copyright (C) 2015 Laurent Montel <mon...@kde.org>
 
     This library is free software; you can redistribute it and/or
     modify it under the terms of the GNU Library General Public
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-dev-scripts-15.04.3/kf5/convert-kdebug.pl 
new/kde-dev-scripts-15.08.1/kf5/convert-kdebug.pl
--- old/kde-dev-scripts-15.04.3/kf5/convert-kdebug.pl   2015-02-27 
09:36:09.000000000 +0100
+++ new/kde-dev-scripts-15.08.1/kf5/convert-kdebug.pl   1970-01-01 
01:00:00.000000000 +0100
@@ -1,48 +0,0 @@
-#!/usr/bin/perl -w
-
-# David Faure <fa...@kde.org>
-# kDebug() -> qDebug()
-# kWarning() -> qWarning()
-
-use strict;
-use File::Basename;
-use lib dirname($0);
-use functionUtilkde;
-
-foreach my $file (@ARGV) {
-
-    my $infoVar;
-    my $urlVar;
-
-    my $modified;
-    open(my $FILE, "<", $file) or warn "We can't open file $file:$!\n";
-    my @l = map {
-        my $orig = $_;
-
-        s/kDebug\s*\(\s*\)/\/\/qDebug\(\)/;
-        s/kdDebug\s*\(\s*\)/\/\/qDebug\(\)/;
-        s/kWarning\s*\(\s*\)/qWarning\(\)/;
-        s/kdWarning\s*\(\s*\)/qWarning\(\)/;
-        s/kError\s*\(\s*\)/qCritical\(\)/;
-        s/kFatal\s*\(\s*\)/qFatal\(\)/;
-        s/k_funcinfo/Q_FUNC_INFO/;
-
-        s/\<kdebug\.h>/\<QDebug>/ if (/#include/);
-        s/\<KDebug\>/\<QDebug>/ if (/#include/);
-        s/\"kdebug\.h"/\<QDebug>/ if (/#include/);
-
-        #s/\<\< endl//; # old stuff
-
-        $modified ||= $orig ne $_;
-        $_;
-    } <$FILE>;
-
-    if ($modified) {
-        open (my $OUT, ">", $file);
-        print $OUT @l;
-        close ($OUT);
-        functionUtilkde::addIncludeInFile($file, "QDebug");
-    }
-}
-
-functionUtilkde::diffFile( "@ARGV" );
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-dev-scripts-15.04.3/kf5/convert-klineedit.pl 
new/kde-dev-scripts-15.08.1/kf5/convert-klineedit.pl
--- old/kde-dev-scripts-15.04.3/kf5/convert-klineedit.pl        2015-02-27 
09:36:09.000000000 +0100
+++ new/kde-dev-scripts-15.08.1/kf5/convert-klineedit.pl        2015-07-09 
06:53:35.000000000 +0200
@@ -18,10 +18,12 @@
         s/\bKLineEdit\b/QLineEdit/g;
         s/\<KLineEdit\b\>/\<QLineEdit>/ =~ /#include/ ;
         s/\<klineedit.h\>/\<QLineEdit>/ =~ /#include/ ;
-        s/\bsetClickMessage\b/setPlaceholderText/;
+        s/\bisClearButtonShown\b/isClearButtonEnabled/;
         s/\bsetClearButtonShown\b/setClearButtonEnabled/;
-        s/\"clickMessage\"/\"placeholderText\"/;
+        s/\bshowClearButton\b/clearButtonEnabled/;
         s/\"clearButtonShown\"/\"clearButtonEnabled\"/;
+        s/\bsetClickMessage\b/setPlaceholderText/;
+        s/\"clickMessage\"/\"placeholderText\"/;
 
         $modified ||= $orig ne $_;
         $_;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kde-dev-scripts-15.04.3/kf5/convert-ktemporaryfile.pl 
new/kde-dev-scripts-15.08.1/kf5/convert-ktemporaryfile.pl
--- old/kde-dev-scripts-15.04.3/kf5/convert-ktemporaryfile.pl   2015-02-27 
09:36:09.000000000 +0100
+++ new/kde-dev-scripts-15.08.1/kf5/convert-ktemporaryfile.pl   2015-07-09 
06:53:35.000000000 +0200
@@ -60,7 +60,7 @@
                warn "$file : KTemporaryFile uses setPrefix add 
'$newContructor'\n";
                
                $_ = "//code was $_";
-               $_ .= "//Add to constructor and adapt if necessay: 
$newContructor \n";
+               $_ .= "//Add to constructor and adapt if necessary: 
$newContructor \n";
                
            }
         }
@@ -71,7 +71,7 @@
                my $newContructor= $2 . "QLatin1String(\"/myapp_XXXXXX.txt\")";
                warn "$file : KTemporaryFile uses setPrefix add 
'$newContructor'\n";
                $_ = "//code was $_";
-               $_ .= "//Add to constructor and adapt if necessay: 
$newContructor \n";
+               $_ .= "//Add to constructor and adapt if necessary: 
$newContructor \n";
            }
         }
         if (/(\w+)\.setSuffix\s*\((.*)\)/) {
@@ -80,7 +80,7 @@
                my $newContructor= "QDir::tempPath() + 
QLatin1String(\"/myapp_XXXXXX\") + QLatin1String($2)";
                warn "$file : KTemporaryFile uses setPrefix add 
'$newContructor'\n";
                $_ = "//code was $_";
-               $_ .= "//Add to constructor and adapt if necessay: 
$newContructor \n";
+               $_ .= "//Add to constructor and adapt if necessary: 
$newContructor \n";
            }
         }
 
@@ -90,7 +90,7 @@
                my $newContructor= "QDir::tempPath() + 
QLatin1String(\"/myapp_XXXXXX\") + QLatin1String($2)";
                warn "$file :KTemporaryFile uses setPrefix add 
'$newContructor'\n";
                $_ = "//code was $_";
-               $_ .= "//Add to constructor and adapt if necessay: 
$newContructor \n";
+               $_ .= "//Add to constructor and adapt if necessary: 
$newContructor \n";
            }
         }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kde-dev-scripts-15.04.3/kf5/convert-qkdebug-to-qcdebug.sh 
new/kde-dev-scripts-15.08.1/kf5/convert-qkdebug-to-qcdebug.sh
--- old/kde-dev-scripts-15.04.3/kf5/convert-qkdebug-to-qcdebug.sh       
2015-02-27 09:36:09.000000000 +0100
+++ new/kde-dev-scripts-15.08.1/kf5/convert-qkdebug-to-qcdebug.sh       
2015-07-09 06:53:35.000000000 +0200
@@ -16,7 +16,7 @@
 # create debug.h file
 cat > $debugnamefile.h <<EOF
 /*  This file is part of the KDE project
-    Copyright (C) 2014 Laurent Montel <mon...@kde.org>
+    Copyright (C) 2015 Laurent Montel <mon...@kde.org>
 
     This library is free software; you can redistribute it and/or
     modify it under the terms of the GNU Library General Public
@@ -40,7 +40,7 @@
 #include <QLoggingCategory>
 Q_DECLARE_LOGGING_CATEGORY($newcategoryname)
 
-#endif 
+#endif
 
 EOF
 
@@ -48,7 +48,7 @@
 #create debug.cpp file
 cat > $debugnamefile.cpp <<EOF
 /*  This file is part of the KDE project
-    Copyright (C) 2014 Laurent Montel <mon...@kde.org>
+    Copyright (C) 2015 Laurent Montel <mon...@kde.org>
 
     This library is free software; you can redistribute it and/or
     modify it under the terms of the GNU Library General Public
@@ -78,10 +78,11 @@
 find -iname "*.cpp" -o -iname "*.h" | xargs perl -pi -e 
"s,qWarning\s*\(\s*\),qCWarning\($newcategoryname\),"
 find -iname "*.cpp" -o -iname "*.h" | xargs perl -pi -e 
"s,qFatal\s*\(\s*\),qCCritical\($newcategoryname\),"
 find -iname "*.cpp" -o -iname "*.h" | xargs perl -pi -e 
"s,qError\s*\(\s*\),qCCritical\($newcategoryname\),"
-find -iname "*.cpp" -o -iname "*.h" | xargs perl -pi -e 
"s,kDebug\s*\(\s*\),qCDebug\($newcategoryname\),"
-find -iname "*.cpp" -o -iname "*.h" | xargs perl -pi -e 
"s,kWarning\s*\(\s*\),qCWarning\($newcategoryname\),"
-find -iname "*.cpp" -o -iname "*.h" | xargs perl -pi -e 
"s,kFatal\s*\(\s*\),qCCritical\($newcategoryname\),"
-find -iname "*.cpp" -o -iname "*.h" | xargs perl -pi -e 
"s,kError\s*\(\s*\),qCCritical\($newcategoryname\),"
+find -iname "*.cpp" -o -iname "*.h" | xargs perl -pi -e 
"s,qCritical\s*\(\s*\),qCCritical\($newcategoryname\),"
+find -iname "*.cpp" -o -iname "*.h" | xargs perl -pi -e 
"s,\bkDebug\s*\(\s*\),qCDebug\($newcategoryname\),"
+find -iname "*.cpp" -o -iname "*.h" | xargs perl -pi -e 
"s,\bkWarning\s*\(\s*\),qCWarning\($newcategoryname\),"
+find -iname "*.cpp" -o -iname "*.h" | xargs perl -pi -e 
"s,\bkFatal\s*\(\s*\),qCCritical\($newcategoryname\),"
+find -iname "*.cpp" -o -iname "*.h" | xargs perl -pi -e 
"s,\bkError\s*\(\s*\),qCCritical\($newcategoryname\),"
 
 
 find -iname "*.cpp" -o -iname "*.h" | xargs perl -pi -e "s,#include 
\<QDebug\>,#include \"$debugnamefile.h\","
@@ -89,6 +90,7 @@
 find -iname "*.cpp" -o -iname "*.h" | xargs perl -pi -e "s,#include 
\<kdebug.h\>,#include \"$debugnamefile.h\","
 find -iname "*.cpp" -o -iname "*.h" | xargs perl -pi -e "s,#include 
\<KDebug\>,#include \"$debugnamefile.h\","
 
+find -iname "*.cpp" -o -iname "*.h" | xargs perl -pi -e 
"s/k_funcinfo/Q_FUNC_INFO/;"
 
 git add $debugnamefile.cpp $debugnamefile.h
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kde-dev-scripts-15.04.3/kf5/convert-to-new-signal-slot-signal.pl 
new/kde-dev-scripts-15.08.1/kf5/convert-to-new-signal-slot-signal.pl
--- old/kde-dev-scripts-15.04.3/kf5/convert-to-new-signal-slot-signal.pl        
2015-02-27 09:36:09.000000000 +0100
+++ new/kde-dev-scripts-15.08.1/kf5/convert-to-new-signal-slot-signal.pl        
2015-07-09 06:53:35.000000000 +0200
@@ -310,7 +310,11 @@
     my ($file) = @_;
     my $header = functionUtilkde::headerName($file);
     my $inslots = 0;
-    warn "Parse header file: $header \n";
+    if (!defined $header) {
+       warn "new header found for file \'$file\'\n";
+    } else {
+       warn "Parse header file: $header \n";
+    }
     # parse header file
     open(my $HEADERFILE, "<", $header) or warn "We can't open file 
$header:$!\n";
     my @lheader = map {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-dev-scripts-15.04.3/kf5/fix-ecm-install-icons.pl 
new/kde-dev-scripts-15.08.1/kf5/fix-ecm-install-icons.pl
--- old/kde-dev-scripts-15.04.3/kf5/fix-ecm-install-icons.pl    2015-02-27 
09:36:09.000000000 +0100
+++ new/kde-dev-scripts-15.08.1/kf5/fix-ecm-install-icons.pl    2015-07-09 
06:53:35.000000000 +0200
@@ -76,7 +76,7 @@
         my %themehash = ();
 
         foreach my $file (<{*.png,*.svgz,*.mng}>) {
-            if ($file =~ 
/(br|ox|cr|lo|hi)(\d\d|sc)-(\w+)-([^\.]+)\.(png|svgz|mng)/) {
+            if ($file =~ 
/(br|ox|cr|lo|hi)(\d+|sc)-(\w+)-([^\.]+)\.(png|svgz|mng)/) {
                 my $th = $1;
                 my $size = $2;
                 my $group = $3;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kde-dev-scripts-15.04.3/kf5/search-kdelibs4support-header.sh 
new/kde-dev-scripts-15.08.1/kf5/search-kdelibs4support-header.sh
--- old/kde-dev-scripts-15.04.3/kf5/search-kdelibs4support-header.sh    
2015-02-27 09:36:09.000000000 +0100
+++ new/kde-dev-scripts-15.08.1/kf5/search-kdelibs4support-header.sh    
2015-07-09 06:53:35.000000000 +0200
@@ -1,3 +1,3 @@
 #!/bin/sh
-find -name "*.cpp" -o -iname "*.cc" -o -iname "*.h" -o -iname "*.ui" -o -iname 
"*.kcf*" |egrep -v build | xargs egrep -i 
'(k3bufferedsocket|k3clientsocketbase|k3resolver|k3reverseresolver|k3serversocket|k3socketaddress|k3socketbase|k3socketdevice|k3streamsocket|k4aboutdata|k4style|k4timezonewidget|kaccelgen|\bkaction\b|kapplication|karrowbutton|kascii|kbuttongroup|kcalendarsystem|kcmdlineargs|kcolorchoosermode|kcolordialog|kcolorvalueselector|kcomponentdata|kconfiggroup_kurl|kcurrencycode|kdatatool|kdatetime|kdatetimewidget|kdatewidget|kdebug|kdefakes|kde_file|kdelibs4support_export|kdelibs4support_export_internal|kdemacros|kdeprintdialog|kdeversion|kdevicelistmodel|kdialogbuttonbox|\bkdialog\b|kdirselectdialog|kdiskfreespace|keditlistbox|kfadewidgeteffect|kfiledialog|kfileitemactionplugin|kfilemetadataconfigurationwidget|kfilemetadatawidget|kfilemetainfo|kfilemetainfoitem|kfilemetainfowidget|kfileshare|kfilewriteplugin|kfontcombobox|kfontdialog|kgenericfactory|kglobal\b|kglobalsettings|khbox|khuesaturationselect|kicon\b|kimageio|kinputdialog|klibloader|klibrary|klistwidget\b|klocale|klocalizeddate|klockfile|kmd5|kmenubar|\bkmenu\b|kmessageboxmessagehandler|kmessagebox_queued|\bkmimetype\b|knuminput|knumvalidator|kpassivepopupmessagehandler|kpixmapcache|kprintpreview|kprogressdialog|kpropsdialog|kpushbutton|krestrictedline|ksavefile|kscan|ksessionmanager|ksharedptr|kshortcut\b|ksocketfactory|ksplashscreen|ksslcertchain|ksslcertificate|kssl|ksslutils|ksslx509v3|kstandarddirs|kstatusbar|kstringhandler_deprecated|kstringvalidator|ksystemtimezone|ksystemtrayicon|ktabbar|ktabwidget|ktempdir|ktemporaryfile|ktextbrowser|ktimezone|ktypelist|ktzfiletimezone|kundostack|kuniqueapplication|kurl\b|kvbox|kviewstatesaver|kxerrorhandler|predicateproperties|qtest_kde)'
+find -name "*.cpp" -o -iname "*.cc" -o -iname "*.h" -o -iname "*.ui" -o -iname 
"*.kcf*" |egrep -v build | xargs egrep -i 
'(KIO::NetAccess|k3bufferedsocket|k3clientsocketbase|k3resolver|k3reverseresolver|k3serversocket|k3socketaddress|k3socketbase|k3socketdevice|k3streamsocket|k4aboutdata|k4style|k4timezonewidget|kaccelgen|\bkaction\b|kapplication|karrowbutton|kascii|kbuttongroup|kcalendarsystem|kcmdlineargs|kcolorchoosermode|kcolordialog|kcolorvalueselector|kcomponentdata|kconfiggroup_kurl|kcurrencycode|kdatatool|kdatetime|kdatetimewidget|kdatewidget|kdebug|kdefakes|kde_file|kdelibs4support_export|kdelibs4support_export_internal|kdemacros|kdeprintdialog|kdeversion|kdevicelistmodel|kdialogbuttonbox|\bkdialog\b|kdirselectdialog|kdiskfreespace|keditlistbox|kfadewidgeteffect|kfiledialog|kfileitemactionplugin|kfilemetadataconfigurationwidget|kfilemetadatawidget|kfilemetainfo|kfilemetainfoitem|kfilemetainfowidget|kfileshare|kfilewriteplugin|kfontcombobox|kfontdialog|kgenericfactory|kglobal\b|kglobalsettings|khbox|khuesaturationselect|kicon\b|kimageio|kinputdialog|klibloader|klibrary|klistwidget\b|klocale|klocalizeddate|klockfile|kmd5|kmenubar|\bkmenu\b|kmessageboxmessagehandler|kmessagebox_queued|\bkmimetype\b|knuminput|knumvalidator|kpassivepopupmessagehandler|kpixmapcache|kprintpreview|kprogressdialog|kpropsdialog|kpushbutton|krestrictedline|ksavefile|kscan|ksessionmanager|ksharedptr|kshortcut\b|ksocketfactory|ksplashscreen|ksslcertchain|ksslcertificate|kssl|ksslutils|ksslx509v3|kstandarddirs|kstatusbar|kstringhandler_deprecated|kstringvalidator|ksystemtimezone|ksystemtrayicon|ktabbar|ktabwidget|ktempdir|ktemporaryfile|ktextbrowser|ktimezone|ktypelist|ktzfiletimezone|kundostack|kuniqueapplication|kurl\b|kvbox|kviewstatesaver|kxerrorhandler|predicateproperties|qtest_kde)'
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-dev-scripts-15.04.3/relicensecheck.pl 
new/kde-dev-scripts-15.08.1/relicensecheck.pl
--- old/kde-dev-scripts-15.04.3/relicensecheck.pl       2015-02-27 
09:36:09.000000000 +0100
+++ new/kde-dev-scripts-15.08.1/relicensecheck.pl       2015-07-09 
06:53:35.000000000 +0200
@@ -26,6 +26,7 @@
 ### For more information, see http://techbase.kde.org/Projects/KDE_Relicensing
 
 my %license_table = (
+    'afiestas'      => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
     'hubner'        => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
     'aacid'         => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
     'abryant'       => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
@@ -45,6 +46,7 @@
     'broulik'       => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
     'bruggie'       => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
     'bshah'         => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
+    'capel'         => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
     'carewolf'      => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+'        ],
     'cgiboudeaux'   => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
     'chehrlic'      => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
@@ -79,6 +81,7 @@
     'garbanzo'      => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
     'giannaros'     => ['gplv23', 'lgplv23'                             ],
     'graesslin'     => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
+    'groszdaniel'   => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
     'ilic'          => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
     'ivan'          => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
     'jbrouault'     => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
@@ -88,6 +91,7 @@
     'jones'         => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
     'jowenn'        => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
     'jtamate'       => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
+    'kfunk'         => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
     'kloecker'      => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+'        ],
     'kossebau'      => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
     'kylafas'       => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
@@ -110,6 +114,7 @@
     'mssola'        => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
     'mueller'       => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+'        ],
     'mwolff'        => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
+    'narvaez'       => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],
     'nhasan'        => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+'        ],
     'nsams'         => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+'        ],
     'ogoffart'      => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ],


Reply via email to