Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kate for openSUSE:Factory checked in at 2021-08-16 10:06:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kate (Old) and /work/SRC/openSUSE:Factory/.kate.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kate" Mon Aug 16 10:06:15 2021 rev:135 rq:911633 version:21.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kate/kate.changes 2021-07-09 23:58:34.936877731 +0200 +++ /work/SRC/openSUSE:Factory/.kate.new.1899/kate.changes 2021-08-16 10:06:43.315444224 +0200 @@ -1,0 +2,38 @@ +Fri Aug 6 09:36:12 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 21.08.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/gear/21.08.0 +- Changes since 21.07.90: + * improve kate on haiku os + * avoid double branch name computation +- Rebase 0001-Defuse-root-block.patch + +------------------------------------------------------------------- +Fri Jul 30 10:04:41 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 21.07.90 + * New feature release +- Changes since 21.07.80: + * LocHistory: When limiting size, also rewind currentLocation + * Location history improvements + * handle nullptr return of screenAt() (kde#439804) + +------------------------------------------------------------------- +Sat Jul 17 20:05:46 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 21.07.80 + * New feature release +- Too many changes since 21.04.3, only listing bugfixes: + * ensure we unify line endings (kde#436753) + * add missing name for hot new stuff (kde#438018) + * lspclient: bypass shutdown delay if not needed and cleanup defunct code (kde#438790) + * ensure to not crash on missing context menu (kde#426939) + * lspclient: add action to request and apply quick fix code action (kde#437746) + * Work around conflicting shortcuts in preview plugin (kde#386265) + * S&R: Fix matching ^ and $ in multi-line expressions (kde#318232) + * Prevent storing diff files in recent files history (kde#436906) +- Only install the license files once + +------------------------------------------------------------------- Old: ---- kate-21.04.3.tar.xz kate-21.04.3.tar.xz.sig New: ---- kate-21.08.0.tar.xz kate-21.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kate.spec ++++++ --- /var/tmp/diff_new_pack.JUT48b/_old 2021-08-16 10:06:45.315441830 +0200 +++ /var/tmp/diff_new_pack.JUT48b/_new 2021-08-16 10:06:45.319441826 +0200 @@ -22,7 +22,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: kate -Version: 21.04.3 +Version: 21.08.0 Release: 0 Summary: Advanced Text Editor License: GPL-3.0-or-later @@ -65,7 +65,6 @@ BuildRequires: cmake(Qt5Test) BuildRequires: cmake(Qt5Widgets) Requires: %{name}-plugins = %{version} -Recommends: %{name}-lang Obsoletes: %{name}5 < %{version} Provides: %{name}5 = %{version} @@ -109,7 +108,6 @@ %endif %files -%license LICENSES/* %doc README* %dir %{_kf5_iconsdir}/hicolor/150x150/ %dir %{_kf5_iconsdir}/hicolor/150x150/apps @@ -130,7 +128,6 @@ %{_kf5_iconsdir}/hicolor/*/apps/kate.* %files -n kwrite -%license LICENSES/* %doc README* %doc %lang(en) %{_kf5_htmldir}/en/kwrite/ %{_kf5_applicationsdir}/org.kde.kwrite.desktop @@ -152,7 +149,6 @@ %if %{with lang} %files lang -f %{name}.lang -%license LICENSES/* %endif %changelog ++++++ 0001-Defuse-root-block.patch ++++++ --- /var/tmp/diff_new_pack.JUT48b/_old 2021-08-16 10:06:45.335441807 +0200 +++ /var/tmp/diff_new_pack.JUT48b/_new 2021-08-16 10:06:45.339441802 +0200 @@ -1,4 +1,4 @@ -From 5cec675834a722a6cb55858074eb7a2d13ec685e Mon Sep 17 00:00:00 2001 +From bfe1b2dd63d410c8365b2197a313193ab29ebe5e Mon Sep 17 00:00:00 2001 From: Fabian Vogt <fab...@ritter-vogt.de> Date: Sat, 18 Feb 2017 13:49:14 +0100 Subject: [PATCH] Defuse root block @@ -13,11 +13,11 @@ 2 files changed, 4 insertions(+), 26 deletions(-) diff --git a/kate/main.cpp b/kate/main.cpp -index cea01d6..37d418f 100644 +index 5cdaa6c4d..042c0cfc8 100644 --- a/kate/main.cpp +++ b/kate/main.cpp @@ -48,19 +48,8 @@ int main(int argc, char **argv) - #ifndef Q_OS_WIN + #if !defined(Q_OS_WIN) && !defined(Q_OS_HAIKU) // Prohibit using sudo or kdesu (but allow using the root user directly) if (getuid() == 0) { - if (!qEnvironmentVariableIsEmpty("SUDO_USER")) { @@ -33,17 +33,17 @@ - << std::endl; - return EXIT_FAILURE; - } -+ std::cout << "THIS IS POTENTIALLY INSECURE!\nTo edit files as root please use:" << std::endl; -+ std::cout << "SUDO_EDITOR=kate sudoedit <file>" << std::endl; ++ std::cout << "THIS IS POTENTIALLY INSECURE!\nTo edit files as root please use:" << std::endl; ++ std::cout << "SUDO_EDITOR=kwrite sudoedit <file>" << std::endl; } #endif /** diff --git a/kwrite/main.cpp b/kwrite/main.cpp -index 87cac6f..4f0bad2 100644 +index 4daa7c3a2..d3b83686c 100644 --- a/kwrite/main.cpp +++ b/kwrite/main.cpp @@ -40,19 +40,8 @@ extern "C" Q_DECL_EXPORT int main(int argc, char **argv) - #ifndef Q_OS_WIN + #if !defined(Q_OS_WIN) && !defined(Q_OS_HAIKU) // Prohibit using sudo or kdesu (but allow using the root user directly) if (getuid() == 0) { - if (!qEnvironmentVariableIsEmpty("SUDO_USER")) { @@ -65,5 +65,5 @@ #endif -- -2.30.2 +2.32.0 ++++++ kate-21.04.3.tar.xz -> kate-21.08.0.tar.xz ++++++ /work/SRC/openSUSE:Factory/kate/kate-21.04.3.tar.xz /work/SRC/openSUSE:Factory/.kate.new.1899/kate-21.08.0.tar.xz differ: char 26, line 1