* emacs-exwm-x update error
@ 2017-07-01 6:28 Feng Shu
2017-07-01 12:25 ` Alex Vong
2017-07-01 16:10 ` Ludovic Courtès
0 siblings, 2 replies; 4+ messages in thread
From: Feng Shu @ 2017-07-01 6:28 UTC (permalink / raw)
To: guix-devel; +Cc: Feng Shu
feng@tumashu:~/project/guix $ ./pre-inst-env guix package -u emacs-exwm-x
;;; note: source file /home/feng/project/guix/gnu/packages/emacs.scm
;;; newer than compiled /home/feng/project/guix/gnu/packages/emacs.go
;;; note: source file /home/feng/project/guix/gnu/packages/emacs.scm
;;; newer than compiled /run/current-system/profile/lib/guile/2.2/site-ccache/gnu/packages/emacs.go
guix package: warning: Consider running 'guix pull' followed by
'guix package -u' to get up-to-date packages and security updates.
substitute: updating list of substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
substitute: updating list of substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
substitute: updating list of substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
The following package will be upgraded:
emacs-exwm-x 1.0-2.2099138 → 1.6 /gnu/store/b05317amv8xp7kg297rjfqma8f9pp91d-emacs-exwm-x-1.6
guix package: error: profile contains conflicting entries for emacs-exwm:out
guix package: error: first entry: emacs-exwm@0.14:out /gnu/store/6v3xzl7xpbgkg9fy6rhfbbizps61yysd-emacs-exwm-0.14
guix package: error: ... propagated from emacs-exwm-x@1.6
guix package: error: second entry: emacs-exwm@0.13:out /gnu/store/j39k3hiyxskr78k2pbybvgq1nwczdgvq-emacs-exwm-0.13
--
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: emacs-exwm-x update error
2017-07-01 6:28 emacs-exwm-x update error Feng Shu
@ 2017-07-01 12:25 ` Alex Vong
2017-07-01 16:10 ` Ludovic Courtès
1 sibling, 0 replies; 4+ messages in thread
From: Alex Vong @ 2017-07-01 12:25 UTC (permalink / raw)
To: Feng Shu; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 1445 bytes --]
"Feng Shu" <tumashu@163.com> writes:
> feng@tumashu:~/project/guix $ ./pre-inst-env guix package -u emacs-exwm-x
> ;;; note: source file /home/feng/project/guix/gnu/packages/emacs.scm
> ;;; newer than compiled /home/feng/project/guix/gnu/packages/emacs.go
> ;;; note: source file /home/feng/project/guix/gnu/packages/emacs.scm
> ;;; newer than compiled
> /run/current-system/profile/lib/guile/2.2/site-ccache/gnu/packages/emacs.go
> guix package: warning: Consider running 'guix pull' followed by
> 'guix package -u' to get up-to-date packages and security updates.
>
Did you run make after running git pull?
> substitute: updating list of substitutes from
> 'https://mirror.hydra.gnu.org'... 100.0%
> substitute: updating list of substitutes from
> 'https://mirror.hydra.gnu.org'... 100.0%
> substitute: updating list of substitutes from
> 'https://mirror.hydra.gnu.org'... 100.0%
> The following package will be upgraded:
> emacs-exwm-x 1.0-2.2099138 → 1.6
> /gnu/store/b05317amv8xp7kg297rjfqma8f9pp91d-emacs-exwm-x-1.6
>
> guix package: error: profile contains conflicting entries for emacs-exwm:out
> guix package: error: first entry: emacs-exwm@0.14:out
> /gnu/store/6v3xzl7xpbgkg9fy6rhfbbizps61yysd-emacs-exwm-0.14
> guix package: error: ... propagated from emacs-exwm-x@1.6
> guix package: error: second entry: emacs-exwm@0.13:out
> /gnu/store/j39k3hiyxskr78k2pbybvgq1nwczdgvq-emacs-exwm-0.13
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: emacs-exwm-x update error
2017-07-01 6:28 emacs-exwm-x update error Feng Shu
2017-07-01 12:25 ` Alex Vong
@ 2017-07-01 16:10 ` Ludovic Courtès
2017-07-02 0:01 ` tumashu
1 sibling, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2017-07-01 16:10 UTC (permalink / raw)
To: Feng Shu; +Cc: guix-devel
Hello,
"Feng Shu" <tumashu@163.com> skribis:
> feng@tumashu:~/project/guix $ ./pre-inst-env guix package -u emacs-exwm-x
[...]
> The following package will be upgraded:
> emacs-exwm-x 1.0-2.2099138 → 1.6 /gnu/store/b05317amv8xp7kg297rjfqma8f9pp91d-emacs-exwm-x-1.6
>
> guix package: error: profile contains conflicting entries for emacs-exwm:out
> guix package: error: first entry: emacs-exwm@0.14:out /gnu/store/6v3xzl7xpbgkg9fy6rhfbbizps61yysd-emacs-exwm-0.14
> guix package: error: ... propagated from emacs-exwm-x@1.6
> guix package: error: second entry: emacs-exwm@0.13:out /gnu/store/j39k3hiyxskr78k2pbybvgq1nwczdgvq-emacs-exwm-0.13
I find the message pretty explicit :-), but I’m happy to improve it if
you have ideas.
What this means is that the new profile would end up with two different
emacs-exwm, and so it just errors out.
One solution is to upgrade all things exwm at once:
guix package -u exwm
That way, emacs-exwm-x and emacs-exwm will be in sync.
HTH!
Ludo’.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re:Re: emacs-exwm-x update error
2017-07-01 16:10 ` Ludovic Courtès
@ 2017-07-02 0:01 ` tumashu
0 siblings, 0 replies; 4+ messages in thread
From: tumashu @ 2017-07-02 0:01 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: guix-devel
may be we should show a tip also: suggest do XXXXXXX :-)
At 2017-07-02 00:10:55, "ludo@gnu.org (Ludovic" <=?utf-8?Q?Court=C3=A8s?=)> wrote:
>Hello,
>
>"Feng Shu" <tumashu@163.com> skribis:
>
>> feng@tumashu:~/project/guix $ ./pre-inst-env guix package -u emacs-exwm-x
>
>[...]
>
>> The following package will be upgraded:
>> emacs-exwm-x 1.0-2.2099138 → 1.6 /gnu/store/b05317amv8xp7kg297rjfqma8f9pp91d-emacs-exwm-x-1.6
>>
>> guix package: error: profile contains conflicting entries for emacs-exwm:out
>> guix package: error: first entry: emacs-exwm@0.14:out /gnu/store/6v3xzl7xpbgkg9fy6rhfbbizps61yysd-emacs-exwm-0.14
>> guix package: error: ... propagated from emacs-exwm-x@1.6
>> guix package: error: second entry: emacs-exwm@0.13:out /gnu/store/j39k3hiyxskr78k2pbybvgq1nwczdgvq-emacs-exwm-0.13
>
>I find the message pretty explicit :-), but I’m happy to improve it if
>you have ideas.
>
>What this means is that the new profile would end up with two different
>emacs-exwm, and so it just errors out.
>
>One solution is to upgrade all things exwm at once:
>
> guix package -u exwm
>
>That way, emacs-exwm-x and emacs-exwm will be in sync.
>
>HTH!
>
>Ludo’.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-07-02 0:47 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-01 6:28 emacs-exwm-x update error Feng Shu
2017-07-01 12:25 ` Alex Vong
2017-07-01 16:10 ` Ludovic Courtès
2017-07-02 0:01 ` tumashu
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).