unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#21879: WeeChat does not start
@ 2015-11-11 14:06 Luis Felipe López Acevedo
  2015-11-12 12:18 ` Cyril Roelandt
                   ` (3 more replies)
  0 siblings, 4 replies; 21+ messages in thread
From: Luis Felipe López Acevedo @ 2015-11-11 14:06 UTC (permalink / raw)
  To: 21879

Hi,

I installed WeeChat 1.3 using Guix 0.9.0 on Debian 8, but It doesn't
start when I run it. I get this error instead:

Traceback (most recent call last):
  File "/usr/lib/python2.7/site.py", line 563, in <module>
    main()
  File "/usr/lib/python2.7/site.py", line 545, in main
    known_paths = addusersitepackages(known_paths)
  File "/usr/lib/python2.7/site.py", line 272, in addusersitepackages
    user_site = getusersitepackages()
  File "/usr/lib/python2.7/site.py", line 247, in getusersitepackages
    user_base = getuserbase() # this will also set USER_BASE
  File "/usr/lib/python2.7/site.py", line 237, in getuserbase
    USER_BASE = get_config_var('userbase')
  File "/usr/lib/python2.7/sysconfig.py", line 582, in get_config_var
    return get_config_vars().get(name)
  File "/usr/lib/python2.7/sysconfig.py", line 528, in get_config_vars
    _init_posix(_CONFIG_VARS)
  File "/usr/lib/python2.7/sysconfig.py", line 412, in _init_posix
    from _sysconfigdata import build_time_vars
  File "/usr/lib/python2.7/_sysconfigdata.py", line 6, in <module>
    from _sysconfigdata_nd import *
ImportError: No module named _sysconfigdata_nd

Thanks,


-- 
Luis Felipe López Acevedo

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

* bug#21879: WeeChat does not start
  2015-11-11 14:06 bug#21879: WeeChat does not start Luis Felipe López Acevedo
@ 2015-11-12 12:18 ` Cyril Roelandt
  2015-11-18 17:06 ` Ludovic Courtès
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 21+ messages in thread
From: Cyril Roelandt @ 2015-11-12 12:18 UTC (permalink / raw)
  To: 21879

On 11/11/2015 03:06 PM, Luis Felipe López Acevedo wrote:
> Hi,
> 
> I installed WeeChat 1.3 using Guix 0.9.0 on Debian 8, but It doesn't
> start when I run it. I get this error instead:
> 
> Traceback (most recent call last):
>   File "/usr/lib/python2.7/site.py", line 563, in <module>
>     main()
>   File "/usr/lib/python2.7/site.py", line 545, in main
>     known_paths = addusersitepackages(known_paths)
>   File "/usr/lib/python2.7/site.py", line 272, in addusersitepackages
>     user_site = getusersitepackages()
>   File "/usr/lib/python2.7/site.py", line 247, in getusersitepackages
>     user_base = getuserbase() # this will also set USER_BASE
>   File "/usr/lib/python2.7/site.py", line 237, in getuserbase
>     USER_BASE = get_config_var('userbase')
>   File "/usr/lib/python2.7/sysconfig.py", line 582, in get_config_var
>     return get_config_vars().get(name)
>   File "/usr/lib/python2.7/sysconfig.py", line 528, in get_config_vars
>     _init_posix(_CONFIG_VARS)
>   File "/usr/lib/python2.7/sysconfig.py", line 412, in _init_posix
>     from _sysconfigdata import build_time_vars
>   File "/usr/lib/python2.7/_sysconfigdata.py", line 6, in <module>
>     from _sysconfigdata_nd import *
> ImportError: No module named _sysconfigdata_nd
> 

Seems like you are using weechat from Guix using Python 2.7 from Debian,
which is a bit weird. Also, _sysconfigdata_nd is Debian-specific. What
is your PYTHONPATH?

Cyril.

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

