unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#44452: Clash between guile-3.0 and guile-3.0-latest
@ 2020-11-04 18:47 divoplade
  2020-11-04 20:15 ` zimoun
                   ` (2 more replies)
  0 siblings, 3 replies; 16+ messages in thread
From: divoplade @ 2020-11-04 18:47 UTC (permalink / raw)
  To: 44452

Dear guix,

I cannot add the "guile-3.0" package in any system configuration (the
part that reads (packages (append (list ... %base-packages)))). When I
do that, I get:


$ LANG=C guix system docker-image config.scm 
guix system: error: profile contains conflicting entries for guile
guix system: error:   first entry: guile@3.0.2
/gnu/store/18hp7flyb3yid3yp49i6qcdq0sbi5l1n-guile-3.0.2
guix system: error:   second entry: guile@3.0.4
/gnu/store/ah16zr8mmfkqy23rr7jy5a842ca1q9h1-guile-3.0.4
hint: You cannot have two different versions or variants of `guile' in
the same profile.


The fix would be to deprecate guile-3.0-latest as an alias for guile-
3.0, and use the 3.0.4 version in guile-3.0.

Best regards,

divoplade





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

* bug#44452: Clash between guile-3.0 and guile-3.0-latest
  2020-11-04 18:47 bug#44452: Clash between guile-3.0 and guile-3.0-latest divoplade
@ 2020-11-04 20:15 ` zimoun
  2020-11-05  7:02   ` divoplade
  2020-11-05  7:39   ` divoplade
  2020-11-05 10:29 ` Leo Prikler
  2020-11-06 10:07 ` Ludovic Courtès
  2 siblings, 2 replies; 16+ messages in thread
From: zimoun @ 2020-11-04 20:15 UTC (permalink / raw)
  To: divoplade, 44452

Dear,

On Wed, 04 Nov 2020 at 19:47, divoplade <d@divoplade.fr> wrote:

> $ LANG=C guix system docker-image config.scm 
> guix system: error: profile contains conflicting entries for guile
> guix system: error:   first entry: guile@3.0.2
> /gnu/store/18hp7flyb3yid3yp49i6qcdq0sbi5l1n-guile-3.0.2
> guix system: error:   second entry: guile@3.0.4
> /gnu/store/ah16zr8mmfkqy23rr7jy5a842ca1q9h1-guile-3.0.4
> hint: You cannot have two different versions or variants of `guile' in
> the same profile.

Which packages ’config.scm’ contain?  Other said, what does the conflict
make happen?

I do not know if an option ’--allow-collisions’ makes sense here.


> The fix would be to deprecate guile-3.0-latest as an alias for guile-
> 3.0, and use the 3.0.4 version in guile-3.0.

I have not checked, but this proposal could lead to a world rebuild.


All the best,
simon




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

* bug#44452: Clash between guile-3.0 and guile-3.0-latest
  2020-11-04 20:15 ` zimoun
@ 2020-11-05  7:02   ` divoplade
  2020-11-05  7:39   ` divoplade
  1 sibling, 0 replies; 16+ messages in thread
From: divoplade @ 2020-11-05  7:02 UTC (permalink / raw)
  To: zimoun, 44452

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

Hello Simon,

Le mercredi 04 novembre 2020 à 21:15 +0100, zimoun a écrit :
> Which packages ’config.scm’ contain?  Other said, what does the
> conflict
> make happen?

You can try with one of the examples of guix, if you don't want to risk
anything with your config! Here is lightweight-desktop.tmpl, and the
edited lightweight-desktop-with-guile.tmpl. 

If you run 

    guix system docker-image lightweight-desktop-with-guile.tmpl

you get the error.

If you run

    guix system docker-image lightweight-desktop.tmpl

it works.

Also, I must say that the problem also happens with any package that
has guile has a propagated input, but the root of the problem seems to
be guile.

