Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kdesdk-scripts for openSUSE:Factory checked in at 2021-08-16 10:09:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdesdk-scripts (Old) and /work/SRC/openSUSE:Factory/.kdesdk-scripts.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdesdk-scripts" Mon Aug 16 10:09:58 2021 rev:45 rq:911658 version:21.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kdesdk-scripts/kdesdk-scripts.changes 2021-07-10 00:01:04.431715201 +0200 +++ /work/SRC/openSUSE:Factory/.kdesdk-scripts.new.1899/kdesdk-scripts.changes 2021-08-16 10:15:12.542831953 +0200 @@ -1,0 +2,43 @@ +Fri Aug 6 09:36:48 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 21.08.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/gear/21.08.0 +- No code change since 21.07.90 + +------------------------------------------------------------------- +Fri Jul 30 10:04:48 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 21.07.90 + * New feature release +- No code change since 21.07.80 + +------------------------------------------------------------------- +Sat Jul 17 20:05:54 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 21.07.80 + * New feature release +- Changes since 21.04.3: + * Also register the new class + * Add support for classes defined in the .cpp file + * Update relicensecheck.pl + * Add comment about additional LGPL-2.0 to LGPL-2.1 grant by waba + * Make 'qs' use printq5string, since Qt5 is the default nowadays + * Remove Qt3 parts from kde-devel-gdb, long overdue + * Add myself (arrowdodger) to relicensecheck.pl + * Add smitop (myself) to relicensecheck.pl + * Add myself (bdevries) to relicensecheck.pl + * Add Aditya Mehra to relicensecheck + * Add kdemail alias for Elvis Angelaccio + * Add Leslie Zhai to relicensecheck + * Add mail alias for Nate + * Add Inoki to relicensecheck.pl + * licensecheck: Fix alpha sorting of mpyne entry. + * licensecheck: Ban FSF relicensing of code, but add permission + for CC-BY-SA 2.0. + * Added Stefan Taferner to relicensecheck + * Add Nicolas Hadacek to relicensecheck + * Fix enumeration typo + +------------------------------------------------------------------- Old: ---- kde-dev-scripts-21.04.3.tar.xz kde-dev-scripts-21.04.3.tar.xz.sig New: ---- kde-dev-scripts-21.08.0.tar.xz kde-dev-scripts-21.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdesdk-scripts.spec ++++++ --- /var/tmp/diff_new_pack.QPX3Zw/_old 2021-08-16 10:15:12.946831437 +0200 +++ /var/tmp/diff_new_pack.QPX3Zw/_new 2021-08-16 10:15:12.950831432 +0200 @@ -22,7 +22,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: kdesdk-scripts -Version: 21.04.3 +Version: 21.08.0 Release: 0 Summary: Scripts for KDE software development License: GPL-2.0-only AND GFDL-1.2-only @@ -41,7 +41,6 @@ Provides: kdesdk4-scripts = %{_kapp_version} Obsoletes: kde-dev-scripts < %{_kapp_version} Provides: kde-dev-scripts = %{_kapp_version} -Recommends: %{name}-lang %description This package contains scripts useful for development of KDE software. @@ -94,7 +93,6 @@ %if %{with lang} %files lang -f %{name}.lang -%license COPYING* %endif %changelog ++++++ kde-dev-scripts-21.04.3.tar.xz -> kde-dev-scripts-21.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-21.04.3/kde-devel-gdb new/kde-dev-scripts-21.08.0/kde-devel-gdb --- old/kde-dev-scripts-21.04.3/kde-devel-gdb 2021-07-03 00:39:07.000000000 +0200 +++ new/kde-dev-scripts-21.08.0/kde-devel-gdb 2021-06-30 11:26:28.000000000 +0200 @@ -18,12 +18,6 @@ # Show the real classname of object instances - e.g. (Kded *) 0x8073440 instead of (class QObject *) 0x8073440 set print object -define printqstring - printqstringdata ($arg0).d -end -document printqstring - Prints the contents of a Qt3 QString -end define printq4string printq4stringdata ($arg0).d end @@ -37,22 +31,6 @@ Prints the contents of a Qt5 QString end -define printqstringdata - set $i=0 - set $d = (QStringData *)($arg0) - while $i < $d->len - printf "%c", (char)($d->unicode[$i++].ucs & 0xff) - end - printf "\n" -end -document printqstringdata - Prints the contents of a QStringData - This is useful when the output of another command (e.g. printqmap) - shows {d = 0xdeadbeef} for a QString, i.e. the qstringdata address - instead of the QString object itself. - printqstring $s and printqstringdata $s.d are equivalent. -end - define printq4stringdata set $d = ('QString::Data'*) $arg0 set $i = 0 @@ -113,20 +91,6 @@ Prints a unicode value (stored as an unsigned short) as UTF-8. end -define printqstring_utf8 - set $i=0 - set $s = $arg0 - while $i < $s.d->len - set $uc = (unsigned short) $s.d->unicode[$i++].ucs - print_utf8_char $uc - end - printf "\n" -end -document printqstring_utf8 - Prints the contents of a Qt3 QString encoded in utf8. - Nice if you run your debug session in a utf8 enabled terminal. -end - define printq4string_utf8 set $i=0 set $s = $arg0 @@ -237,30 +201,6 @@ Usage: printqptrvectoritem vector type index end -define printq3map - set $map = $arg0 - set $len = $map.sh->node_count - output $len - printf " items in the map\n" - set $header = $map.sh->header - # How to parse the key and value types from whatis? - set $it = (QMapNode<$arg1,$arg2> *)($header->left) - while $it != $header - printf " key=" - output $it->key - printf " value=" - output $it->data - printf "\n" - _qmapiterator_inc $it - set $it = (QMapNode<$arg1,$arg2> *)($ret) - end -end -document printq3map - Prints the full contents of a Qt 3 QMap - Usage: 'printq3map map keytype valuetype' -end - - define printq4map set $map = $arg0 set $len = $map.d->size @@ -291,28 +231,6 @@ Usage: 'printq4map map keytype valuetype' end -define _qmapiterator_inc - set $ret = $arg0 - if $ret->right != 0 - set $ret = $ret->right - while $ret->left != 0 - set $ret = $ret->left - end - else - set $y = $ret->parent - while $ret == $y->right - set $ret = $y - set $y = $y->parent - end - if $ret->right != $y - set $ret = $y - end - end -end -document _qmapiterator_inc - Increment a qmap iterator (internal method, used by printq3map) -end - define printqptrlist set $list = $arg0 set $len = $list.numNodes @@ -403,6 +321,11 @@ end # You print QString's too often to type the long name :-) +# Change when Qt6 is the default +define qs + printq5string $arg0 +end + define qs5 printq5string $arg0 end @@ -411,10 +334,6 @@ printq4string $arg0 end -define qs3 - printqstring $arg0 -end - define printqdatetime printqdate ($arg0).d printqtime ($arg0).t @@ -444,4 +363,3 @@ finish step end - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-21.04.3/kf5/convert-to-new-signal-slot-signal.pl new/kde-dev-scripts-21.08.0/kf5/convert-to-new-signal-slot-signal.pl --- old/kde-dev-scripts-21.04.3/kf5/convert-to-new-signal-slot-signal.pl 2021-07-03 00:39:07.000000000 +0200 +++ new/kde-dev-scripts-21.08.0/kf5/convert-to-new-signal-slot-signal.pl 2021-06-30 11:26:28.000000000 +0200 @@ -520,6 +520,10 @@ #warn "it's an header class\n"; $headerclassname = $currentClass; } + } elsif ( /^\s*class ([:\w]+)/) { + # class defined in the .cpp file + $headerclassname = $1; + $listOfClassName{$headerclassname} = 1; } # Verify comment diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-21.04.3/relicensecheck.pl new/kde-dev-scripts-21.08.0/relicensecheck.pl --- old/kde-dev-scripts-21.04.3/relicensecheck.pl 2021-07-03 00:39:07.000000000 +0200 +++ new/kde-dev-scripts-21.08.0/relicensecheck.pl 2021-06-30 11:26:28.000000000 +0200 @@ -25,18 +25,22 @@ ### 5. Include '+eV' if you are okay with the KDE e.V. deciding on a future ### licensing change to your code if necessary. ### -### 5. Include 'CCBYSA4' if you are okay with contributions you've made under +### 6. Include 'CCBYSA4' if you are okay with contributions you've made under ### "GNU FDL" being relicensed as "Creative Commons Attribution-ShareAlike 4.0 International". ### For more information, see https://community.kde.org/Guidelines_and_HOWTOs/Relicensing/KDE_Relicensing my %license_table = ( 'acrouthamel' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], + 'adityam' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'aheinecke' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'ahmadsamir' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], + 'albertvaka' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'alex' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'arbab' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'arichardson' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], + 'arrowdodger' => ['lgplv23', 'CCBYSA4'], 'athurhfree' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], + 'bdevries' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'blu-base' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'bruns' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'burghard' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], @@ -53,6 +57,7 @@ 'flherne' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'froscher' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'fthieme' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], + 'hadacek' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', 'CCBYSA4' ], 'huoni' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'igorkushnir' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'jarmond' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], @@ -62,6 +67,7 @@ 'jriddell' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'kezik' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'kleag' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', 'CCBYSA4' ], + 'lesliezhai' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'lnj' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'logixoul' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'lorendb' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], @@ -73,7 +79,9 @@ 'mgallien' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'michaeleden' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'michelh' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], + 'mitchell' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'mjansen' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], + 'mpyne' => ['gplv23', 'lgplv23', '+eV', 'CCBYSA4' ], 'muhlenpfordt' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'ndavis' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'ngraham' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], @@ -86,7 +94,9 @@ 'safaalfulaij' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'sitter' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'smithjd' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], + 'smitop' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'sredman' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], + 'stefan' => ['lgplv2+'], 'sstjames' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'stikonas' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'tfella' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], @@ -95,6 +105,7 @@ 'tleupold' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'vladz' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'vjoshi' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], + 'wxiao' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'wbauer' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'xyquadrat' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ] ); @@ -244,7 +255,6 @@ 'mlaurent' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ], 'mludwig' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+' ], 'mmrozowski' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ], - 'mpyne' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ], 'mssola' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ], 'mturkia' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ], 'mueller' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+' ], @@ -313,7 +323,7 @@ 'vkrause' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ], 'vonreth' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ], 'vrusu' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ], - 'waba' => ['gplv23', 'lgplv23', '+eV' ], + 'waba' => ['gplv23', 'lgplv23', '+eV' ], # NOTE: explicit consent given for relicensing LGPL-2.0-only to LGPL-2.1-only in addition to the stated grants 'wheeler' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+' ], 'whiting' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ], 'willy' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV' ], @@ -450,6 +460,7 @@ '[email protected]' => 'schmidt-domine', '[email protected]' => 'domi', '[email protected]' => 'dvratil', + '[email protected]' => 'elvisangelaccio', '[email protected]' => 'ervin', '[email protected]' => 'dfaure', '[email protected]' => 'schmidt-domine', @@ -480,6 +491,7 @@ '[email protected]' => 'nlecureuil', '[email protected]' => 'tnyblom', '[email protected]' => 'vitters', + '[email protected]' => 'ngraham', '[email protected]' => 'larkang', '[email protected]' => 'schwarzer', '[email protected]' => 'smartins', @@ -490,6 +502,7 @@ '[email protected]' => 'palant', '[email protected]' => 'aacid', '[email protected]' => 'nicolasfella', + '[email protected]' => 'lesliezhai', ); my %ruletable;
