* glib-compiler-resources
@ 2018-10-10 19:24 Brett Gilio
2018-10-10 19:29 ` glib-compiler-resources Tobias Geerinckx-Rice
0 siblings, 1 reply; 7+ messages in thread
From: Brett Gilio @ 2018-10-10 19:24 UTC (permalink / raw)
To: Guix-devel
Hi all, I am working on packaging the internet radio streaming
application, gradio.
Things seem to be going well, except during build-time I am
getting
FileNotFoundError: [Errno 2] No such file or directory:
'glib-compile-resources': 'glib-compile-resources'
Any thoughts as to where this could be?
--
Brett M. Gilio
Free Software Foundation, Member
https://gnu.org/s/guix/ | https://emacs.org
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: glib-compiler-resources
2018-10-10 19:24 glib-compiler-resources Brett Gilio
@ 2018-10-10 19:29 ` Tobias Geerinckx-Rice
2018-10-10 19:46 ` glib-compiler-resources Brett Gilio
0 siblings, 1 reply; 7+ messages in thread
From: Tobias Geerinckx-Rice @ 2018-10-10 19:29 UTC (permalink / raw)
To: Brett Gilio; +Cc: Guix-devel
Brett,
Brett Gilio wrote:
> Hi all, I am working on packaging the internet radio streaming
> application, gradio.
>
> Things seem to be going well, except during build-time I am
> getting
>
> FileNotFoundError: [Errno 2] No such file or directory:
> 'glib-compile-resources': 'glib-compile-resources'
>
>
> Any thoughts as to where this could be?
It's in glib:bin (add it as ',glib "bin"').
Kind regards,
T G-R
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: glib-compiler-resources
2018-10-10 19:29 ` glib-compiler-resources Tobias Geerinckx-Rice
@ 2018-10-10 19:46 ` Brett Gilio
2018-10-10 19:53 ` glib-compiler-resources Leo Famulari
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Brett Gilio @ 2018-10-10 19:46 UTC (permalink / raw)
To: Tobias Geerinckx-Rice; +Cc: Guix-devel
Tobias Geerinckx-Rice writes:
> Brett,
>
> Brett Gilio wrote:
>> Hi all, I am working on packaging the internet radio streaming
>> application, gradio.
>>
>> Things seem to be going well, except during build-time I am
>> getting
>>
>> FileNotFoundError: [Errno 2] No such file or directory:
>> 'glib-compile-resources': 'glib-compile-resources'
>>
>>
>> Any thoughts as to where this could be?
>
> It's in glib:bin (add it as ',glib "bin"').
>
> Kind regards,
>
> T G-R
How about update-desktop-database?
I tried adding xdg-desktop-database but I do not think that is
correct.
Not finding documentation here.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: glib-compiler-resources
2018-10-10 19:46 ` glib-compiler-resources Brett Gilio
@ 2018-10-10 19:53 ` Leo Famulari
2018-10-10 19:57 ` glib-compiler-resources Tobias Geerinckx-Rice
2018-10-10 21:10 ` glib-compiler-resources Danny Milosavljevic
2 siblings, 0 replies; 7+ messages in thread
From: Leo Famulari @ 2018-10-10 19:53 UTC (permalink / raw)
To: Brett Gilio; +Cc: Guix-devel
[-- Attachment #1: Type: text/plain, Size: 137 bytes --]
On Wed, Oct 10, 2018 at 02:46:10PM -0500, Brett Gilio wrote:
> How about update-desktop-database?
Try the 'desktop-file-utils' package.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: glib-compiler-resources
2018-10-10 19:46 ` glib-compiler-resources Brett Gilio
2018-10-10 19:53 ` glib-compiler-resources Leo Famulari
@ 2018-10-10 19:57 ` Tobias Geerinckx-Rice
2018-10-10 19:59 ` glib-compiler-resources Tobias Geerinckx-Rice
2018-10-10 21:10 ` glib-compiler-resources Danny Milosavljevic
2 siblings, 1 reply; 7+ messages in thread
From: Tobias Geerinckx-Rice @ 2018-10-10 19:57 UTC (permalink / raw)
To: Brett Gilio; +Cc: Guix-devel
Brett,
Brett Gilio wrote:
> How about update-desktop-database?
In... update-desktop-database? So I'm not sure I understand your
question. :-)
> I tried adding xdg-desktop-database but I do not think that is
> correct. Not finding documentation here.
There's no documentation or tool to find out which packages
deliver which binaries, if that's what you mean. Such a tool
remains to be written.
Kind regards,
T G-R
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: glib-compiler-resources
2018-10-10 19:46 ` glib-compiler-resources Brett Gilio
2018-10-10 19:53 ` glib-compiler-resources Leo Famulari
2018-10-10 19:57 ` glib-compiler-resources Tobias Geerinckx-Rice
@ 2018-10-10 21:10 ` Danny Milosavljevic
2 siblings, 0 replies; 7+ messages in thread
From: Danny Milosavljevic @ 2018-10-10 21:10 UTC (permalink / raw)
To: Brett Gilio; +Cc: Guix-devel
[-- Attachment #1: Type: text/plain, Size: 412 bytes --]
Hi,
On Wed, 10 Oct 2018 14:46:10 -0500
Brett Gilio <brettg@posteo.net> wrote:
> How about update-desktop-database?
Don't do update-desktop-database at all. If the build system tries to do it,
prevent it from doing so.
The reason is that the desktop database is a shared database (shared by
multiple packages) and thus it is updated by a profile hook (which puts
the database into the profile).
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2018-10-10 21:10 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-10 19:24 glib-compiler-resources Brett Gilio
2018-10-10 19:29 ` glib-compiler-resources Tobias Geerinckx-Rice
2018-10-10 19:46 ` glib-compiler-resources Brett Gilio
2018-10-10 19:53 ` glib-compiler-resources Leo Famulari
2018-10-10 19:57 ` glib-compiler-resources Tobias Geerinckx-Rice
2018-10-10 19:59 ` glib-compiler-resources Tobias Geerinckx-Rice
2018-10-10 21:10 ` glib-compiler-resources Danny Milosavljevic
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.