[-- Attachment #2: lightweight-desktop-with-guile.tmpl --]
[-- Type: text/plain, Size: 2206 bytes --]

;; This is an operating system configuration template
;; for a "desktop" setup without full-blown desktop
;; environments.

(use-modules (gnu) (gnu system nss) (gnu packages guile))
(use-service-modules desktop)
(use-package-modules bootloaders certs emacs emacs-xyz ratpoison suckless wm
                     xorg)

(operating-system
  (host-name "antelope")
  (timezone "Europe/Paris")
  (locale "en_US.utf8")

  ;; Use the UEFI variant of GRUB with the EFI System
  ;; Partition mounted on /boot/efi.
  (bootloader (bootloader-configuration
                (bootloader grub-efi-bootloader)
                (target "/boot/efi")))

  ;; Assume the target root file system is labelled "my-root",
  ;; and the EFI System Partition has UUID 1234-ABCD.
  (file-systems (append
                 (list (file-system
                         (device (file-system-label "my-root"))
                         (mount-point "/")
                         (type "ext4"))
                       (file-system
                         (device (uuid "1234-ABCD" 'fat))
                         (mount-point "/boot/efi")
                         (type "vfat")))
                 %base-file-systems))

  (users (cons (user-account
                (name "alice")
                (comment "Bob's sister")
                (group "users")
                (supplementary-groups '("wheel" "netdev"
                                        "audio" "video")))
               %base-user-accounts))

  ;; Add a bunch of window managers; we can choose one at
  ;; the log-in screen with F1.
  (packages (append (list
                     ;; window managers
                     ratpoison i3-wm i3status dmenu
                     emacs emacs-exwm emacs-desktop-environment
                     ;; terminal emulator
                     xterm
                     ;; for HTTPS access
                     nss-certs
		     ;; Boo!
		     guile-3.0)
                    %base-packages))

  ;; Use the "desktop" services, which include the X11
  ;; log-in service, networking with NetworkManager, and more.
  (services %desktop-services)

  ;; Allow resolution of '.local' host names with mDNS.
  (name-service-switch %mdns-host-lookup-nss))

[-- Attachment #3: lightweight-desktop.tmpl --]
[-- Type: text/plain, Size: 2153 bytes --]

;; This is an operating system configuration template
;; for a "desktop" setup without full-blown desktop
;; environments.

(use-modules (gnu) (gnu system nss))
(use-service-modules desktop)
(use-package-modules bootloaders certs emacs emacs-xyz ratpoison suckless wm
                     xorg)

(operating-system
  (host-name "antelope")
  (timezone "Europe/Paris")
  (locale "en_US.utf8")

  ;; Use the UEFI variant of GRUB with the EFI System
  ;; Partition mounted on /boot/efi.
  (bootloader (bootloader-configuration
                (bootloader grub-efi-bootloader)
                (target "/boot/efi")))

  ;; Assume the target root file system is labelled "my-root",
  ;; and the EFI System Partition has UUID 1234-ABCD.
  (file-systems (append
                 (list (file-system
                         (device (file-system-label "my-root"))
                         (mount-point "/")
                         (type "ext4"))
                       (file-system
                         (device (uuid "1234-ABCD" 'fat))
                         (mount-point "/boot/efi")
                         (type "vfat")))
                 %base-file-systems))

  (users (cons (user-account
                (name "alice")
                (comment "Bob's sister")
                (group "users")
                (supplementary-groups '("wheel" "netdev"
                                        "audio" "video")))
               %base-user-accounts))

  ;; Add a bunch of window managers; we can choose one at
  ;; the log-in screen with F1.
  (packages (append (list
                     ;; window managers
                     ratpoison i3-wm i3status dmenu
                     emacs emacs-exwm emacs-desktop-environment
                     ;; terminal emulator
                     xterm
                     ;; for HTTPS access
                     nss-certs)
                    %base-packages))

  ;; Use the "desktop" services, which include the X11
  ;; log-in service, networking with NetworkManager, and more.
  (services %desktop-services)

  ;; Allow resolution of '.local' host names with mDNS.
  (name-service-switch %mdns-host-lookup-nss))

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

* bug#44452: Clash between guile-3.0 and guile-3.0-latest
  2020-11-04 20:15 ` zimoun
  2020-11-05  7:02   ` divoplade
@ 2020-11-05  7:39   ` divoplade
  1 sibling, 0 replies; 16+ messages in thread
From: divoplade @ 2020-11-05  7:39 UTC (permalink / raw)
  To: zimoun, 44452

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

Le mercredi 04 novembre 2020 à 21:15 +0100, zimoun a écrit :
> > The fix would be to deprecate guile-3.0-latest as an alias for
> > guile-
> > 3.0, and use the 3.0.4 version in guile-3.0.
> 
> I have not checked, but this proposal could lead to a world rebuild.

With this fix, yes, it leads to a world rebuild, but it was marked in a
TODO anyway. I don't know if it fully solves the problem just yet,
because I'm downloading 400MB of world rebuilding with my connection at
180 KB/s, but I have good hopes!

Best regards,

divoplade

[-- Attachment #2: 0001-gnu-upgrade-guile-to-3.0.4.patch --]
[-- Type: text/x-patch, Size: 2081 bytes --]

From 42e2d64533c018a61db8408b5ae22312b210f7cc Mon Sep 17 00:00:00 2001
From: divoplade <d@divoplade.fr>
Date: Thu, 5 Nov 2020 08:25:46 +0100
Subject: [PATCH] gnu: upgrade guile to 3.0.4

It is impossible to have guile-3.0 installed as a package in the system
configuration, because it is incompatible with guile-3.0-latest which is used
by the system (see bug 44452). By having the same version, it works.
---
 gnu/packages/guile.scm | 16 +++-------------
 1 file changed, 3 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 6d93d7432f..ff943dd6de 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -284,14 +284,14 @@ without requiring the source code to be rewritten.")
   (package
     (inherit guile-2.2)
     (name "guile")
-    (version "3.0.2")
+    (version "3.0.4")
     (source (origin
               (inherit (package-source guile-2.2))
               (uri (string-append "mirror://gnu/guile/guile-"
                                   version ".tar.xz"))
               (sha256
                (base32
-                "12lziar4j27j9whqp2n18427q45y9ghq7gdd8lqhmj1k0lr7vi2k"))))
+                "0c8dkyvs6xbxp7rgnhkyakajzhakay7qn9kahj1mj49x5vf4fybb"))))
     (arguments
      ;; XXX: JIT-enabled Guile crashes in obscure ways on GNU/Hurd.
      (if (hurd-target?)
@@ -309,17 +309,7 @@ without requiring the source code to be rewritten.")
                      "share/guile/site/3.0")))))))
 
 (define-public guile-3.0-latest
-  ;; TODO: Make this 'guile-3.0' on the next rebuild cycle.
-  (package
-    (inherit guile-3.0)
-    (version "3.0.4")
-    (source (origin
-              (inherit (package-source guile-3.0))
-              (uri (string-append "mirror://gnu/guile/guile-"
-                                  version ".tar.xz"))
-              (sha256
-               (base32
-                "0c8dkyvs6xbxp7rgnhkyakajzhakay7qn9kahj1mj49x5vf4fybb"))))))
+  (deprecated-package "guile-3.0-latest" guile-3.0))
 
 (define-public guile-next
   (deprecated-package "guile-next" guile-3.0))
-- 
2.29.2


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

* bug#44452: Clash between guile-3.0 and guile-3.0-latest
  2020-11-04 18:47 bug#44452: Clash between guile-3.0 and guile-3.0-latest divoplade
  2020-11-04 20:15 ` zimoun
@ 2020-11-05 10:29 ` Leo Prikler
  2020-11-05 14:48   ` divoplade
  2020-11-06 10:07 ` Ludovic Courtès
  2 siblings, 1 reply; 16+ messages in thread
From: Leo Prikler @ 2020-11-05 10:29 UTC (permalink / raw)
  To: d; +Cc: 44452

Hi divoplade,

It is marked as a TODO exactly because it causes a world rebuild. 
guile-3.0 will presumably be updated on the next core-updates merge,
where world rebuilds are acceptable, so be a bit patient until then and
use guile-3.0-latest, please :)
(Note, that you should also get guile-3.0-latest from specification-
>package if that is a concern.)

Regards, Leo





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

* bug#44452: Clash between guile-3.0 and guile-3.0-latest
  2020-11-05 10:29 ` Leo Prikler
@ 2020-11-05 14:48   ` divoplade
  2020-11-05 15:29     ` zimoun
  0 siblings, 1 reply; 16+ messages in thread
From: divoplade @ 2020-11-05 14:48 UTC (permalink / raw)
  To: Leo Prikler; +Cc: 44452

Hi!

Le jeudi 05 novembre 2020 à 11:29 +0100, Leo Prikler a écrit :
> guile-3.0 will presumably be updated on the next core-updates merge,
> where world rebuilds are acceptable, so be a bit patient until then
> and
> use guile-3.0-latest, please :)

That's not presumably, that's indeed fixed in core-updates! Sorry, I
did not see it.

So it will be fixed when core-updates is merged.





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

* bug#44452: Clash between guile-3.0 and guile-3.0-latest
  2020-11-05 14:48   ` divoplade
@ 2020-11-05 15:29     ` zimoun
  0 siblings, 0 replies; 16+ messages in thread
From: zimoun @ 2020-11-05 15:29 UTC (permalink / raw)
  To: divoplade, Leo Prikler; +Cc: 44452

Hi,

On Thu, 05 Nov 2020 at 15:48, divoplade <d@divoplade.fr> wrote:
> Le jeudi 05 novembre 2020 à 11:29 +0100, Leo Prikler a écrit :
>> guile-3.0 will presumably be updated on the next core-updates merge,
>> where world rebuilds are acceptable, so be a bit patient until then
>> and
>> use guile-3.0-latest, please :)
>
> That's not presumably, that's indeed fixed in core-updates! Sorry, I
> did not see it.

Yes.

> So it will be fixed when core-updates is merged.

And yes.


Somehow, the question are:

 1. Is it a real error for the ending  profile?
 2. If no, does the option ’--allow-collisions’ make sense here?

And ’it’ means uses ’guile-3.0’ instead of ’guile-3.0-latest’ in the
list.


All the best,
simon




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

* bug#44452: Clash between guile-3.0 and guile-3.0-latest
  2020-11-04 18:47 bug#44452: Clash between guile-3.0 and guile-3.0-latest divoplade
  2020-11-04 20:15 ` zimoun
  2020-11-05 10:29 ` Leo Prikler
@ 2020-11-06 10:07 ` Ludovic Courtès
  2020-11-06 10:22   ` divoplade
  2 siblings, 1 reply; 16+ messages in thread
From: Ludovic Courtès @ 2020-11-06 10:07 UTC (permalink / raw)
  To: divoplade; +Cc: 44452

Hi,

divoplade <d@divoplade.fr> skribis:

> I cannot add the "guile-3.0" package in any system configuration (the
> part that reads (packages (append (list ... %base-packages)))). When I
> do that, I get:

‘%base-packages’ already contains Guile (‘guile-3.0-latest’
specifically) so maybe you just don’t need to do anything?

HTH,
Ludo’.




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

* bug#44452: Clash between guile-3.0 and guile-3.0-latest
  2020-11-06 10:07 ` Ludovic Courtès
@ 2020-11-06 10:22   ` divoplade
  2020-12-01 21:41     ` zimoun
  0 siblings, 1 reply; 16+ messages in thread
From: divoplade @ 2020-11-06 10:22 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 44452

Hi!

Le vendredi 06 novembre 2020 à 11:07 +0100, Ludovic Courtès a écrit :
> ‘%base-packages’ already contains Guile (‘guile-3.0-latest’
> specifically) so maybe you just don’t need to do anything?

You're right! I just filtered out guile-3.0-latest from %base-packages
and it works!

Thank you.

divoplade





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

* bug#44452: Clash between guile-3.0 and guile-3.0-latest
  2020-11-06 10:22   ` divoplade
@ 2020-12-01 21:41     ` zimoun
  2020-12-01 21:56       ` divoplade
  0 siblings, 1 reply; 16+ messages in thread
From: zimoun @ 2020-12-01 21:41 UTC (permalink / raw)
  To: divoplade; +Cc: 44452

Hi,

This bug #44452 is about issue with Guile declaration.

  <http://issues.guix.gnu.org/issue/44452>


On Fri, 06 Nov 2020 at 11:22, divoplade <d@divoplade.fr> wrote:
> Le vendredi 06 novembre 2020 à 11:07 +0100, Ludovic Courtès a écrit :

>> ‘%base-packages’ already contains Guile (‘guile-3.0-latest’
>> specifically) so maybe you just don’t need to do anything?
>
> You're right! I just filtered out guile-3.0-latest from %base-packages
> and it works!

What is the status of this bug?  I guess it can be closed, right?


All the best,
simon




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

* bug#44452: Clash between guile-3.0 and guile-3.0-latest
  2020-12-01 21:41     ` zimoun
@ 2020-12-01 21:56       ` divoplade
  2020-12-01 22:19         ` zimoun
  0 siblings, 1 reply; 16+ messages in thread
From: divoplade @ 2020-12-01 21:56 UTC (permalink / raw)
  To: zimoun; +Cc: 44452

Hello,

Le mardi 01 décembre 2020 à 22:41 +0100, zimoun a écrit :
> > > ‘%base-packages’ already contains Guile (‘guile-3.0-latest’
> > > specifically) so maybe you just don’t need to do anything?
> > 
> > You're right! I just filtered out guile-3.0-latest from %base-
> > packages
> > and it works!
> 
> What is the status of this bug?  I guess it can be closed, right?

The problem is there until core-updates is merged. The workaround that
I use appears to work, but I guess it's not something that is intended.

I hope it makes things a little clearer ^^





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

* bug#44452: Clash between guile-3.0 and guile-3.0-latest
  2020-12-01 21:56       ` divoplade
@ 2020-12-01 22:19         ` zimoun
  2020-12-02  9:10           ` divoplade
  0 siblings, 1 reply; 16+ messages in thread
From: zimoun @ 2020-12-01 22:19 UTC (permalink / raw)
  To: divoplade; +Cc: 44452

Hi,

On Tue, 01 Dec 2020 at 22:56, divoplade <d@divoplade.fr> wrote:

> The problem is there until core-updates is merged. The workaround that
> I use appears to work, but I guess it's not something that is intended.

If the problem is fixed in core-updates, then the problem is fixed.  :-)
No need to wait the merge to close this bug.  IMHO.

Moreover, %base-packages already contains Guile (’guile-3.0-latest’),
therefore I am not sure to understand what the bug is about
specifically.  As I said, I do not know if an option
’--allow-collisions’ makes sense here.

Anyway, please do not forget to close it. ;-)