* bug#21879: WeeChat does not start
  2015-11-11 14:06 bug#21879: WeeChat does not start Luis Felipe López Acevedo
  2015-11-12 12:18 ` Cyril Roelandt
@ 2015-11-18 17:06 ` Ludovic Courtès
  2015-11-18 20:05   ` Luis Felipe López Acevedo
  2017-02-09  0:05 ` Marius Bakke
  2017-02-25 14:13 ` sirgazil
  3 siblings, 1 reply; 21+ messages in thread
From: Ludovic Courtès @ 2015-11-18 17:06 UTC (permalink / raw)
  To: Luis Felipe López Acevedo; +Cc: 21879

Hi!

Luis Felipe López Acevedo <felipe.lopez@openmailbox.org> skribis:

> I installed WeeChat 1.3 using Guix 0.9.0 on Debian 8, but It doesn't
> start when I run it. I get this error instead:
>
> Traceback (most recent call last):
>   File "/usr/lib/python2.7/site.py", line 563, in <module>
>     main()

On closer inspection, this comes from the fact that Weechat looks for a
‘python’ executable in $PATH.  See src/plugins/python/weechat-python.c
in Weechat.

In your case, it ended up running Debian’s Python, which then failed for
reasons that are unclear to me.

I believe this is fixed by a9346fa and 7be4a4b.  Could you confirm?
You could run ‘guix pull’ or pull from a current ‘master’ checkout.

Thanks,
Ludo’.

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

* bug#21879: WeeChat does not start
  2015-11-18 17:06 ` Ludovic Courtès
@ 2015-11-18 20:05   ` Luis Felipe López Acevedo
  2015-11-18 20:44     ` Cyril Roelandt
  0 siblings, 1 reply; 21+ messages in thread
From: Luis Felipe López Acevedo @ 2015-11-18 20:05 UTC (permalink / raw)
  To: ludo; +Cc: 21879

On 2015-11-18 12:06, ludo@gnu.org wrote:
> Hi!
> 
> Luis Felipe López Acevedo <felipe.lopez@openmailbox.org> skribis:
> 
>> I installed WeeChat 1.3 using Guix 0.9.0 on Debian 8, but It doesn't
>> start when I run it. I get this error instead:
>> 
>> Traceback (most recent call last):
>>   File "/usr/lib/python2.7/site.py", line 563, in <module>
>>     main()
> 
> On closer inspection, this comes from the fact that Weechat looks for a
> ‘python’ executable in $PATH.  See src/plugins/python/weechat-python.c
> in Weechat.
> 
> In your case, it ended up running Debian’s Python, which then failed 
> for
> reasons that are unclear to me.
> 
> I believe this is fixed by a9346fa and 7be4a4b.  Could you confirm?
> You could run ‘guix pull’ or pull from a current ‘master’ checkout.


In a different machine, but still Debian 8 and Guix 0.9.0:

1. I ran 'guix pull'
2. Installed weechat

I get the same error.


-- 
Luis Felipe López Acevedo
http://sirgazil.bitbucket.org/

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

* bug#21879: WeeChat does not start
  2015-11-18 20:05   ` Luis Felipe López Acevedo
@ 2015-11-18 20:44     ` Cyril Roelandt
  2015-11-18 21:22       ` Ludovic Courtès
  0 siblings, 1 reply; 21+ messages in thread
From: Cyril Roelandt @ 2015-11-18 20:44 UTC (permalink / raw)
  To: 21879

On 11/18/2015 09:05 PM, Luis Felipe López Acevedo wrote:
> In a different machine, but still Debian 8 and Guix 0.9.0:
> 
> 1. I ran 'guix pull'
> 2. Installed weechat
> 
> I get the same error.

On Debian Sid + Guix, I installed weechat in a "guix environment", and
could not reproduce the issue (weechat properly starts). However,
running "PATH=/usr/bin:$PATH weechat" leads to the same error you witnessed.

Could you post you PATH and PYTHONPATH?

Cyril.

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

* bug#21879: WeeChat does not start
  2015-11-18 20:44     ` Cyril Roelandt
