Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package nemo-extensions for openSUSE:Factory
checked in at 2023-07-15 23:15:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/nemo-extensions (Old)
and /work/SRC/openSUSE:Factory/.nemo-extensions.new.3193 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "nemo-extensions"
Sat Jul 15 23:15:17 2023 rev:23 rq:1098819 version:5.2.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/nemo-extensions/nemo-extensions.changes
2022-10-03 13:47:28.413707328 +0200
+++
/work/SRC/openSUSE:Factory/.nemo-extensions.new.3193/nemo-extensions.changes
2023-07-15 23:15:23.783598382 +0200
@@ -1,0 +2,6 @@
+Tue Jul 11 06:10:53 UTC 2023 - Daniel Garcia <[email protected]>
+
+- Add fix-hwcaps.patch to fix the issue with Segmentation
+ fault with libpython3_11-1_0-x86-64-v3
+ (bsc#1212482)
+-------------------------------------------------------------------
New:
----
fix-hwcaps.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ nemo-extensions.spec ++++++
--- /var/tmp/diff_new_pack.zxMZ3e/_old 2023-07-15 23:15:24.451602300 +0200
+++ /var/tmp/diff_new_pack.zxMZ3e/_new 2023-07-15 23:15:24.459602347 +0200
@@ -1,7 +1,7 @@
#
# spec file for package nemo-extensions
#
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -32,6 +32,8 @@
Patch4: nemo-share-prevent-privilege-escalation.patch
# PATCH-FIX-UPSTREAM FTBFS-setuptools-61.0.patch -- fix build with setuptools
61.0
Patch5: FTBFS-setuptools-61.0.patch
+# PATCH-FIX-OPENSUSE fix-hwcaps.patch bsc#1212482
+Patch6: fix-hwcaps.patch
BuildRequires: fdupes
BuildRequires: gettext-runtime
BuildRequires: gnome-common
++++++ fix-hwcaps.patch ++++++
Index: nemo-extensions-5.2.0/nemo-python/meson.build
===================================================================
--- nemo-extensions-5.2.0.orig/nemo-python/meson.build
+++ nemo-extensions-5.2.0/nemo-python/meson.build
@@ -39,6 +39,8 @@ pyextdir = join_paths(get_option('prefix
cdata.set_quoted('NEMO_EXTENSION_DIR',
nemo.get_pkgconfig_variable('extensiondir'))
cdata.set_quoted('PYTHON_LIBPATH', libpath)
+cdata.set_quoted('PYTHON_LIBNAME', python3.get_variable('INSTSONAME'))
+
cdata.set('PYGOBJECT_MAJOR_VERSION', 3)
cdata.set('PYGOBJECT_MINOR_VERSION', 0)
cdata.set('PYGOBJECT_MICRO_VERSION', 0)
Index: nemo-extensions-5.2.0/nemo-python/src/nemo-python.c
===================================================================
--- nemo-extensions-5.2.0.orig/nemo-python/src/nemo-python.c
+++ nemo-extensions-5.2.0/nemo-python/src/nemo-python.c
@@ -175,8 +175,8 @@ nemo_python_init_python (void)
if (Py_IsInitialized())
return TRUE;
- debug("g_module_open " PYTHON_LIBPATH);
- libpython = g_module_open(PYTHON_LIBPATH, 0);
+ debug("g_module_open " PYTHON_LIBNAME);
+ libpython = g_module_open (PYTHON_LIBNAME, 0);
if (!libpython)
g_warning("g_module_open libpython failed: %s",
g_module_error());