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 2025-08-16 20:37:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdesdk-scripts (Old) and /work/SRC/openSUSE:Factory/.kdesdk-scripts.new.1085 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdesdk-scripts" Sat Aug 16 20:37:59 2025 rev:92 rq:1299600 version:25.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kdesdk-scripts/kdesdk-scripts.changes 2025-07-06 17:13:34.497020223 +0200 +++ /work/SRC/openSUSE:Factory/.kdesdk-scripts.new.1085/kdesdk-scripts.changes 2025-08-16 20:40:42.883546452 +0200 @@ -1,0 +2,23 @@ +Fri Aug 8 07:47:22 UTC 2025 - Christophe Marin <christo...@krop.fr> + +- Update to 25.08.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/gear/25.08.0/ +- No code change since 25.07.80 + +------------------------------------------------------------------- +Mon Jul 14 14:25:08 UTC 2025 - Christophe Marin <christo...@krop.fr> + +- Update to 25.07.80 + * New feature release +- Changes since 25.04.3: + * Add thesamesam to relicensecheck.pl + * Add silverhadch to relicensecheck.pl + * Feature: Add support for X11 in matrix_colored_paste + * Add manuelal to relicensecheck.pl + * Add matrix_colored_paste.sh + * Edit relicensecheck.pl + * Add xerusion to table + +------------------------------------------------------------------- Old: ---- kde-dev-scripts-25.04.3.tar.xz kde-dev-scripts-25.04.3.tar.xz.sig New: ---- kde-dev-scripts-25.08.0.tar.xz kde-dev-scripts-25.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdesdk-scripts.spec ++++++ --- /var/tmp/diff_new_pack.aNNaqR/_old 2025-08-16 20:40:43.407568219 +0200 +++ /var/tmp/diff_new_pack.aNNaqR/_new 2025-08-16 20:40:43.411568385 +0200 @@ -1,7 +1,7 @@ # # spec file for package kdesdk-scripts # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2025 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 @@ -18,12 +18,12 @@ %define rname kde-dev-scripts -%define kf6_version 6.6.0 -%define qt6_version 6.6.0 +%define kf6_version 6.14.0 +%define qt6_version 6.8.0 %bcond_without released Name: kdesdk-scripts -Version: 25.04.3 +Version: 25.08.0 Release: 0 Summary: Scripts for KDE software development License: GPL-2.0-only AND GFDL-1.2-only @@ -61,7 +61,7 @@ %ifarch ppc64 RPM_OPT_FLAGS="%{optflags} -mminimal-toc" %endif -%cmake_kf6 -DBUILD_WITH_QT6:BOOL=TRUE +%cmake_kf6 %kf6_build ++++++ kde-dev-scripts-25.04.3.tar.xz -> kde-dev-scripts-25.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-25.04.3/README new/kde-dev-scripts-25.08.0/README --- old/kde-dev-scripts-25.04.3/README 2025-02-12 22:27:36.000000000 +0100 +++ new/kde-dev-scripts-25.08.0/README 2025-06-17 00:39:49.000000000 +0200 @@ -194,6 +194,9 @@ gettext.patch Patch for gettext-0.10.35 to give xgettext the functionality to extract scoped messages +matrix_colored_paste.sh Converts copied selection from Konsole into colorized html for + pasting into Martix chat (https://community.kde.org/Matrix). + ---------------- Looking to add a script? diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-25.04.3/matrix_colored_paste.sh new/kde-dev-scripts-25.08.0/matrix_colored_paste.sh --- old/kde-dev-scripts-25.04.3/matrix_colored_paste.sh 1970-01-01 01:00:00.000000000 +0100 +++ new/kde-dev-scripts-25.08.0/matrix_colored_paste.sh 2025-06-17 00:39:49.000000000 +0200 @@ -0,0 +1,45 @@ +#!/bin/bash + +# Overview: +# This script will help you convert your clipboard text (copied from Konsole) to colored text that is ready to paste into Matrix chat. +# For example, users could copy the terminal output of a problem happening when building projects with kde-builder, and then send it to developers on Matrix. + +# Setup: +# It is assumed you use Wayland or X11 session. +# With your package manager install wl-clipboard for Wayland, or xclip for X11. +# In system settings, in keyboard shortcuts, add a new custom shortcut pointing to this script. Let's say it is Meta+U. + +# Usage: +# Select some text in Konsole, press Copy in context menu or with keyboard shortcut. +# Press your custom shortcut Meta+U. +# In the chat room in matrix, paste your clipboard and send message. + +# Explanation: +# When copying text from Konsole, it can be pasted not just as usual plain text, but as text/html. +# This by itself however is not useful, because Matrix does not allow "style" attribute in "span" tags, see: +# https://spec.matrix.org/v1.14/client-server-api/#mroommessage-msgtypes +# We remove style attributes, while converting colors to matrix attributes, and we remove "uncolored" background and font +# (otherwise appeared as forced to black text on white background), so it looks nice in chat with both dark and light themes. + +# Detect session type +if [ "$XDG_SESSION_TYPE" = "wayland" ]; then + html=$(wl-paste --type text/html) +elif [ "$XDG_SESSION_TYPE" = "x11" ]; then + html=$(xclip -selection clipboard -t text/html -o) +else + echo "Unsupported session type: $XDG_SESSION_TYPE" + exit 1 +fi + +echo "/html $html" | \ +sed 's/font-weight:bold;//g' | \ +sed -E 's/style="color:#([0-9A-Fa-f]{6});background-color:#([0-9A-Fa-f]{6});"/data-mx-color="#\1" data-mx-bg-color="#\2"/g' | \ +sed 's/ data-mx-bg-color="#ffffff"//g' | \ +sed 's/ data-mx-color="#000000"//g' | \ +{ + if [ "$XDG_SESSION_TYPE" = "wayland" ]; then + wl-copy + else + xclip -selection clipboard + fi +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kde-dev-scripts-25.04.3/relicensecheck.pl new/kde-dev-scripts-25.08.0/relicensecheck.pl --- old/kde-dev-scripts-25.04.3/relicensecheck.pl 2025-02-12 22:27:36.000000000 +0100 +++ new/kde-dev-scripts-25.08.0/relicensecheck.pl 2025-06-17 00:39:49.000000000 +0200 @@ -82,6 +82,7 @@ 'lorendb' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'ltoscano' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'lueck' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], + 'manuelal' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', 'CCBYSA4' ], 'mart' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'marten' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'merritt' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], @@ -110,6 +111,7 @@ 'rkflx' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'rkrawitz' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'safaalfulaij' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], + 'silverhadch' => ['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' ], @@ -119,6 +121,7 @@ 'stikonas' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'tduck' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'tfella' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], + 'thesamesam' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', 'CCBYSA4' ], 'thomassc' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'tkadauke' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'tleupold' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], @@ -128,6 +131,7 @@ 'wrobelda' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'wxiao' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], 'wbauer' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ], + 'xerusion' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', 'CCBYSA4' ], 'xyquadrat' => ['gplv23', 'lgplv23', 'gplv2+', 'lgplv2+', '+eV', 'CCBYSA4' ] );