@ 2015-11-18 21:22       ` Ludovic Courtès
  2015-11-18 21:41         ` Cyril Roelandt
  0 siblings, 1 reply; 21+ messages in thread
From: Ludovic Courtès @ 2015-11-18 21:22 UTC (permalink / raw)
  To: Cyril Roelandt; +Cc: 21879

Cyril Roelandt <tipecaml@gmail.com> skribis:

> On 11/18/2015 09:05 PM, Luis Felipe López Acevedo wrote:
>> In a different machine, but still Debian 8 and Guix 0.9.0:
>> 
>> 1. I ran 'guix pull'
>> 2. Installed weechat
>> 
>> I get the same error.
>
> On Debian Sid + Guix, I installed weechat in a "guix environment", and
> could not reproduce the issue (weechat properly starts). However,
> running "PATH=/usr/bin:$PATH weechat" leads to the same error you witnessed.
>
> Could you post you PATH and PYTHONPATH?

Could you double-check what’s happening, possibly running it through
strace to see if it’s actually executing /usr/bin/python?

Maybe my attempt was misguided and the problem is actually not in the
Python plugin but in some core part?

Thanks,
Ludo’.

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

* bug#21879: WeeChat does not start
  2015-11-18 21:22       ` Ludovic Courtès
@ 2015-11-18 21:41         ` Cyril Roelandt
  2015-11-19  9:41           ` Ludovic Courtès
  2015-11-29 11:01           ` Ludovic Courtès
  0 siblings, 2 replies; 21+ messages in thread
From: Cyril Roelandt @ 2015-11-18 21:41 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 21879

On 11/18/2015 10:22 PM, Ludovic Courtès wrote:
> Could you double-check what’s happening, possibly running it through
> strace to see if it’s actually executing /usr/bin/python?

I'm pretty sure it does that. It even loads libraries from the Debian
Python path, that is why it tries to import a Debian-specific module.

Cyril.

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

* bug#21879: WeeChat does not start
  2015-11-18 21:41         ` Cyril Roelandt
@ 2015-11-19  9:41           ` Ludovic Courtès
  2015-11-29 11:01           ` Ludovic Courtès
  1 sibling, 0 replies; 21+ messages in thread
From: Ludovic Courtès @ 2015-11-19  9:41 UTC (permalink / raw)
  To: Cyril Roelandt; +Cc: 21879

Cyril Roelandt <tipecaml@gmail.com> skribis:

> On 11/18/2015 10:22 PM, Ludovic Courtès wrote:
>> Could you double-check what’s happening, possibly running it through
>> strace to see if it’s actually executing /usr/bin/python?
>
> I'm pretty sure it does that. It even loads libraries from the Debian
> Python path, that is why it tries to import a Debian-specific module.

Weird.  Could you check with strace and/or GDB to confirm and see where
it’s coming from?

When I run it through strace, I don’t see any attempt to exec python.

TIA.  :-)
Ludo’.

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

* bug#21879: WeeChat does not start
  2015-11-18 21:41         ` Cyril Roelandt
  2015-11-19  9:41           ` Ludovic Courtès
@ 2015-11-29 11:01           ` Ludovic Courtès
  2015-11-29 14:12             ` Luis Felipe López Acevedo
  1 sibling, 1 reply; 21+ messages in thread
From: Ludovic Courtès @ 2015-11-29 11:01 UTC (permalink / raw)
  To: Cyril Roelandt; +Cc: Luis Felipe López Acevedo, 21879

Cyril Roelandt <tipecaml@gmail.com> skribis:

> On 11/18/2015 10:22 PM, Ludovic Courtès wrote:
>> Could you double-check what’s happening, possibly running it through
>> strace to see if it’s actually executing /usr/bin/python?
>
> I'm pretty sure it does that. It even loads libraries from the Debian
> Python path, that is why it tries to import a Debian-specific module.

I tried this:

  guix environment --container --ad-hoc weechat strace coreutils \
     findutils sed grep less --expose=$(which false)=/usr/bin/python

which installs ‘false’ as /usr/bin/python, but it still works fine.

Felipe, could you report the values of the ‘PYTHONPATH’, ‘PATH’, and
‘LD_LIBRARY_PATH’ variables on your system?

Are you able to work around the problem with:

  guix environment --ad-hoc weechat --pure -- weechat

?

TIA,
Ludo’.

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

* bug#21879: WeeChat does not start
  2015-11-29 11:01           ` Ludovic Courtès
