Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 01 Sep 2016 16:44:13 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 212310] devel/gconf2: Error messages with trailing garbage when uninstalling devel/gnome-vfs
Message-ID:  <bug-212310-13@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212310

            Bug ID: 212310
           Summary: devel/gconf2: Error messages with trailing garbage
                    when uninstalling devel/gnome-vfs
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Some People
          Priority: ---
         Component: Individual Port(s)
          Assignee: gnome@FreeBSD.org
          Reporter: t@tobik.me
                CC: tijl@FreeBSD.org
             Flags: maintainer-feedback?(gnome@FreeBSD.org)
          Assignee: gnome@FreeBSD.org

TWIMC

When uninstalling gnome-vfs pkg runs its pkg-deinstall script which in turn
invokes gconftool-2 which gives these error messages with a bunch of traili=
ng
garbage when LANG=3Den_US.UTF-8:

I/O warning : failed to load external entity
"/usr/local/etc/gconf/schemas/desktop_default_applications.schemas"
Failed to open
`/usr/local/etc/gconf/schemas/desktop_default_applications.schemas': No such
file or director=C3=B8=C3=A0=C3=BF=C3=BF=C3=BF
I/O warning : failed to load external entity
"/usr/local/etc/gconf/schemas/desktop_gnome_url_handlers.schemas"
Failed to open
`/usr/local/etc/gconf/schemas/desktop_gnome_url_handlers.schemas': No such =
file
or directo=C3=A1=C3=BF=C3=BF=C3=BF
I/O warning : failed to load external entity
"/usr/local/etc/gconf/schemas/system_dns_sd.schemas"
Failed to open `/usr/local/etc/gconf/schemas/system_dns_sd.schemas': No such
file or directo=C3=A1=C3=BF=C3=BF=C3=BF
I/O warning : failed to load external entity
"/usr/local/etc/gconf/schemas/system_http_proxy.schemas"
Failed to open `/usr/local/etc/gconf/schemas/system_http_proxy.schemas': No
such file or directo=C3=A1=C3=BF=C3=BF=C3=BF
I/O warning : failed to load external entity
"/usr/local/etc/gconf/schemas/system_smb.schemas"
Failed to open `/usr/local/etc/gconf/schemas/system_smb.schemas': No such f=
ile
or director=C3=A1=C3=BF=C3=BF=C3=BF

I noticed this on my FreeBSD 10.3 desktop, but it's reproducible in a fresh
FreeBSD 11.0-RC2 VM too.  gnome-vfs version is 2.24.4_4. glib version is
2.46.2_2. gconf2 version is 3.2.6_4.

How to reproduce:
1. pkg install gnome-vfs
2. env -i PATH=3D/bin:/usr/bin:/usr/local/bin:/usr/local/sbin LANG=3Den_US.=
UTF-8
pkg remove gnome-vfs

With LANG=3DC or LANG=3Den_US.ISO8859-15 everything looks ok.

I've managed to come up with this minimal example:

#include <stdio.h>
#include <errno.h>
#include <glib.h>
#include <libintl.h>

#define GETTEXT_PACKAGE "GConf2"
#define GCONF_LOCALE_DIR "/usr/locale/share/locale"

int main() {
    /* This is the sequence of calls gconftool-2 makes... */
    setlocale(LC_ALL, "");
    bindtextdomain(GETTEXT_PACKAGE,GCONF_LOCALE_DIR);
    textdomain(GETTEXT_PACKAGE);

    g_thread_init (NULL);

    bindtextdomain (GETTEXT_PACKAGE, GCONF_LOCALE_DIR);
    bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");

    g_printerr("%s\n", g_strerror(ENOENT));
    return 1;
}

Compile and run with:
cc main.c `pkgconf --libs --cflags glib-2.0 gthread-2.0` && env -i
LANG=3Den_US.UTF-8 ./a.out

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-212310-13>