Cheers,
simon




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

* bug#44452: Clash between guile-3.0 and guile-3.0-latest
  2020-12-01 22:19         ` zimoun
@ 2020-12-02  9:10           ` divoplade
  2020-12-02 11:11             ` zimoun
  0 siblings, 1 reply; 16+ messages in thread
From: divoplade @ 2020-12-02  9:10 UTC (permalink / raw)
  To: zimoun; +Cc: 44452

Le mardi 01 décembre 2020 à 23:19 +0100, zimoun a écrit :
> Moreover, %base-packages already contains Guile (’guile-3.0-latest’),
> therefore I am not sure to understand what the bug is about
> specifically.

That's the problem. I need to remove it from %base-packages, otherwise
the packages that propagate guile 3.0.2 can't be installed.





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

* bug#44452: Clash between guile-3.0 and guile-3.0-latest
  2020-12-02  9:10           ` divoplade
@ 2020-12-02 11:11             ` zimoun
  2020-12-02 11:48               ` divoplade
  0 siblings, 1 reply; 16+ messages in thread
From: zimoun @ 2020-12-02 11:11 UTC (permalink / raw)
  To: divoplade; +Cc: 44452

Hi,

On Wed, 02 Dec 2020 at 10:10, divoplade <d@divoplade.fr> wrote:
> Le mardi 01 décembre 2020 à 23:19 +0100, zimoun a écrit :
>> Moreover, %base-packages already contains Guile (’guile-3.0-latest’),
>> therefore I am not sure to understand what the bug is about
>> specifically.
>
> That's the problem. I need to remove it from %base-packages, otherwise
> the packages that propagate guile 3.0.2 can't be installed.