@ 2015-11-29 14:12             ` Luis Felipe López Acevedo
  2015-11-29 15:00               ` Ludovic Courtès
  0 siblings, 1 reply; 21+ messages in thread
From: Luis Felipe López Acevedo @ 2015-11-29 14:12 UTC (permalink / raw)
  To: ludo; +Cc: 21879

On 2015-11-29 06:01, ludo@gnu.org wrote:
> Cyril Roelandt <tipecaml@gmail.com> skribis:
> 
>> On 11/18/2015 10:22 PM, Ludovic Courtès wrote:
>>> Could you double-check what’s happening, possibly running it through
>>> strace to see if it’s actually executing /usr/bin/python?
>> 
>> I'm pretty sure it does that. It even loads libraries from the Debian
>> Python path, that is why it tries to import a Debian-specific module.
> 
> I tried this:
> 
>   guix environment --container --ad-hoc weechat strace coreutils \
>      findutils sed grep less --expose=$(which false)=/usr/bin/python
> 
> which installs ‘false’ as /usr/bin/python, but it still works fine.
> 
> Felipe, could you report the values of the ‘PYTHONPATH’, ‘PATH’, and
> ‘LD_LIBRARY_PATH’ variables on your system?
> 

Oh, I didn't get Cyril's messages on the bug... But this is the 
information:

PYTHONPATH and LD_LIBRARY_PATH are empty. PATH has this value:

/home/anonimo/.guix-profile/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games

Additional info:

$ guix package --search-paths
export PATH="/home/anonimo/.guix-profile/bin"


> Are you able to work around the problem with:
> 
>   guix environment --ad-hoc weechat --pure -- weechat
> 
> ?

WeeChat starts correctly if I run it that way.



-- 
Luis Felipe López Acevedo
http://sirgazil.bitbucket.org/

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

* bug#21879: WeeChat does not start
  2015-11-29 14:12             ` Luis Felipe López Acevedo
@ 2015-11-29 15:00               ` Ludovic Courtès
  2015-11-29 15:44                 ` Luis Felipe López Acevedo
  0 siblings, 1 reply; 21+ messages in thread
From: Ludovic Courtès @ 2015-11-29 15:00 UTC (permalink / raw)
  To: Luis Felipe López Acevedo; +Cc: 21879

Luis Felipe López Acevedo <felipe.lopez@openmailbox.org> skribis:

> On 2015-11-29 06:01, ludo@gnu.org wrote:

[...]

>> Felipe, could you report the values of the ‘PYTHONPATH’, ‘PATH’, and
>> ‘LD_LIBRARY_PATH’ variables on your system?
>>
>
> Oh, I didn't get Cyril's messages on the bug... But this is the
> information:
>
> PYTHONPATH and LD_LIBRARY_PATH are empty. PATH has this value:
>
> /home/anonimo/.guix-profile/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
>
> Additional info:
>
> $ guix package --search-paths
> export PATH="/home/anonimo/.guix-profile/bin"
>
>
>> Are you able to work around the problem with:
>>
>>   guix environment --ad-hoc weechat --pure -- weechat
>>
>> ?
>
> WeeChat starts correctly if I run it that way.

What if you do:

  guix package -i python-2
  weechat

?

TIA,
Ludo’.

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

* bug#21879: WeeChat does not start
  2015-11-29 15:00               ` Ludovic Courtès
