[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#22628: Emacs: ^ in installed package list misses some upgrades
From: |
Ludovic Courtès |
Subject: |
bug#22628: Emacs: ^ in installed package list misses some upgrades |
Date: |
Fri, 12 Feb 2016 14:49:50 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux) |
Alex Kost <address@hidden> skribis:
> The fact that we have 2 versions is the answer. In Emacs UI a package
> is not considered to be obsolete if there is a package definition with
> the same name+version.
>
> That's why "texinfo 6.0" is green in the list, not red (as obsolete
> packages).
Oh, to me, ^ meant “upgrade”, like ‘guix package -u’ but only taking
into account the version number (‘guix package -u’ upgrades if the store
file name differs, even if the version number is the same.)
> I believe marking such packages as obsolete is not correct and it may be
> confusing. See <https://gnunet.org/bot/log/guix/2016-02-09#T909651>.
I think we need a different solution for packages that have several
series. For instance, we could have:
(define gnupg-2.0
(package …
(properties `((series . "2.0")))))
and that would lead the various UIs to upgrade only to a package whose
version prefix is “2.0”.
WDYT?
Ludo’.