Sorry if I am slow, but I do not see why this use-case should be a bug.
For example,

--8<---------------cut here---------------start------------->8---
$ cat /tmp/manif.scm
(use-modules (gnu packages guile))
(packages->manifest
 (list
  guile-3.0-latest
  guile-3.0))

$ guix package -m /tmp/manif.scm -p /tmp/bug
The following packages will be installed:
   guile 3.0.2
   guile 3.0.4

guix package: error: profile contains conflicting entries for guile
guix package: error:   first entry: guile@3.0.4 /gnu/store/ah16zr8mmfkqy23rr7jy5a842ca1q9h1-guile-3.0.4
guix package: error:   second entry: guile@3.0.2 /gnu/store/18hp7flyb3yid3yp49i6qcdq0sbi5l1n-guile-3.0.2
hint: You cannot have two different versions or variants of `guile' in the same profile.
--8<---------------cut here---------------end--------------->8---

And this appends for any package providing multiversions (gcc, clang,
guile, etc.).  From my understanding, it is a feature. :-)

Using the option ’--allow-collisions’ avoids the error but then the
version you get is the first in the list, which could be prone error.
That’s why I am not convinced it makes sense here.

Said explicitly, if you do not want in your profile the package X
belonging to %base-packages , do not add the %base-packages list. :-) Or
create your custom list (remove the ones you do not want). I do not see
what could done on this side.  The list %base-packages is 40 packages
considered as “kind of minimal” to be able to do minimal stuff.


In one of your message, you were speaking about propagated inputs.
Which is the use-case for the option ’--allow-collisions’, IIUC.  Do you
have examples of such use-cases?  Something where:

--8<---------------cut here---------------start------------->8---
    (packages (append (list
                      pkg-1
                      pkg-2
                      …
                      %base-packages))
--8<---------------cut here---------------end--------------->8---

leads to an error or an unexpected result?


All the best,
simon




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

* bug#44452: Clash between guile-3.0 and guile-3.0-latest
  2020-12-02 11:11             ` zimoun