@ 2015-11-29 15:44                 ` Luis Felipe López Acevedo
  2015-11-29 18:20                   ` Ludovic Courtès
  0 siblings, 1 reply; 21+ messages in thread
From: Luis Felipe López Acevedo @ 2015-11-29 15:44 UTC (permalink / raw)
  To: ludo; +Cc: 21879

On 2015-11-29 10:00, ludo@gnu.org wrote:
> Luis Felipe López Acevedo <felipe.lopez@openmailbox.org> skribis:
> 
>> On 2015-11-29 06:01, ludo@gnu.org wrote:
> 
> [...]
> 
>>> Felipe, could you report the values of the ‘PYTHONPATH’, ‘PATH’, and
>>> ‘LD_LIBRARY_PATH’ variables on your system?
>>> 
>> 
>> Oh, I didn't get Cyril's messages on the bug... But this is the
>> information:
>> 
>> PYTHONPATH and LD_LIBRARY_PATH are empty. PATH has this value:
>> 
>> /home/anonimo/.guix-profile/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
>> 
>> Additional info:
>> 
>> $ guix package --search-paths
>> export PATH="/home/anonimo/.guix-profile/bin"
>> 
>> 
>>> Are you able to work around the problem with:
>>> 
>>>   guix environment --ad-hoc weechat --pure -- weechat
>>> 
>>> ?
>> 
>> WeeChat starts correctly if I run it that way.
> 
> What if you do:
> 
>   guix package -i python-2
>   weechat
> 

WeeChat starts correctly after doing that.


-- 
Luis Felipe López Acevedo
http://sirgazil.bitbucket.org/

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

* bug#21879: WeeChat does not start
  2015-11-29 15:44                 ` Luis Felipe López Acevedo
@ 2015-11-29 18:20                   ` Ludovic Courtès
  2015-12-05 14:20                     ` Luis Felipe López Acevedo
  0 siblings, 1 reply; 21+ messages in thread
From: Ludovic Courtès @ 2015-11-29 18:20 UTC (permalink / raw)
  To: Luis Felipe López Acevedo; +Cc: 21879

Luis Felipe López Acevedo <felipe.lopez@openmailbox.org> skribis:

> On 2015-11-29 10:00, ludo@gnu.org wrote:
>> Luis Felipe López Acevedo <felipe.lopez@openmailbox.org> skribis:
>>
>>> On 2015-11-29 06:01, ludo@gnu.org wrote:
>>
>> [...]
>>
>>>> Felipe, could you report the values of the ‘PYTHONPATH’, ‘PATH’, and
>>>> ‘LD_LIBRARY_PATH’ variables on your system?
>>>>
>>>
>>> Oh, I didn't get Cyril's messages on the bug... But this is the
>>> information:
>>>
>>> PYTHONPATH and LD_LIBRARY_PATH are empty. PATH has this value:
>>>
>>> /home/anonimo/.guix-profile/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
>>>
>>> Additional info:
>>>
>>> $ guix package --search-paths
>>> export PATH="/home/anonimo/.guix-profile/bin"
>>>
>>>
>>>> Are you able to work around the problem with:
>>>>
>>>>   guix environment --ad-hoc weechat --pure -- weechat
>>>>
>>>> ?
>>>
>>> WeeChat starts correctly if I run it that way.
>>
>> What if you do:
>>
>>   guix package -i python-2
>>   weechat
>>
>
> WeeChat starts correctly after doing that.

Hmm, hmm!  In commit cb7bd0c, I fixed a build issue with the Python
plugin (it was statically linking libpython.a, which is undesirable.)

Could you check if that makes a difference, removing Python from your
profile?

Thanks for your help!

Ludo’.

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

* bug#21879: WeeChat does not start
  2015-11-29 18:20                   ` Ludovic Courtès
