Re: [PATCH] profiles: Report about upgrades.

2014-09-04 Thread Ludovic Courtès
Alex Kost skribis: > Great! I really like it and that ‘right-arrow’ is cool :) :-) > There is just one thing (that shouldn't be mentioned): > > +(lambda (key . args) > + ">") > > I would make it "->". IMHO it is more "understandable" as such > combination is used in outpu

Re: [PATCH] profiles: Report about upgrades.

2014-09-04 Thread Alex Kost
Ludovic Courtès (2014-09-02 23:45 +0400) wrote: > Alex Kost skribis: > >> Ludovic Courtès (2014-08-31 23:57 +0400) wrote: >> >> [...] >> >>> Perhaps even a different format, like, say: >>> >>> The following package will be upgraded: >>> guile 1.8.8 → 2.0.9out /gnu/store/... >>>

Re: [PATCH] profiles: Report about upgrades.

2014-09-02 Thread Ludovic Courtès
Alex Kost skribis: > Ludovic Courtès (2014-08-31 23:57 +0400) wrote: > > [...] > >> Perhaps even a different format, like, say: >> >> The following package will be upgraded: >> guile 1.8.8 → 2.0.9out /gnu/store/... >> >> Thoughts? > > I think, it would be perfect! Commit ef8993

Re: [PATCH] profiles: Report about upgrades.

2014-09-01 Thread Alex Kost
Ludovic Courtès (2014-08-31 23:57 +0400) wrote: [...] > Perhaps even a different format, like, say: > > The following package will be upgraded: > guile 1.8.8 → 2.0.9out /gnu/store/... > > Thoughts? I think, it would be perfect!

Re: [PATCH] profiles: Report about upgrades.

2014-08-31 Thread Jason Self
Ludovic Courtès: > Perhaps even a different format, like, say: > > The following package will be upgraded: > guile 1.8.8 → 2.0.9out /gnu/store/... > > Thoughts? I like that. :)

Re: [PATCH] profiles: Report about upgrades.

2014-08-31 Thread Ludovic Courtès
Alex Kost skribis: > But is it correct to report it like that? I mean if a user has > “guile-1.8.8” and installs “guile-2.0.9” then (with your variant) he > gets: > > The following package will be upgraded: >guile-2.0.9out /gnu/store/... > > I thought it should be: > > The follow

Re: [PATCH] profiles: Report about upgrades.

2014-08-30 Thread Alex Kost
Ludovic Courtès (2014-08-30 23:56 +0400) wrote: > Alex Kost skribis: > >> + (let* ((remove (manifest-matching-entries >> + manifest (manifest-transaction-remove transaction))) >> + (install/upgrade (manifest-transaction-install transaction)) >> + (install '()) >>

Re: [PATCH] profiles: Report about upgrades.

2014-08-30 Thread Ludovic Courtès
Alex Kost skribis: > + (let* ((remove (manifest-matching-entries > + manifest (manifest-transaction-remove transaction))) > + (install/upgrade (manifest-transaction-install transaction)) > + (install '()) > + (upgrade (append-map > + (la

Re: [PATCH] profiles: Report about upgrades.

2014-08-23 Thread Ludovic Courtès
Alex Kost skribis: > From 54c027a227d91acccee68202c24e6ebc27c828fb Mon Sep 17 00:00:00 2001 > From: Alex Kost > Date: Wed, 20 Aug 2014 15:52:36 +0400 > Subject: [PATCH] profiles: Report about upgrades. > > * guix/profiles.scm (manifest-show-transaction): Report about

[PATCH] profiles: Report about upgrades.

2014-08-20 Thread Alex Kost
> > I would just keep the current messages for this patch series, and come > up with an improved message format in a separate patch. Here is my try to add messages about upgraded packages. Is it OK? >From 54c027a227d91acccee68202c24e6ebc27c828fb Mon Sep 17 00:00:00 2001 From: Alex