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 2023-04-23 22:45:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdesdk-scripts (Old) and /work/SRC/openSUSE:Factory/.kdesdk-scripts.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdesdk-scripts" Sun Apr 23 22:45:59 2023 rev:65 rq:1080588 version:23.04.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kdesdk-scripts/kdesdk-scripts.changes 2023-03-03 22:28:35.927352380 +0100 +++ /work/SRC/openSUSE:Factory/.kdesdk-scripts.new.1533/kdesdk-scripts.changes 2023-04-23 22:48:24.671032709 +0200 @@ -1,0 +2,20 @@ +Sat Apr 15 08:45:37 UTC 2023 - Christophe Marin <christo...@krop.fr> + +- Update to 23.04.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/gear/23.04.0/ + +------------------------------------------------------------------- +Fri Mar 31 16:41:52 UTC 2023 - Christophe Marin <christo...@krop.fr> + +- Update to 23.03.90 + * New feature release + +------------------------------------------------------------------- +Fri Mar 17 20:43:19 UTC 2023 - Christophe Marin <christo...@krop.fr> + +- Update to 23.03.80 + * New feature release + +------------------------------------------------------------------- Old: ---- kde-dev-scripts-22.12.3.tar.xz kde-dev-scripts-22.12.3.tar.xz.sig New: ---- kde-dev-scripts-23.04.0.tar.xz kde-dev-scripts-23.04.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdesdk-scripts.spec ++++++ --- /var/tmp/diff_new_pack.92VlKV/_old 2023-04-23 22:48:25.227035851 +0200 +++ /var/tmp/diff_new_pack.92VlKV/_new 2023-04-23 22:48:25.231035873 +0200 @@ -21,7 +21,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without released Name: kdesdk-scripts -Version: 22.12.3 +Version: 23.04.0 Release: 0 Summary: Scripts for KDE software development License: GPL-2.0-only AND GFDL-1.2-only ++++++ kde-dev-scripts-22.12.3.tar.xz -> kde-dev-scripts-23.04.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-22.12.3/completions/bash/dcop new/kde-dev-scripts-23.04.0/completions/bash/dcop --- old/kde-dev-scripts-22.12.3/completions/bash/dcop 2023-02-25 06:00:22.000000000 +0100 +++ new/kde-dev-scripts-23.04.0/completions/bash/dcop 1970-01-01 01:00:00.000000000 +0100 @@ -1,52 +0,0 @@ -# dcop completion -# -# Inputs: -# $1 -- name of the command whose arguments are being completed -# $2 -- word being completed -# $3 -- ord preceding the word being completed -# $COMP_LINE -- current command line -# $COMP_PONT -- cursor position -# $COMP_WORDS -- array containing individual words in the current -# command line -# $COMP_CWORD -- index into ${COMP_WORDS} of the word containing the -# current cursor position -# Output: -# COMPREPLY array variable contains possible completions -# -# dcop syntax: -# dcop [ application [object [function [arg1] [arg2] [arg3] ... ] ] ] -# -_complete_dcop () -{ - local wordlist - - COMPREPLY=() - wordlist="" - - if (( $COMP_CWORD == 1 )); then - # - # Application. This one is easy, just return all names that dcop - # gives us. - # - wordlist=$(dcop) - elif (( $COMP_CWORD == 2 )); then - # - # Object. 'dcop <application>' returns all objects the application - # supports plus (default). The parenthesis in (default) should be - # omitted when using it as an argument so we need to remove them. - # - wordlist=$(dcop ${COMP_WORDS[1]} | sed -e "s,(default),default,") - elif (( $COMP_CWORD == 3 )); then - # - # Function. 'dcop <application> <object>' returns functions of the - # form 'type functionname(arguments)'. We need to return a list with - # the functionnames. - # - wordlist=$(dcop ${COMP_WORDS[1]} ${COMP_WORDS[2]} | sed -e "s,.* \(.*\)(.*,\1,") - fi - - COMPREPLY=( $(compgen -W "$wordlist" "$2") ) - return 0 -} - -complete -F _complete_dcop dcop diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-22.12.3/completions/zsh/_dcop new/kde-dev-scripts-23.04.0/completions/zsh/_dcop --- old/kde-dev-scripts-22.12.3/completions/zsh/_dcop 2023-02-25 06:00:22.000000000 +0100 +++ new/kde-dev-scripts-23.04.0/completions/zsh/_dcop 1970-01-01 01:00:00.000000000 +0100 @@ -1,11 +0,0 @@ -#compdef dcop - -local tmp - -if [ CURRENT -eq 4 ]; then - tmp=(`$words[1,CURRENT-1] 2>/dev/null | sed -e "s,.* \(.*\)(.*,\1,"`) -else - tmp=(`$words[1,CURRENT-1] 2>/dev/null | sed -e "s,(default),default,"`) -fi - -compadd -a tmp diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-22.12.3/completions/zsh/_kcmshell new/kde-dev-scripts-23.04.0/completions/zsh/_kcmshell --- old/kde-dev-scripts-22.12.3/completions/zsh/_kcmshell 2023-02-25 06:00:22.000000000 +0100 +++ new/kde-dev-scripts-23.04.0/completions/zsh/_kcmshell 1970-01-01 01:00:00.000000000 +0100 @@ -1,16 +0,0 @@ -#compdef kcmshell=kcmshell appletproxy=appletproxy - -local i resource tmp dir flags -if [ "$service" = "kcmshell" ]; then - resource="apps"; - dir="/Settings"; - flags=":t:r"; -else - resource="data"; - dir="/kicker/applets"; - flags=":t" -fi -for i in `kde-config --path $resource| sed -e 's/:/ /g'`; do - tmp=($i/$dir/**/*.desktop($flags)) - compadd -a tmp -done diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-22.12.3/completions/zsh/_kdeinit4_wrapper new/kde-dev-scripts-23.04.0/completions/zsh/_kdeinit4_wrapper --- old/kde-dev-scripts-22.12.3/completions/zsh/_kdeinit4_wrapper 2023-02-25 06:00:22.000000000 +0100 +++ new/kde-dev-scripts-23.04.0/completions/zsh/_kdeinit4_wrapper 1970-01-01 01:00:00.000000000 +0100 @@ -1,6 +0,0 @@ -#compdef kdeinit4_wrapper - -# Yes, this could be improved - -_arguments \ - '*::arguments: _normal' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-22.12.3/completions/zsh/_kdekillall new/kde-dev-scripts-23.04.0/completions/zsh/_kdekillall --- old/kde-dev-scripts-22.12.3/completions/zsh/_kdekillall 2023-02-25 06:00:22.000000000 +0100 +++ new/kde-dev-scripts-23.04.0/completions/zsh/_kdekillall 1970-01-01 01:00:00.000000000 +0100 @@ -1,8 +0,0 @@ -#compdef kdekillall - -local progs -progs=(`ps x | grep kdeinit: | grep -v Running | grep -v grep | sed 's,.*kdeinit: ,,' | sed 's, .*,,'`) - -_alternative \ - 'signals:: _signals -p' \ - 'compadd $progs' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-22.12.3/kf5/functionUtilkde.pm new/kde-dev-scripts-23.04.0/kf5/functionUtilkde.pm --- old/kde-dev-scripts-22.12.3/kf5/functionUtilkde.pm 2023-02-25 06:00:22.000000000 +0100 +++ new/kde-dev-scripts-23.04.0/kf5/functionUtilkde.pm 2023-03-10 03:12:13.000000000 +0100 @@ -50,13 +50,13 @@ sub diffFile { if ( system("git rev-parse --is-inside-work-tree 2>/dev/null >/dev/null") == 0 ) { - system( qw(git diff --), $@ ); + system( qw(git diff --), @_ ); } elsif ( system("svn info 2>/dev/null >/dev/null") == 0 ) { - system( qw(svn diff), $@ ); + system( qw(svn diff), @_ ); } elsif ( system("hg identify 2>/dev/null >/dev/null") == 0 ) { - system( qw(hg diff), $@ ); + system( qw(hg diff), @_ ); } elsif ( -d "CVS" ) { - system( qw(cvs diff -up), $@ ); + system( qw(cvs diff -up), @_ ); } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-22.12.3/kf6/adapt_buildsystem_latest_kf6.sh new/kde-dev-scripts-23.04.0/kf6/adapt_buildsystem_latest_kf6.sh --- old/kde-dev-scripts-22.12.3/kf6/adapt_buildsystem_latest_kf6.sh 1970-01-01 01:00:00.000000000 +0100 +++ new/kde-dev-scripts-23.04.0/kf6/adapt_buildsystem_latest_kf6.sh 2023-03-10 03:12:13.000000000 +0100 @@ -0,0 +1,92 @@ +#!/bin/sh +# SPDX-FileCopyrightText: 2023 Laurent Montel <mon...@kde.org> +# SPDX-License-Identifier: CC0-1.0 +# +list='ConfigCore + KIOCore + XmlGui + I18n + ConfigWidgets + Codecs + Purpose + PurposeWidgets + NewStuffWidgets + NewStuff + ItemViews + KIOWidgets + Crash + TextEditor + DocTools + DBusAddons + Archive + SyntaxHighlighting + IconThemes + KIO + WidgetsAddons + TextWidgets + Completion + IconThemes + Contacts + CalendarCore + ItemModels + Service + Holidays + GuiAddons + CoreAddons + GlobalAccel + DNSSD + KCMUtils + Notifications + NotifyConfig + Parts + WindowSystem + Config + JobWidgets + Prison + ConfigGui + KIOFileWidgets + SonnetUi + Sonnet + SonnetCore + Bookmarks + Syndication + KIOGui + ItemModels + Wallet + IdleTime + ActivitiesStats + Solid + FileMetaData + Baloo + Plotting + UnitConversion + Kirigami2 + Package + AuthCore + QuickAddons + Plasma + Wayland'; +for i in $list ; +do + echo " **** $i******"; + git grep -l "KF5::$i" | xargs perl -pi -e "s;\bKF5::$i\b;KF\\$\{KF_MAJOR_VERSION\}::$i;g" + git grep -l "KF5$i" | egrep -v Config.cmake.in | xargs perl -pi -e "s;\bKF5$i\b;KF\\$\{KF_MAJOR_VERSION\}$i;g" + find -iname *Config.cmake.in | xargs perl -pi -e "s;\bKF5$i\b;KF\\@KF_MAJOR_VERSION\\@$i;g" + git grep -l "KF5$i_FOUND" | xargs perl -pi -e "s,KF5$i_FOUND,KF\\$\{KF_MAJOR_VERSION\}$i_FOUND," +done +git grep -l "find_package(KF5 " | xargs perl -pi -e "s,find_package\\(KF5 ,find_package\\(KF\\$\{KF_MAJOR_VERSION\} ," +git grep -l "Qt5.*_QCH" | xargs perl -pi -e 's,Qt5Gui_QCH,Qt\${QT_MAJOR_VERSION}Gui_QCH,' +git grep -l "Qt5.*_QCH" | xargs perl -pi -e 's,Qt5Core_QCH,Qt\${QT_MAJOR_VERSION}Core_QCH,' +git grep -l "Qt5.*_QCH" | xargs perl -pi -e 's,Qt5Widgets_QCH,Qt\${QT_MAJOR_VERSION}Widgets_QCH,' + +perl -pi -e 's,include\(ECMDeprecationSettings\),include\(ECMDeprecationSettings\)\nif (QT_MAJOR_VERSION STREQUAL "6")\n set(QT_REQUIRED_VERSION "6.4.0")\n set(KF_MIN_VERSION "5.240.0")\n set(KF_MAJOR_VERSION "6")\nelse()\n set(KF_MAJOR_VERSION "5")\nendif(),' CMakeLists.txt +perl -pi -e "s;Dependencies:;Dependencies:\n\- \'on\': \[\'Linux/Qt6\', \'FreeBSD/Qt6\', \'Windows/Qt6\', \'Android/Qt6\'\]\n 'require':\n add \\@latest\-kf6\n;" .kde-ci.yml +perl -pi -e "s;\- \'on\': \[\'\@all\'\];\- \'on\': \[\'Linux/Qt5\', \'FreeBSD/Qt5\', \'Windows/Qt5\', \'Android/Qt5\'\];" .kde-ci.yml + +# Allow to build against not deprecated Qt 6.4 method +perl -pi -e 's,QT 5.15.2,QT 6.4,' CMakeLists.txt + +# Warn about we need to adapt .kde-ci.yml file. +echo "Adapt $PWD/.kde-ci.yml" +#git di + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-22.12.3/po/ca/docs/scripts/man-cvscheck.1.docbook new/kde-dev-scripts-23.04.0/po/ca/docs/scripts/man-cvscheck.1.docbook --- old/kde-dev-scripts-22.12.3/po/ca/docs/scripts/man-cvscheck.1.docbook 2023-02-25 06:00:22.000000000 +0100 +++ new/kde-dev-scripts-23.04.0/po/ca/docs/scripts/man-cvscheck.1.docbook 2023-03-10 03:12:13.000000000 +0100 @@ -26,7 +26,7 @@ <refname >&cvscheck;</refname> <refpurpose ->Informes sense connexió a sobre de l'estat de mòduls &CVS;.</refpurpose> +>Informes sense connexió sobre de l'estat de mòduls &CVS; extrets.</refpurpose> </refnamediv> <refsynopsisdiv> @@ -43,7 +43,7 @@ >Descripció</title> <para ->&cvscheck; imprimeix informació a sobre de l'estat de la vostra còpia local de &CVS; sense comunicar-se amb el servidor. Això el torna extremadament rà pid, atès que no li cal connexió a la xarxa.</para> +>&cvscheck; imprimeix informació sobre de l'estat de la vostra extracció local de &CVS; sense comunicar-se amb el servidor. Això el torna extremadament rà pid, atès que no li cal connexió a la xarxa.</para> <para >El directori indicat serà processat junt amb tots els seus subdirectoris. Si >no n'indiqueu cap, s'usarà el directori actual i els seus >subdirectoris.</para> @@ -101,7 +101,7 @@ ></term> <listitem> <para ->El fitxer està en conflicte amb el &CVS; no es pot entregar de cap manera.</para> +>El fitxer està en conflicte amb el &CVS; no es pot cometre de cap manera.</para> </listitem> </varlistentry> <varlistentry> @@ -113,7 +113,7 @@ ></term> <listitem> <para ->El fitxer està en el &CVS; però falta en el vostre repositori local.</para> +>El fitxer està en el &CVS; però falta en la vostra extracció local.</para> </listitem> </varlistentry> <varlistentry> @@ -143,7 +143,7 @@ > <option >add</option ></userinput -> per aquest fitxer, però encara no l'heu entregat.</para> +> per aquest fitxer, però encara no l'heu comès.</para> </listitem> </varlistentry> <varlistentry> @@ -161,7 +161,7 @@ > <option >rm</option ></userinput -> per aquest fitxer, però encara no l'heu entregat.</para> +> per aquest fitxer, però encara no l'heu comès.</para> </listitem> </varlistentry> </variablelist> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-22.12.3/po/ca/docs/scripts/man-cvslastchange.1.docbook new/kde-dev-scripts-23.04.0/po/ca/docs/scripts/man-cvslastchange.1.docbook --- old/kde-dev-scripts-22.12.3/po/ca/docs/scripts/man-cvslastchange.1.docbook 2023-02-25 06:00:22.000000000 +0100 +++ new/kde-dev-scripts-23.04.0/po/ca/docs/scripts/man-cvslastchange.1.docbook 2023-03-10 03:12:13.000000000 +0100 @@ -36,7 +36,7 @@ <refname >&cvslastchange;</refname> <refpurpose ->Mostra l'últim canvi a un fitxer entregat al &CVS;</refpurpose> +>Mostra l'últim canvi a un fitxer comès al &CVS;</refpurpose> </refnamediv> <refsynopsisdiv> @@ -53,7 +53,7 @@ >Descripció</title> <para ->&cvslastchange; mostra l'últim canvi fet a un fitxer entregat al &CVS;. Per a fer això s'usa <command +>&cvslastchange; mostra l'últim canvi fet a un fitxer comès al &CVS;. Per a fer això s'usa <command >cvs diff</command > i <command >cvs log</command diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-22.12.3/po/ca/docs/scripts/man-cvslastlog.1.docbook new/kde-dev-scripts-23.04.0/po/ca/docs/scripts/man-cvslastlog.1.docbook --- old/kde-dev-scripts-22.12.3/po/ca/docs/scripts/man-cvslastlog.1.docbook 2023-02-25 06:00:22.000000000 +0100 +++ new/kde-dev-scripts-23.04.0/po/ca/docs/scripts/man-cvslastlog.1.docbook 2023-03-10 03:12:13.000000000 +0100 @@ -34,7 +34,7 @@ >cvslastlog</command ></refname> <refpurpose ->Imprimeix el registre per a l'última entrega d'un fitxer.</refpurpose> +>Imprimeix el registre per a l'última comissió d'un fitxer.</refpurpose> </refnamediv> <refsynopsisdiv> @@ -57,7 +57,7 @@ <para ><command >cvslastlog</command -> mostra el registre associat amb l'última entrega al CVS per al fitxer indicat. Aquest dependrà de la versió local del fitxer, no de la que hi ha al servidor. </para> +> mostra el registre associat amb l'última comissió al CVS per al fitxer indicat. Aquest dependrà de la versió local del fitxer, no de la que hi ha al servidor. </para> <para >Aquesta utilitat forma part del joc de desenvolupament de programari del >&kde;.</para> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-22.12.3/po/ca/docs/scripts/man-cvsrevertlast.1.docbook new/kde-dev-scripts-23.04.0/po/ca/docs/scripts/man-cvsrevertlast.1.docbook --- old/kde-dev-scripts-22.12.3/po/ca/docs/scripts/man-cvsrevertlast.1.docbook 2023-02-25 06:00:22.000000000 +0100 +++ new/kde-dev-scripts-23.04.0/po/ca/docs/scripts/man-cvsrevertlast.1.docbook 2023-03-10 03:12:13.000000000 +0100 @@ -55,7 +55,7 @@ >Descripció</title> <para ->cvsrevertlast és emprat per a revertir tots els fitxers sobre la lÃnia d'ordres per una versió en el CVS. Els fitxers no seran entregats.</para> +>cvsrevertlast és emprat per a revertir tots els fitxers sobre la lÃnia d'ordres per una versió en el CVS. Els fitxers no seran comesos.</para> <para >Aquesta utilitat forma part del joc de desenvolupament de programari del >&kde;. </para> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-22.12.3/qt4/functionUtilkde.pm new/kde-dev-scripts-23.04.0/qt4/functionUtilkde.pm --- old/kde-dev-scripts-22.12.3/qt4/functionUtilkde.pm 2023-02-25 06:00:22.000000000 +0100 +++ new/kde-dev-scripts-23.04.0/qt4/functionUtilkde.pm 2023-03-10 03:12:13.000000000 +0100 @@ -6,13 +6,13 @@ sub diffFile { if (-d ".svn") { - system(qw(svn diff), $@); + system(qw(svn diff), @_); } elsif (-d "CVS") { - system(qw(cvs diff -up), $@); + system(qw(cvs diff -up), @_); } elsif (-d ".git") { - system(qw(git diff), $@); + system(qw(git diff), @_); } - warn "files to commit: $@\n"; + warn "files to commit: @_\n"; } sub selectHeaderFile diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-22.12.3/relicensecheck.pl new/kde-dev-scripts-23.04.0/relicensecheck.pl --- old/kde-dev-scripts-22.12.3/relicensecheck.pl 2023-02-25 06:00:22.000000000 +0100 +++ new/kde-dev-scripts-23.04.0/relicensecheck.pl 2023-03-10 03:12:13.000000000 +0100 @@ -88,10 +88,13 @@ 'mpyne' => ['gplv23', 'lgplv23', '+eV', 'CCBYSA4' ], 'muhlenpfordt' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'ndavis' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], + 'nclarius' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', 'CCBYSA4' ], 'ngraham' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'nicolasfella' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'nituldatt' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], + 'okellogg' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'ostroffjh' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], + 'redstrate' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'rikkus' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'rkflx' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'rkrawitz' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ],