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 2026-04-17 21:49:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdesdk-scripts (Old)
 and      /work/SRC/openSUSE:Factory/.kdesdk-scripts.new.11940 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kdesdk-scripts"

Fri Apr 17 21:49:59 2026 rev:100 rq:1347422 version:26.04.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kdesdk-scripts/kdesdk-scripts.changes    
2026-03-07 20:09:03.089674023 +0100
+++ /work/SRC/openSUSE:Factory/.kdesdk-scripts.new.11940/kdesdk-scripts.changes 
2026-04-17 21:52:47.561768338 +0200
@@ -1,0 +2,28 @@
+Sat Apr 11 16:13:45 UTC 2026 - Christophe Marin <[email protected]>
+
+- Update to 26.04.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/26.04.0/
+- No code change since 26.03.90
+
+-------------------------------------------------------------------
+Mon Mar 30 12:10:14 UTC 2026 - Christophe Marin <[email protected]>
+
+- Update to 26.03.90
+  * New feature release
+- No code change since 26.03.80
+
+-------------------------------------------------------------------
+Sat Mar 14 09:09:22 UTC 2026 - Christophe Marin <[email protected]>
+
+- Update to 26.03.80
+  * New feature release
+- Changes since 25.12.3:
+  * Add amazingakai to relicensecheck.pl
+  * Search .hpp files too
+  * Ignore empty CDATA text
+  * Better use of perl regexp
+  * Add option to remove CDATA from xml
+
+-------------------------------------------------------------------

Old:
----
  kde-dev-scripts-25.12.3.tar.xz
  kde-dev-scripts-25.12.3.tar.xz.sig

New:
----
  kde-dev-scripts-26.04.0.tar.xz
  kde-dev-scripts-26.04.0.tar.xz.sig

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

Other differences:
------------------
++++++ kdesdk-scripts.spec ++++++
--- /var/tmp/diff_new_pack.TxgUVF/_old  2026-04-17 21:52:48.293798501 +0200
+++ /var/tmp/diff_new_pack.TxgUVF/_new  2026-04-17 21:52:48.297798666 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kdesdk-scripts
 #
-# Copyright (c) 2025 SUSE LLC and contributors
+# Copyright (c) 2026 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,7 +23,7 @@
 
 %bcond_without released
 Name:           kdesdk-scripts
-Version:        25.12.3
+Version:        26.04.0
 Release:        0
 Summary:        Scripts for KDE software development
 License:        GPL-2.0-only AND GFDL-1.2-only


++++++ kde-dev-scripts-25.12.3.tar.xz -> kde-dev-scripts-26.04.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-dev-scripts-25.12.3/clean-forward-declaration.sh 
new/kde-dev-scripts-26.04.0/clean-forward-declaration.sh
--- old/kde-dev-scripts-25.12.3/clean-forward-declaration.sh    2025-11-29 
04:20:14.000000000 +0100
+++ new/kde-dev-scripts-26.04.0/clean-forward-declaration.sh    2026-04-07 
05:30:55.000000000 +0200
@@ -4,7 +4,7 @@
 # cd <directory> ; ./clean-forward-declaration.sh 
 
 #list all .h files.
-list=`find -name '*.h' | egrep -v '(\.svn|build)'`;
+list=`find -name '*.h' -o -iname '*.hpp' | egrep -v '(\.svn|build)'`;
  # list=`ls *.H | egrep -v '(\.svn|build)'`;
 for file in $list ; do
        #get class line (don't get it when we have "friend"/"template" or 
"public" word or *Private class)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-dev-scripts-25.12.3/extractrc 
new/kde-dev-scripts-26.04.0/extractrc
--- old/kde-dev-scripts-25.12.3/extractrc       2025-11-29 04:20:14.000000000 
+0100
+++ new/kde-dev-scripts-26.04.0/extractrc       2026-04-07 05:30:55.000000000 
+0200
@@ -28,6 +28,7 @@
 --ignore-no-input : Do not warn if there were no filenames specified
 --help|?          : Display this summary
 --no-unescape-xml : Don't do xml unescaping
+--strip-cdata     : Remove <![CDATA[..]]> from strings if found
 
 EOF
 
@@ -115,6 +116,7 @@
              "language=s"  => \my $opt_language,
              "ignore-no-input" => \my $opt_ignore_no_input,
              "no-unescape-xml" => \my $opt_no_unescape_xml,
+             "strip-cdata" => \my $opt_strip_cdata,
              "help|?"      => \&usage );
 
 unless( @ARGV )
@@ -169,11 +171,17 @@
 
 sub dummy_call_infix {
     my ($cstart, $stend, $ctxt, $text, @cmnts) = @_;
-    for my $cmnt (@cmnts) {
-        print qq|$cstart $cmnt\n|;
-    }
     if (defined $text) {
         $text = escape_uic_to_c($text);
+        if ($opt_strip_cdata) {
+            $text =~ s/<!\[CDATA\[(.*?)]]>/$1/gs;
+            if ($text eq '') {
+                return
+            }
+        }
+        for my $cmnt (@cmnts) {
+            print qq|$cstart $cmnt\n|;
+        }
         if (defined $ctxt) {
             $ctxt = escape_uic_to_c($ctxt);
             print qq|i18nc("$ctxt", "$text")$stend\n|;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kde-dev-scripts-25.12.3/po/ca/docs/scripts/man-zonetab2pot.py.1.docbook 
new/kde-dev-scripts-26.04.0/po/ca/docs/scripts/man-zonetab2pot.py.1.docbook
--- old/kde-dev-scripts-25.12.3/po/ca/docs/scripts/man-zonetab2pot.py.1.docbook 
2025-11-29 04:20:14.000000000 +0100
+++ new/kde-dev-scripts-26.04.0/po/ca/docs/scripts/man-zonetab2pot.py.1.docbook 
2026-04-07 05:30:55.000000000 +0200
@@ -34,7 +34,7 @@
 >zonetab2pot.py</command
 ></refname>
 <refpurpose
->Converteix una llista de zones de temps en un fitxer PO 
plantilla.</refpurpose>
+>Converteix una llista de fusos horaris en una plantilla de fitxer 
PO.</refpurpose>
 </refnamediv>
 
 <refsynopsisdiv>
@@ -44,7 +44,7 @@
 > <group
 ><option
 ><replaceable
->llista_zones_temps</replaceable
+>llista_fusos_horaris</replaceable
 ></option
 ></group
 > </cmdsynopsis>
@@ -57,18 +57,18 @@
 <para
 ><command
 >zonetab2pot.py</command
-> llegeix la llista de zones horàries que proporcionada en la línia d'ordres i 
la converteix en una plantilla en format de gettext (fitxer PO) contingent els 
noms de cadascuna de les zones horàries. </para>
+> llegeix la llista de fusos horaris proporcionada en la línia d'ordres i la 
converteix en una plantilla en format de gettext (fitxer PO) contenint els noms 
de cadascun dels fusos horaris. </para>
 
 <para
->La zona horària proporcionada haurà d'estar en el mateix format que el 
«zone.tab» del sistema. Si no s'especifica cap llista de zones horàries a la 
línia d'ordres, s'usarà <filename
+>El fus horari proporcionat haurà d'estar en el mateix format que el 
«zone.tab» del sistema. Si no s'especifica cap llista de fusos horaris a la 
línia d'ordres, s'usarà <filename
 >/usr/share/zoneinfo/zone.tab</filename
 >.</para>
 
 <para
->El nou fitxer PO serà escrit a l'eixida estàndard del sistema.</para>
+>El fitxer PO nou s'escriurà a l'eixida estàndard del sistema.</para>
 
 <para
->Aquesta utilitat forma part del joc de desenvolupament de programari del 
&kde;. </para
+>Aquesta utilitat forma part del conjunt de desenvolupament de programari de 
&kde;. </para
 > 
 
 </refsect1>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kde-dev-scripts-25.12.3/po/fr/docs/scripts/man-extractrc.1.docbook 
new/kde-dev-scripts-26.04.0/po/fr/docs/scripts/man-extractrc.1.docbook
--- old/kde-dev-scripts-25.12.3/po/fr/docs/scripts/man-extractrc.1.docbook      
2025-11-29 04:20:14.000000000 +0100
+++ new/kde-dev-scripts-26.04.0/po/fr/docs/scripts/man-extractrc.1.docbook      
2026-04-07 05:30:55.000000000 +0200
@@ -57,7 +57,7 @@
 <para
 ><command
 >extractrc</command
-> cherche toutes les balises et autres chaines de messages dans les fichiers 
donnés et écrit les appels i18n() correspondant sur la sortie standard afin que 
xgettext puisse les vérifier.</para>
+> cherche toutes les balises et autres chaines de messages dans les fichiers 
donnés et écrit les appels « i18n() » correspondant sur la sortie standard afin 
que xgettext puisse les vérifier.</para>
 
 <para
 >Il comprend à la fois les fichiers <acronym
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-dev-scripts-25.12.3/relicensecheck.pl 
new/kde-dev-scripts-26.04.0/relicensecheck.pl
--- old/kde-dev-scripts-25.12.3/relicensecheck.pl       2025-11-29 
04:20:14.000000000 +0100
+++ new/kde-dev-scripts-26.04.0/relicensecheck.pl       2026-04-07 
05:30:55.000000000 +0200
@@ -36,6 +36,7 @@
     'ahmadsamir'    => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 
'CCBYSA4' ],
     'albertvaka'    => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 
'CCBYSA4' ],
     'alex'          => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 
'CCBYSA4' ],
+    'amazingakai'   => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 
'CCBYSA4' ],
     'apollozhu'     => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 
'CCBYSA4' ],
     'arbab'         => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 
'CCBYSA4' ],
     'arichardson'   => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 
'CCBYSA4' ],

Reply via email to