@ 2015-12-05 14:20                     ` Luis Felipe López Acevedo
  0 siblings, 0 replies; 21+ messages in thread
From: Luis Felipe López Acevedo @ 2015-12-05 14:20 UTC (permalink / raw)
  To: ludo; +Cc: 21879

On 2015-11-29 13:20, ludo@gnu.org wrote:
> Luis Felipe López Acevedo <felipe.lopez@openmailbox.org> skribis:
> 
>> On 2015-11-29 10:00, ludo@gnu.org wrote:
>>> Luis Felipe López Acevedo <felipe.lopez@openmailbox.org> skribis:
>>> 
>>>> On 2015-11-29 06:01, ludo@gnu.org wrote:
>>> 
>>> [...]
>>> 
>>>>> Felipe, could you report the values of the ‘PYTHONPATH’, ‘PATH’, 
>>>>> and
>>>>> ‘LD_LIBRARY_PATH’ variables on your system?
>>>>> 
>>>> 
>>>> Oh, I didn't get Cyril's messages on the bug... But this is the
>>>> information:
>>>> 
>>>> PYTHONPATH and LD_LIBRARY_PATH are empty. PATH has this value:
>>>> 
>>>> /home/anonimo/.guix-profile/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
>>>> 
>>>> Additional info:
>>>> 
>>>> $ guix package --search-paths
>>>> export PATH="/home/anonimo/.guix-profile/bin"
>>>> 
>>>> 
>>>>> Are you able to work around the problem with:
>>>>> 
>>>>>   guix environment --ad-hoc weechat --pure -- weechat
>>>>> 
>>>>> ?
>>>> 
>>>> WeeChat starts correctly if I run it that way.
>>> 
>>> What if you do:
>>> 
>>>   guix package -i python-2
>>>   weechat
>>> 
>> 
>> WeeChat starts correctly after doing that.
> 
> Hmm, hmm!  In commit cb7bd0c, I fixed a build issue with the Python
> plugin (it was statically linking libpython.a, which is undesirable.)
> 
> Could you check if that makes a difference, removing Python from your
> profile?
> 
> Thanks for your help!
> 
> Ludo’.


- Removed Python and WeeChat from my profile.
- Did guix pull.
- Reinstalled WeeChat.

The error persists.


-- 
Luis Felipe López Acevedo
http://sirgazil.bitbucket.org/

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

* bug#21879: WeeChat does not start
  2015-11-11 14:06 bug#21879: WeeChat does not start Luis Felipe López Acevedo
  2015-11-12 12:18 ` Cyril Roelandt
  2015-11-18 17:06 ` Ludovic Courtès
@ 2017-02-09  0:05 ` Marius Bakke
  2017-02-10 12:52   ` Ludovic Courtès
  2017-02-25 14:13 ` sirgazil
  3 siblings, 1 reply; 21+ messages in thread
From: Marius Bakke @ 2017-02-09  0:05 UTC (permalink / raw)
  To: 21879

[-- Attachment #1: Type: text/plain, Size: 286 bytes --]

I noticed this as well on a foreign distro and pushed a workaround in
507809be152049dff26bffdb58e1a90b638f046b.

Didn't study the source enough to figure out why the substitution was
insufficient, but strace confirmed it was still looking in PATH even
though the strings were replaced.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* bug#21879: WeeChat does not start
  2017-02-09  0:05 ` Marius Bakke
@ 2017-02-10 12:52   ` Ludovic Courtès
  0 siblings, 0 replies; 21+ messages in thread
From: Ludovic Courtès @ 2017-02-10 12:52 UTC (permalink / raw)
  To: Marius Bakke; +Cc: 21879-done

Marius Bakke <mbakke@fastmail.com> skribis:

> I noticed this as well on a foreign distro and pushed a workaround in
> 507809be152049dff26bffdb58e1a90b638f046b.
>
> Didn't study the source enough to figure out why the substitution was
> insufficient, but strace confirmed it was still looking in PATH even
> though the strings were replaced.

Thanks for fixing it!

Make sure to email NNN-done@debbugs.gnu.org next time.  ;-)

Ludo’.

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

