GNU bug report logs - #24442
gettext: No PO mode for Emacs (or wrong description)

Previous Next

Package: guix;

Reported by: Ivan Vilata i Balaguer <ivan <at> selidor.net>

Date: Thu, 15 Sep 2016 07:05:01 UTC

Severity: normal

Done: ludo <at> gnu.org (Ludovic Courtès)

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 24442 in the body.
You can then email your comments to 24442 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-guix <at> gnu.org:
bug#24442; Package guix. (Thu, 15 Sep 2016 07:05:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Ivan Vilata i Balaguer <ivan <at> selidor.net>:
New bug report received and forwarded. Copy sent to bug-guix <at> gnu.org. (Thu, 15 Sep 2016 07:05:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Ivan Vilata i Balaguer <ivan <at> selidor.net>
To: bug-guix <at> gnu.org
Subject: gettext: No PO mode for Emacs (or wrong description)
Date: Thu, 15 Sep 2016 09:04:26 +0200
The description for ``gettext <at> 0.19.8`` (current) includes this sentence:

    It provides translators with the means to create message catalogs,
    as well as an Emacs mode to work with them, and a runtime library to
    load translated messages from the catalogs.

However, no output of the package includes the files for Emacs.

One solution (please note that I'm very new to Guix) may be to provide
an output for the Emacs goodies, another one would be removing the
reference to the Emacs mode in the description until it's actually
there.`;)`

Thanks!
-- 
Ivan Vilata i Balaguer -- https://elvil.net/




Information forwarded to bug-guix <at> gnu.org:
bug#24442; Package guix. (Mon, 19 Sep 2016 08:59:02 GMT) Full text and rfc822 format available.

Message #8 received at 24442 <at> debbugs.gnu.org (full text, mbox):

From: Alex Kost <alezost <at> gmail.com>
To: Ivan Vilata i Balaguer <ivan <at> selidor.net>
Cc: 24442 <at> debbugs.gnu.org
Subject: Re: bug#24442: gettext: No PO mode for Emacs (or wrong description)
Date: Mon, 19 Sep 2016 11:58:12 +0300
Ivan Vilata i Balaguer (2016-09-15 09:04 +0200) wrote:

> The description for ``gettext <at> 0.19.8`` (current) includes this sentence:
>
>     It provides translators with the means to create message catalogs,
>     as well as an Emacs mode to work with them, and a runtime library to
>     load translated messages from the catalogs.
>
> However, no output of the package includes the files for Emacs.

Thanks for the report!  This happens because there is no emacs
dependency (input) in 'gettext' package definition, so Emacs is not
found during 'configure' phase (as can be seen in the log¹: «checking
for emacs... no»), so elisp files are not compiled and installed.

I would say this can simply be fixed by adding:

  (native-inputs `(("emacs" ,emacs-minimal)))

to the gettext package definition (also (gnu packages emacs) module
should be used), and I checked it by making a variant of the gettext
package with this line; however when I tried it on a real gettext
package, I saw that a whole world will be rebuilt (apparently it is a
'core-updates' thing).  And I realized that emacs (even its minimal
variant) will probably be a too heavy dependency for such a core thing.

So perhaps it is time to make 'gettext-minimal' and to use it as the
dependency for other packages and 'gettext' (with Emacs tools) intended
to be installed by users (as it is done for bash/bash-minimal).  WDYT?
(this is a question for Guix developers)

> One solution (please note that I'm very new to Guix) may be to provide
> an output for the Emacs goodies, another one would be removing the
> reference to the Emacs mode in the description until it's actually
> there.`;)`

I think a special output is not needed, as the resulting *.el[c] files
weigh much less than 1MB.

¹ http://hydra.gnu.org/log/1zxiq8gq3gs29j0gha5ciyklfafkkrmd-gettext-0.19.8

-- 
Alex




Information forwarded to bug-guix <at> gnu.org:
bug#24442; Package guix. (Sat, 24 Sep 2016 02:32:02 GMT) Full text and rfc822 format available.

Message #11 received at 24442 <at> debbugs.gnu.org (full text, mbox):

From: ludo <at> gnu.org (Ludovic Courtès)
To: Alex Kost <alezost <at> gmail.com>
Cc: 24442 <at> debbugs.gnu.org, Ivan Vilata i Balaguer <ivan <at> selidor.net>
Subject: Re: bug#24442: gettext: No PO mode for Emacs (or wrong description)
Date: Sat, 24 Sep 2016 10:55:35 +0900
Hi!

Alex Kost <alezost <at> gmail.com> skribis:

> Ivan Vilata i Balaguer (2016-09-15 09:04 +0200) wrote:
>
>> The description for ``gettext <at> 0.19.8`` (current) includes this sentence:
>>
>>     It provides translators with the means to create message catalogs,
>>     as well as an Emacs mode to work with them, and a runtime library to
>>     load translated messages from the catalogs.
>>
>> However, no output of the package includes the files for Emacs.
>
> Thanks for the report!  This happens because there is no emacs
> dependency (input) in 'gettext' package definition, so Emacs is not
> found during 'configure' phase (as can be seen in the log¹: «checking
> for emacs... no»), so elisp files are not compiled and installed.
>
> I would say this can simply be fixed by adding:
>
>   (native-inputs `(("emacs" ,emacs-minimal)))
>
> to the gettext package definition (also (gnu packages emacs) module
> should be used), and I checked it by making a variant of the gettext
> package with this line; however when I tried it on a real gettext
> package, I saw that a whole world will be rebuilt (apparently it is a
> 'core-updates' thing).  And I realized that emacs (even its minimal
> variant) will probably be a too heavy dependency for such a core thing.
>
> So perhaps it is time to make 'gettext-minimal' and to use it as the
> dependency for other packages and 'gettext' (with Emacs tools) intended
> to be installed by users (as it is done for bash/bash-minimal).  WDYT?
> (this is a question for Guix developers)

I think it’s a good idea; in commencement.scm, we’ll need to inherit
from gettext-minimal to avoid the Emacs dependency.

Most of the packages that currently depend on gettext will have to be
changed to gettext-minimal, as you wrote.

When that it’s done, we can happily add all sorts of dependencies to
gettext, including additional languages for which it provides bindings.

Sounds like a plan no?

Another option would be to hack a phase that copies the .el files to the
output, without compiling them, but I don’t think it’s as nice as the
above plan.

Thanks,
Ludo’.




Information forwarded to bug-guix <at> gnu.org:
bug#24442; Package guix. (Sun, 25 Sep 2016 08:10:02 GMT) Full text and rfc822 format available.

Message #14 received at 24442 <at> debbugs.gnu.org (full text, mbox):

From: Alex Kost <alezost <at> gmail.com>
To: ludo <at> gnu.org (Ludovic Courtès)
Cc: 24442 <at> debbugs.gnu.org
Subject: Re: bug#24442: gettext: No PO mode for Emacs (or wrong description)
Date: Sun, 25 Sep 2016 11:09:44 +0300
Ludovic Courtès (2016-09-24 10:55 +0900) wrote:

> Hi!
>
> Alex Kost <alezost <at> gmail.com> skribis:
>
>> Ivan Vilata i Balaguer (2016-09-15 09:04 +0200) wrote:
>>
>>> The description for ``gettext <at> 0.19.8`` (current) includes this sentence:
>>>
>>>     It provides translators with the means to create message catalogs,
>>>     as well as an Emacs mode to work with them, and a runtime library to
>>>     load translated messages from the catalogs.
>>>
>>> However, no output of the package includes the files for Emacs.
>>
>> Thanks for the report!  This happens because there is no emacs
>> dependency (input) in 'gettext' package definition, so Emacs is not
>> found during 'configure' phase (as can be seen in the log¹: «checking
>> for emacs... no»), so elisp files are not compiled and installed.
>>
>> I would say this can simply be fixed by adding:
>>
>>   (native-inputs `(("emacs" ,emacs-minimal)))
>>
>> to the gettext package definition (also (gnu packages emacs) module
>> should be used), and I checked it by making a variant of the gettext
>> package with this line; however when I tried it on a real gettext
>> package, I saw that a whole world will be rebuilt (apparently it is a
>> 'core-updates' thing).  And I realized that emacs (even its minimal
>> variant) will probably be a too heavy dependency for such a core thing.
>>
>> So perhaps it is time to make 'gettext-minimal' and to use it as the
>> dependency for other packages and 'gettext' (with Emacs tools) intended
>> to be installed by users (as it is done for bash/bash-minimal).  WDYT?
>> (this is a question for Guix developers)
>
> I think it’s a good idea; in commencement.scm, we’ll need to inherit
> from gettext-minimal to avoid the Emacs dependency.
>
> Most of the packages that currently depend on gettext will have to be
> changed to gettext-minimal, as you wrote.
>
> When that it’s done, we can happily add all sorts of dependencies to
> gettext, including additional languages for which it provides bindings.
>
> Sounds like a plan no?

Yes, I'm sending 2 patches to guix-devel for adding 'gettext-minimal'
and for adding missing *.el files to 'gettext'.

> Another option would be to hack a phase that copies the .el files to the
> output, without compiling them, but I don’t think it’s as nice as the
> above plan.

I agree, it doesn't look so nice.

-- 
Alex




Information forwarded to bug-guix <at> gnu.org:
bug#24442; Package guix. (Thu, 29 Sep 2016 08:04:01 GMT) Full text and rfc822 format available.

Message #17 received at 24442 <at> debbugs.gnu.org (full text, mbox):

From: Alex Kost <alezost <at> gmail.com>
To: Ivan Vilata i Balaguer <ivan <at> selidor.net>
Cc: 24442 <at> debbugs.gnu.org
Subject: Re: bug#24442: gettext: No PO mode for Emacs (or wrong description)
Date: Thu, 29 Sep 2016 11:03:41 +0300
Ivan Vilata i Balaguer (2016-09-15 09:04 +0200) wrote:

> The description for ``gettext <at> 0.19.8`` (current) includes this sentence:
>
>     It provides translators with the means to create message catalogs,
>     as well as an Emacs mode to work with them, and a runtime library to
>     load translated messages from the catalogs.
>
> However, no output of the package includes the files for Emacs.

This is fixed in 'core-updates' branch now:
<http://git.savannah.gnu.org/cgit/guix.git/commit/?id=9e01589469abd89e035450d29026f0e14add6801>,
however since the fix is not available for users (until core-updates
will be merged into master) I think it's better to leave this bug
opened.

Once the fix appears in 'master' (I will let you know when it happens),
a user could do "guix pull" and install (or update) 'gettext' in his/her
profile.  Then 'po-mode' will become available by default (without any
additional settings in user's .emacs), it means that whenever you will
open .po file, 'po-mode' will be loaded and enabled automatically.

-- 
Alex




Information forwarded to bug-guix <at> gnu.org:
bug#24442; Package guix. (Thu, 29 Sep 2016 11:16:01 GMT) Full text and rfc822 format available.

Message #20 received at 24442 <at> debbugs.gnu.org (full text, mbox):

From: Ivan Vilata i Balaguer <ivan <at> selidor.net>
To: Alex Kost <alezost <at> gmail.com>
Cc: 24442 <at> debbugs.gnu.org, Ivan Vilata i Balaguer <ivan <at> selidor.net>
Subject: Re: bug#24442: gettext: No PO mode for Emacs (or wrong description)
Date: Thu, 29 Sep 2016 13:15:45 +0200
Alex Kost (2016-09-29 11:03:41 +0300) wrote:

> Ivan Vilata i Balaguer (2016-09-15 09:04 +0200) wrote:
> 
> > The description for ``gettext <at> 0.19.8`` (current) includes this sentence:
> >
> >     It provides translators with the means to create message
> >     catalogs, as well as an Emacs mode to work with them, and a
> >     runtime library to load translated messages from the catalogs.
> >
> > However, no output of the package includes the files for Emacs.
> 
> This is fixed in 'core-updates' branch now:
> <http://git.savannah.gnu.org/cgit/guix.git/commit/?id=9e01589469abd89e035450d29026f0e14add6801>,
> however since the fix is not available for users (until core-updates
> will be merged into master) I think it's better to leave this bug
> opened.
> 
> Once the fix appears in 'master' (I will let you know when it
> happens), a user could do "guix pull" and install (or update)
> 'gettext' in his/her profile.  Then 'po-mode' will become available by
> default (without any additional settings in user's .emacs), it means
> that whenever you will open .po file, 'po-mode' will be loaded and
> enabled automatically.

Impressive, thanks a lot to everyone!

-- 
Ivan Vilata i Balaguer -- https://elvil.net/




Information forwarded to bug-guix <at> gnu.org:
bug#24442; Package guix. (Thu, 17 Nov 2016 14:57:01 GMT) Full text and rfc822 format available.

Message #23 received at 24442 <at> debbugs.gnu.org (full text, mbox):

From: Ivan Vilata i Balaguer <ivan <at> selidor.net>
To: Ivan Vilata i Balaguer <ivan <at> selidor.net>
Cc: Alex Kost <alezost <at> gmail.com>, 24442 <at> debbugs.gnu.org
Subject: Re: bug#24442: gettext: No PO mode for Emacs (or wrong description)
Date: Thu, 17 Nov 2016 15:56:55 +0100
Ivan Vilata i Balaguer (2016-09-29 13:15:45 +0200) wrote:

> Alex Kost (2016-09-29 11:03:41 +0300) wrote:
> 
> > Ivan Vilata i Balaguer (2016-09-15 09:04 +0200) wrote:
> > 
> > > The description for ``gettext <at> 0.19.8`` (current) includes this sentence:
> > >
> > >     It provides translators with the means to create message
> > >     catalogs, as well as an Emacs mode to work with them, and a
> > >     runtime library to load translated messages from the catalogs.
> > >
> > > However, no output of the package includes the files for Emacs.
> > 
> > This is fixed in 'core-updates' branch now:
> > <http://git.savannah.gnu.org/cgit/guix.git/commit/?id=9e01589469abd89e035450d29026f0e14add6801>,
> > however since the fix is not available for users (until core-updates
> > will be merged into master) I think it's better to leave this bug
> > opened.
> > 
> > Once the fix appears in 'master' (I will let you know when it
> > happens), a user could do "guix pull" and install (or update)
> > 'gettext' in his/her profile.  Then 'po-mode' will become available
> > by default (without any additional settings in user's .emacs), it
> > means that whenever you will open .po file, 'po-mode' will be loaded
> > and enabled automatically.
> 
> Impressive, thanks a lot to everyone!

Working like a charm since the last upgrade, thank you!

-- 
Ivan Vilata i Balaguer -- https://elvil.net/




Reply sent to ludo <at> gnu.org (Ludovic Courtès):
You have taken responsibility. (Fri, 18 Nov 2016 09:37:01 GMT) Full text and rfc822 format available.

Notification sent to Ivan Vilata i Balaguer <ivan <at> selidor.net>:
bug acknowledged by developer. (Fri, 18 Nov 2016 09:37:01 GMT) Full text and rfc822 format available.

Message #28 received at 24442-done <at> debbugs.gnu.org (full text, mbox):

From: ludo <at> gnu.org (Ludovic Courtès)
To: Ivan Vilata i Balaguer <ivan <at> selidor.net>
Cc: Alex Kost <alezost <at> gmail.com>, 24442-done <at> debbugs.gnu.org
Subject: Re: bug#24442: gettext: No PO mode for Emacs (or wrong description)
Date: Fri, 18 Nov 2016 10:36:20 +0100
Ivan Vilata i Balaguer <ivan <at> selidor.net> skribis:

> Ivan Vilata i Balaguer (2016-09-29 13:15:45 +0200) wrote:
>
>> Alex Kost (2016-09-29 11:03:41 +0300) wrote:
>> 
>> > Ivan Vilata i Balaguer (2016-09-15 09:04 +0200) wrote:
>> > 
>> > > The description for ``gettext <at> 0.19.8`` (current) includes this sentence:
>> > >
>> > >     It provides translators with the means to create message
>> > >     catalogs, as well as an Emacs mode to work with them, and a
>> > >     runtime library to load translated messages from the catalogs.
>> > >
>> > > However, no output of the package includes the files for Emacs.
>> > 
>> > This is fixed in 'core-updates' branch now:
>> > <http://git.savannah.gnu.org/cgit/guix.git/commit/?id=9e01589469abd89e035450d29026f0e14add6801>,
>> > however since the fix is not available for users (until core-updates
>> > will be merged into master) I think it's better to leave this bug
>> > opened.
>> > 
>> > Once the fix appears in 'master' (I will let you know when it
>> > happens), a user could do "guix pull" and install (or update)
>> > 'gettext' in his/her profile.  Then 'po-mode' will become available
>> > by default (without any additional settings in user's .emacs), it
>> > means that whenever you will open .po file, 'po-mode' will be loaded
>> > and enabled automatically.
>> 
>> Impressive, thanks a lot to everyone!
>
> Working like a charm since the last upgrade, thank you!

Indeed, closing!

Ludo’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 16 Dec 2016 12:24:03 GMT) Full text and rfc822 format available.

This bug report was last modified 7 years and 138 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.