@ 2020-12-02 11:48               ` divoplade
  2020-12-02 12:50                 ` zimoun
  0 siblings, 1 reply; 16+ messages in thread
From: divoplade @ 2020-12-02 11:48 UTC (permalink / raw)
  To: zimoun; +Cc: 44452

Le mercredi 02 décembre 2020 à 12:11 +0100, zimoun a écrit :
> Said explicitly, if you do not want in your profile the package X
> belonging to %base-packages , do not add the %base-packages list. :-) 
> Or
> create your custom list (remove the ones you do not want). I do not
> see
> what could done on this side.  The list %base-packages is 40 packages
> considered as “kind of minimal” to be able to do minimal stuff.

I would disagree on that, it contains guile 3.0.4 instead of 3.0.2.
3.0.4 is not used, and prevents the other guile packages that require
3.0.2. If it contained 3.0.2 instead, I would 100% agree with what you
said there.

But it is fixed in core-updates, so we just need to wait for core-
updates to be merged.





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

* bug#44452: Clash between guile-3.0 and guile-3.0-latest
  2020-12-02 11:48               ` divoplade
@ 2020-12-02 12:50                 ` zimoun
  0 siblings, 0 replies; 16+ messages in thread
From: zimoun @ 2020-12-02 12:50 UTC (permalink / raw)
  To: divoplade; +Cc: 44452