* bug#21879: WeeChat does not start
  2015-11-11 14:06 bug#21879: WeeChat does not start Luis Felipe López Acevedo
                   ` (2 preceding siblings ...)
  2017-02-09  0:05 ` Marius Bakke
@ 2017-02-25 14:13 ` sirgazil
  2017-02-25 15:59   ` Leo Famulari
  3 siblings, 1 reply; 21+ messages in thread
From: sirgazil @ 2017-02-25 14:13 UTC (permalink / raw)
  To: 21879@debbugs.gnu.org

[-- Attachment #1: Type: text/plain, Size: 111 bytes --]

Actually, I'm still experiencing this bug with Guix 0.12.0 on Debian 8.7.



---
https://sirgazil.bitbucket.io/

[-- Attachment #2: Type: text/html, Size: 280 bytes --]

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

* bug#21879: WeeChat does not start
  2017-02-25 14:13 ` sirgazil
@ 2017-02-25 15:59   ` Leo Famulari
  2017-02-25 16:35     ` sirgazil
  0 siblings, 1 reply; 21+ messages in thread
From: Leo Famulari @ 2017-02-25 15:59 UTC (permalink / raw)
  To: sirgazil; +Cc: 21879@debbugs.gnu.org

On Sat, Feb 25, 2017 at 09:13:48AM -0500, sirgazil wrote:
> Actually, I'm still experiencing this bug with Guix 0.12.0 on Debian 8.7.

The commit that worked around the issue was applied after the 0.12.0
release. Have you updated your copy of Guix (with `guix pull`) since the
0.12.0 release?

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

* bug#21879: WeeChat does not start
  2017-02-25 15:59   ` Leo Famulari
@ 2017-02-25 16:35     ` sirgazil
  2017-02-25 16:54       ` ng0
  0 siblings, 1 reply; 21+ messages in thread
From: sirgazil @ 2017-02-25 16:35 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 21879@debbugs.gnu.org

[-- Attachment #1: Type: text/plain, Size: 632 bytes --]

-------- Original Message --------
Subject: Re: bug#21879: WeeChat does not start
Local Time: 25 de febrero de 2017 10:59 AM
UTC Time: 25 de febrero de 2017 15:59
From: leo@famulari.name
To: sirgazil <lizagris@protonmail.com>
21879@debbugs.gnu.org <21879@debbugs.gnu.org>

On Sat, Feb 25, 2017 at 09:13:48AM -0500, sirgazil wrote:
> Actually, I'm still experiencing this bug with Guix 0.12.0 on Debian 8.7.

The commit that worked around the issue was applied after the 0.12.0
release. Have you updated your copy of Guix (with `guix pull`) since the
0.12.0 release?

Thanks, Leo. I installed WeeChat after "guix pull" and it worked.

[-- Attachment #2: Type: text/html, Size: 954 bytes --]

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

* bug#21879: WeeChat does not start
  2017-02-25 16:35     ` sirgazil
@ 2017-02-25 16:54       ` ng0
  2017-03-01 19:41         ` sirgazil
  0 siblings, 1 reply; 21+ messages in thread
From: ng0 @ 2017-02-25 16:54 UTC (permalink / raw)
  To: sirgazil; +Cc: 21879@debbugs.gnu.org

On 17-02-25 11:35:45, sirgazil wrote:
> -------- Original Message --------
> Subject: Re: bug#21879: WeeChat does not start
> Local Time: 25 de febrero de 2017 10:59 AM
> UTC Time: 25 de febrero de 2017 15:59
> From: leo@famulari.name
> To: sirgazil <lizagris@protonmail.com>
> 21879@debbugs.gnu.org <21879@debbugs.gnu.org>
> 
> On Sat, Feb 25, 2017 at 09:13:48AM -0500, sirgazil wrote:
> > Actually, I'm still experiencing this bug with Guix 0.12.0 on Debian 8.7.
> 
> The commit that worked around the issue was applied after the 0.12.0
> release. Have you updated your copy of Guix (with `guix pull`) since the
> 0.12.0 release?
> 
> Thanks, Leo. I installed WeeChat after "guix pull" and it worked.

A while ago Leo or someone else uponed a bug on improving the
Documentation about the relevance and usage of package+system updates.

It seems to me as if that's the case here, the documentation not being
clear enough.
Do you have any improvement suggestions?

Thanks.

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

* bug#21879: WeeChat does not start
  2017-02-25 16:54       ` ng0
@ 2017-03-01 19:41         ` sirgazil
  0 siblings, 0 replies; 21+ messages in thread
From: sirgazil @ 2017-03-01 19:41 UTC (permalink / raw)
  To: ng0; +Cc: 21879@debbugs.gnu.org

[-- Attachment #1: Type: text/plain, Size: 1461 bytes --]

-------- Original Message --------
Subject: Re: bug#21879: WeeChat does not start
Local Time: 25 de febrero de 2017 11:52 AM
UTC Time: 25 de febrero de 2017 16:52
From: contact.ng0@cryptolab.net
To: sirgazil <lizagris@protonmail.com>
Leo Famulari <leo@famulari.name>, 21879@debbugs.gnu.org <21879@debbugs.gnu.org>

On 17-02-25 11:35:45, sirgazil wrote:
> -------- Original Message --------
> Subject: Re: bug#21879: WeeChat does not start
> Local Time: 25 de febrero de 2017 10:59 AM
> UTC Time: 25 de febrero de 2017 15:59
> From: leo@famulari.name
> To: sirgazil <lizagris@protonmail.com>
> 21879@debbugs.gnu.org <21879@debbugs.gnu.org>
>
> On Sat, Feb 25, 2017 at 09:13:48AM -0500, sirgazil wrote:
> > Actually, I'm still experiencing this bug with Guix 0.12.0 on Debian 8.7.
>
> The commit that worked around the issue was applied after the 0.12.0
> release. Have you updated your copy of Guix (with `guix pull`) since the
> 0.12.0 release?
>
> Thanks, Leo. I installed WeeChat after "guix pull" and it worked.

A while ago Leo or someone else uponed a bug on improving the
Documentation about the relevance and usage of package+system updates.

It seems to me as if that's the case here, the documentation not being
clear enough.
Do you have any improvement suggestions?

Thanks.

Good! Documentation is one part. I'll read the bug you mention (https://debbugs.gnu.org/cgi/bugreport.cgi?bug=25852) and see if I have anything to contribute.

Thank you, ng0.

[-- Attachment #2: Type: text/html, Size: 2231 bytes --]

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

end of thread, other threads:[~2017-03-01 19:42 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-11 14:06 bug#21879: WeeChat does not start Luis Felipe López Acevedo
2015-11-12 12:18 ` Cyril Roelandt
2015-11-18 17:06 ` Ludovic Courtès
2015-11-18 20:05   ` Luis Felipe López Acevedo
2015-11-18 20:44     ` Cyril Roelandt
2015-11-18 21:22       ` Ludovic Courtès
2015-11-18 21:41         ` Cyril Roelandt
2015-11-19  9:41           ` Ludovic Courtès
2015-11-29 11:01           ` Ludovic Courtès
2015-11-29 14:12             ` Luis Felipe López Acevedo
2015-11-29 15:00               ` Ludovic Courtès
2015-11-29 15:44                 ` Luis Felipe López Acevedo
2015-11-29 18:20                   ` Ludovic Courtès
2015-12-05 14:20                     ` Luis Felipe López Acevedo
2017-02-09  0:05 ` Marius Bakke
2017-02-10 12:52   ` Ludovic Courtès
2017-02-25 14:13 ` sirgazil
2017-02-25 15:59   ` Leo Famulari
2017-02-25 16:35     ` sirgazil
2017-02-25 16:54       ` ng0
2017-03-01 19:41         ` sirgazil

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).