unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: bug#24188: gnucash needs gtk+ in propagated-inputs
       [not found]   ` <87eg5xq9lo.fsf@systemreboot.net>
@ 2016-08-11 13:22     ` 宋文武
  2016-09-09 14:33       ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: 宋文武 @ 2016-08-11 13:22 UTC (permalink / raw)
  To: Arun Isaac; +Cc: 24188, guix-devel

Arun Isaac <arunisaac@systemreboot.net> writes:

>> The following environment variables are set which may make a difference
>> here:
>>
>>   GUIX_GTK3_PATH=/run/current-system/profile/lib/gtk-3.0
>>   GUIX_GTK2_PATH=/run/current-system/profile/lib/gtk-2.0
>>   GTK_DATA_PREFIX=/run/current-system/profile
>
> After setting XDG_DATA_DIRS with
>
> export XDG_DATA_DIRS="/gnu/store/zlr5l39k9gw7ss26iq6vj3yk215xrzpl-profile/share${XDG_DATA_DIRS:+:}$XDG_DATA_DIRS"
>
> gnucash runs successfully. I found out about this using `guix
> environment --search-paths gnucash`.
>
> How do I find out about these environment variables in general?
> Shouldn't they be set in the gnucash wrapper script so that the user
> does not have to set them manually?

--8<---------------cut here---------------start------------->8---
gnc.gui:ERROR:gnc-icons.c:96:gnc_add_stock_icon_pair: assertion failed: (pixbuf1 && pixbuf2)
fish: 'gnucash' terminated by signal SIGABRT (Abort)
--8<---------------cut here---------------end--------------->8---

I think this error is caused by gdk-pixbuf, which uses XDG mime-info
database to query file types.  Install the 'shared-mime-info' package
to activate the 'xdg-mime-database' profile hook should make it works.


To actually fix this package (and some others) we can:

- Wrap them with shared-mime-info in XDG_DATA_DIRS or propagated it.

- Make sure 'xdg-mime-database' always run if glib applications are
  there even without shared-mime-info referenced by profile.  
  IIRC, this was suggested by ludo, but I ignored, now patch sent :-)
  

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: bug#24188: gnucash needs gtk+ in propagated-inputs
  2016-08-11 13:22     ` bug#24188: gnucash needs gtk+ in propagated-inputs 宋文武
@ 2016-09-09 14:33       ` Ludovic Courtès
  2016-09-09 15:40         ` Arun Isaac
  0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2016-09-09 14:33 UTC (permalink / raw)
  To: 宋文武; +Cc: 24188, guix-devel

iyzsong@member.fsf.org (宋文武) skribis:

> Arun Isaac <arunisaac@systemreboot.net> writes:
>
>>> The following environment variables are set which may make a difference
>>> here:
>>>
>>>   GUIX_GTK3_PATH=/run/current-system/profile/lib/gtk-3.0
>>>   GUIX_GTK2_PATH=/run/current-system/profile/lib/gtk-2.0
>>>   GTK_DATA_PREFIX=/run/current-system/profile
>>
>> After setting XDG_DATA_DIRS with
>>
>> export XDG_DATA_DIRS="/gnu/store/zlr5l39k9gw7ss26iq6vj3yk215xrzpl-profile/share${XDG_DATA_DIRS:+:}$XDG_DATA_DIRS"
>>
>> gnucash runs successfully. I found out about this using `guix
>> environment --search-paths gnucash`.
>>
>> How do I find out about these environment variables in general?
>> Shouldn't they be set in the gnucash wrapper script so that the user
>> does not have to set them manually?
>
> gnc.gui:ERROR:gnc-icons.c:96:gnc_add_stock_icon_pair: assertion failed: (pixbuf1 && pixbuf2)
> fish: 'gnucash' terminated by signal SIGABRT (Abort)
>
> I think this error is caused by gdk-pixbuf, which uses XDG mime-info
> database to query file types.  Install the 'shared-mime-info' package
> to activate the 'xdg-mime-database' profile hook should make it works.
>
>
> To actually fix this package (and some others) we can:
>
> - Wrap them with shared-mime-info in XDG_DATA_DIRS or propagated it.
>
> - Make sure 'xdg-mime-database' always run if glib applications are
>   there even without shared-mime-info referenced by profile.  
>   IIRC, this was suggested by ludo, but I ignored, now patch sent :-)

Apparently the 2nd item is what commit
801d316b20b05a4d0687873ad8e438e6238e23ce does.

Are we done, or do we need to do item #1 too?

Ludo’.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: bug#24188: gnucash needs gtk+ in propagated-inputs
  2016-09-09 14:33       ` Ludovic Courtès
@ 2016-09-09 15:40         ` Arun Isaac
  2016-09-09 22:38           ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Arun Isaac @ 2016-09-09 15:40 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 24188, guix-devel


>> To actually fix this package (and some others) we can:
>>
>> - Wrap them with shared-mime-info in XDG_DATA_DIRS or propagated it.
>>
>> - Make sure 'xdg-mime-database' always run if glib applications are
>>   there even without shared-mime-info referenced by profile.  
>>   IIRC, this was suggested by ludo, but I ignored, now patch sent :-)
>
> Apparently the 2nd item is what commit
> 801d316b20b05a4d0687873ad8e438e6238e23ce does.
>
> Are we done, or do we need to do item #1 too?

We are done. No need to do item #1. The issue has been fixed.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: bug#24188: gnucash needs gtk+ in propagated-inputs
  2016-09-09 15:40         ` Arun Isaac
@ 2016-09-09 22:38           ` Ludovic Courtès
  0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2016-09-09 22:38 UTC (permalink / raw)
  To: Arun Isaac; +Cc: 24188-done, guix-devel

Arun Isaac <arunisaac@systemreboot.net> skribis:

>>> To actually fix this package (and some others) we can:
>>>
>>> - Wrap them with shared-mime-info in XDG_DATA_DIRS or propagated it.
>>>
>>> - Make sure 'xdg-mime-database' always run if glib applications are
>>>   there even without shared-mime-info referenced by profile.  
>>>   IIRC, this was suggested by ludo, but I ignored, now patch sent :-)
>>
>> Apparently the 2nd item is what commit
>> 801d316b20b05a4d0687873ad8e438e6238e23ce does.
>>
>> Are we done, or do we need to do item #1 too?
>
> We are done. No need to do item #1. The issue has been fixed.

I like that.  :-)  Thanks!

Ludo’.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-09-09 22:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <87oa53yx0x.fsf@systemreboot.net>
     [not found] ` <87y4465kjf.fsf@elephly.net>
     [not found]   ` <87eg5xq9lo.fsf@systemreboot.net>
2016-08-11 13:22     ` bug#24188: gnucash needs gtk+ in propagated-inputs 宋文武
2016-09-09 14:33       ` Ludovic Courtès
2016-09-09 15:40         ` Arun Isaac
2016-09-09 22:38           ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).