On Wed, 02 Dec 2020 at 12:48, divoplade <d@divoplade.fr> wrote:
> Le mercredi 02 décembre 2020 à 12:11 +0100, zimoun a écrit :
>> Said explicitly, if you do not want in your profile the package X
>> belonging to %base-packages , do not add the %base-packages list. :-) 
>> Or
>> create your custom list (remove the ones you do not want). I do not
>> see
>> what could done on this side.  The list %base-packages is 40 packages
>> considered as “kind of minimal” to be able to do minimal stuff.
>
> I would disagree on that, it contains guile 3.0.4 instead of 3.0.2.
> 3.0.4 is not used, and prevents the other guile packages that require
> 3.0.2. If it contained 3.0.2 instead, I would 100% agree with what you
> said there.

Again, sorry to be slow.  But I really try to understand. :-) I have
been annoyed by such things about different Guile with the website [1].

What I get with 353bdae (pre-1.2) or f4450e8 (post-1.2):

--8<---------------cut here---------------start------------->8---
$ guix install guile -p /tmp/guile
The following package will be installed:
   guile 3.0.4
--8<---------------cut here---------------end--------------->8---

so why are you are saying 3.0.4 is not used when it is the default?


Well, if I understand correctly, your point is the inconsistency between
the default Guile (3.0-latest, i.e., currently 3.0.4) and the Guile
(3.0, i.e., currently 3.0.2) used by most packages in guile-xyz.scm,
especially when there is bytecode difference.  Right?


1:<https://git.savannah.gnu.org/cgit/guix/guix-artwork.git/commit/?id=05e384e811ab58f8d7f37ab92cf9dac416317af5>


All the best,
simon





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

end of thread, other threads:[~2020-12-02 12:55 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-04 18:47 bug#44452: Clash between guile-3.0 and guile-3.0-latest divoplade
2020-11-04 20:15 ` zimoun
2020-11-05  7:02   ` divoplade
2020-11-05  7:39   ` divoplade
2020-11-05 10:29 ` Leo Prikler
2020-11-05 14:48   ` divoplade
2020-11-05 15:29     ` zimoun
2020-11-06 10:07 ` Ludovic Courtès
2020-11-06 10:22   ` divoplade
2020-12-01 21:41     ` zimoun
2020-12-01 21:56       ` divoplade
2020-12-01 22:19         ` zimoun
2020-12-02  9:10           ` divoplade
2020-12-02 11:11             ` zimoun
2020-12-02 11:48               ` divoplade
2020-12-02 12:50                 ` zimoun

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