Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package kdelibs4support for openSUSE:Factory
checked in at 2022-03-14 19:34:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdelibs4support (Old)
and /work/SRC/openSUSE:Factory/.kdelibs4support.new.25692 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdelibs4support"
Mon Mar 14 19:34:21 2022 rev:102 rq:961238 version:5.92.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes
2022-03-11 11:45:07.974867797 +0100
+++
/work/SRC/openSUSE:Factory/.kdelibs4support.new.25692/kdelibs4support.changes
2022-03-14 19:35:40.898026766 +0100
@@ -1,0 +2,11 @@
+Mon Mar 7 22:59:09 UTC 2022 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.92.0
+ * New feature release
+ * For more details please see:
+ * https://kde.org/announcements/frameworks/5/5.92.0
+- No code change since 5.91.0
+- Add patch:
+ * 0001-Don-t-assume-libexec-is-a-LIB_INSTALL_DIR-subfolder.patch
+
+-------------------------------------------------------------------
Old:
----
kdelibs4support-5.91.0.tar.xz
kdelibs4support-5.91.0.tar.xz.sig
New:
----
0001-Don-t-assume-libexec-is-a-LIB_INSTALL_DIR-subfolder.patch
kdelibs4support-5.92.0.tar.xz
kdelibs4support-5.92.0.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kdelibs4support.spec ++++++
--- /var/tmp/diff_new_pack.1zAEvr/_old 2022-03-14 19:35:41.490027476 +0100
+++ /var/tmp/diff_new_pack.1zAEvr/_new 2022-03-14 19:35:41.494027481 +0100
@@ -17,14 +17,14 @@
%define lname libKF5KDELibs4Support5
-%define _tar_path 5.91
+%define _tar_path 5.92
# Full KF5 version (e.g. 5.33.0)
%{!?_kf5_version: %global _kf5_version %{version}}
# Last major and minor KF5 version (e.g. 5.33)
%{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} |
awk -F. '{print $1"."$2}')}
%bcond_without released
Name: kdelibs4support
-Version: 5.91.0
+Version: 5.92.0
Release: 0
Summary: Code and utilities to ease the transition to KDE Frameworks 5
License: LGPL-2.1-or-later
@@ -37,6 +37,8 @@
%endif
# PATCH-FIX-UPSTREAM
Patch0: 0001-Use-KDE_INSTALL_FULL_-variables-where-needed.patch
+# PATCH-FIX-UPSTREAM
+Patch1: 0001-Don-t-assume-libexec-is-a-LIB_INSTALL_DIR-subfolder.patch
BuildRequires: NetworkManager-devel
BuildRequires: extra-cmake-modules >= %{_kf5_bugfix_version}
BuildRequires: fdupes
@@ -45,7 +47,6 @@
BuildRequires: pkgconfig
BuildRequires: cmake(KF5Auth) >= %{_kf5_bugfix_version}
BuildRequires: cmake(KDED) >= %{_kf5_bugfix_version}
-BuildRequires: cmake(KF5Bookmarks) >= %{_kf5_bugfix_version}
BuildRequires: cmake(KF5Completion) >= %{_kf5_bugfix_version}
BuildRequires: cmake(KF5Config) >= %{_kf5_bugfix_version}
BuildRequires: cmake(KF5ConfigWidgets) >= %{_kf5_bugfix_version}
@@ -58,7 +59,6 @@
BuildRequires: cmake(KF5GuiAddons) >= %{_kf5_bugfix_version}
BuildRequires: cmake(KF5I18n) >= %{_kf5_bugfix_version}
BuildRequires: cmake(KF5IconThemes) >= %{_kf5_bugfix_version}
-BuildRequires: cmake(KF5ItemViews) >= %{_kf5_bugfix_version}
BuildRequires: cmake(KF5KIO) >= %{_kf5_bugfix_version}
BuildRequires: cmake(KF5Notifications) >= %{_kf5_bugfix_version}
BuildRequires: cmake(KF5Parts) >= %{_kf5_bugfix_version}
@@ -81,7 +81,6 @@
BuildRequires: pkgconfig(openssl)
BuildRequires: pkgconfig(sm)
BuildRequires: pkgconfig(x11)
-Recommends: %{name}-lang = %{version}
Provides: kde4support = %{version}
Obsoletes: kde4support < %{version}
++++++ 0001-Don-t-assume-libexec-is-a-LIB_INSTALL_DIR-subfolder.patch ++++++
>From efd387e0f0816d0f1fd156f8ba75f4b56dcf5034 Mon Sep 17 00:00:00 2001
From: Christophe Giboudeaux <[email protected]>
Date: Mon, 7 Mar 2022 14:34:11 +0100
Subject: [PATCH] Don't assume libexec is a LIB_INSTALL_DIR subfolder
FHS 3.0 states that executables not intended to be executed by users shall be
under /usr/libexec [1]
[1] https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch04s07.html
---
src/kdecore/kstandarddirs.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/kdecore/kstandarddirs.cpp b/src/kdecore/kstandarddirs.cpp
index 23064a9a..a61f5ae9 100644
--- a/src/kdecore/kstandarddirs.cpp
+++ b/src/kdecore/kstandarddirs.cpp
@@ -304,7 +304,7 @@ static QString relativeInstallPath(const char *type)
return QFile::decodeName(LIB_INSTALL_DIR "/");
}
if (strcmp("libexec", type) == 0) {
- return QFile::decodeName(LIB_INSTALL_DIR "/libexec/");
+ return QFile::decodeName(LIBEXEC_INSTALL_DIR "/");
}
if (strcmp("locale", type) == 0) {
return QFile::decodeName(LOCALE_INSTALL_DIR "/");
--
2.35.1
++++++ kdelibs4support-5.91.0.tar.xz -> kdelibs4support-5.92.0.tar.xz ++++++
++++ 2611 lines of diff (skipped)