Solved editors/pluma: crashes after removing devel/gvfs

For the first attempts to run pluma after booting the environment from which auto-removals included gvfs:
Code:
% grep pluma /var/log/messages
Mar 16 21:34:59 mowa219-gjp4-zbook-freebsd kernel: pid 18211 (pluma), jid 0, uid 1002: exited on signal 5 (core dumped)
Mar 16 21:37:02 mowa219-gjp4-zbook-freebsd kernel: pid 18382 (pluma), jid 0, uid 1002: exited on signal 5 (core dumped)
Mar 16 21:40:48 mowa219-gjp4-zbook-freebsd kernel: pid 18663 (pluma), jid 0, uid 1002: exited on signal 5 (core dumped)
%

I guess, nothing useful in the backtrace:

Code:
% gdb /usr/local/bin/pluma -f /home/grahamperrin/pluma.core
GNU gdb (GDB) 14.1 [GDB v14.1 for FreeBSD]
Copyright (C) 2023 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-portbld-freebsd15.0".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<https://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
    <http://www.gnu.org/software/gdb/documentation/>.

For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from /usr/local/bin/pluma...
(No debugging symbols found in /usr/local/bin/pluma)
[New LWP 101034]
[New LWP 124722]
[New LWP 124723]
[New LWP 124724]
[New LWP 124725]
Core was generated by `pluma'.
Program terminated with signal SIGTRAP, Trace/breakpoint trap.
Breakpoint.
#0  0x000000082f8a783a in g_log_structured_array () from /usr/local/lib/libglib-2.0.so.0
[Current thread is 1 (LWP 101034)]
(gdb) bt
#0  0x000000082f8a783a in g_log_structured_array () at /usr/local/lib/libglib-2.0.so.0
#1  0x000000082f8a7016 in g_log_default_handler () at /usr/local/lib/libglib-2.0.so.0
#2  0x000000082f8a6b85 in g_logv () at /usr/local/lib/libglib-2.0.so.0
#3  0x000000082f8a669e in g_log () at /usr/local/lib/libglib-2.0.so.0
#4  0x000000082e61ba68 in ??? () at /usr/local/lib/libgio-2.0.so.0
#5  0x000000082ed897e1 in ??? () at /usr/local/lib/libgobject-2.0.so.0
#6  0x000000082ed88fae in ??? () at /usr/local/lib/libgobject-2.0.so.0
#7  0x000000082ed88cc3 in g_object_new_valist () at /usr/local/lib/libgobject-2.0.so.0
#8  0x000000082ed882f7 in g_object_new () at /usr/local/lib/libgobject-2.0.so.0
#9  0x0000000000254e00 in ??? ()
#10 0x000000082ed9fdf2 in g_type_create_instance () at /usr/local/lib/libgobject-2.0.so.0
#11 0x000000082ed88f03 in ??? () at /usr/local/lib/libgobject-2.0.so.0
#12 0x000000082ed8836c in g_object_new () at /usr/local/lib/libgobject-2.0.so.0
#13 0x0000000000254641 in ??? ()
#14 0x00000000002441a3 in ??? ()
#15 0x000000082ed9fdf2 in g_type_create_instance () at /usr/local/lib/libgobject-2.0.so.0
#16 0x000000082ed88f03 in ??? () at /usr/local/lib/libgobject-2.0.so.0
#17 0x000000082ed8836c in g_object_new () at /usr/local/lib/libgobject-2.0.so.0
#18 0x0000000000243161 in pluma_app_get_default ()
#19 0x00000000002422c1 in main ()
(gdb) q
% pkg iinfo pluma
pluma-1.28.0
pluma-plugins-1.28.0
% uname -aKU
FreeBSD mowa219-gjp4-zbook-freebsd 15.0-CURRENT FreeBSD 15.0-CURRENT main-n268827-75464941dc17 GENERIC amd64 1500015 1500015
%

Worked around​

sudo pkg install --automatic --yes --quiet gvfs

sudo pkg autoremove
 
Back
Top