diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-03-27 00:12:15 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-03-27 00:12:15 +0100 |
commit | 18af6870370226b4d502d7372844e7f2aded5887 (patch) | |
tree | 749d93209bd0cb9710ccaae2207df670f37eaa36 /guix/status.scm | |
parent | 0ab8ad46322bea331ed5f5592843ba35e7f38b37 (diff) | |
parent | 3089b70d766bd9ec70e1464867130b7b864fbe17 (diff) |
Merge branch 'master' into core-updates
Conflicts:
gnu/packages/icu4c.scm
gnu/packages/man.scm
gnu/packages/python-xyz.scm
guix/scripts/environment.scm
guix/scripts/pack.scm
guix/scripts/package.scm
guix/scripts/pull.scm
guix/store.scm
Diffstat (limited to 'guix/status.scm')
-rw-r--r-- | guix/status.scm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/guix/status.scm b/guix/status.scm index cbea4151f2..4b2edc2f3c 100644 --- a/guix/status.scm +++ b/guix/status.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2018, 2019 Ricardo Wurmus <rekado@elephly.net> ;;; ;;; This file is part of GNU Guix. @@ -476,6 +476,14 @@ addition to build events." "applying ~a grafts for ~a..." count)) count drv))) + ('profile + (let ((count (match (assq-ref properties 'profile) + (#f 0) + (lst (or (assq-ref lst 'count) 0))))) + (format port (info (N_ "building profile with ~a package..." + "building profile with ~a packages..." + count)) + count))) ('profile-hook (let ((hook-type (assq-ref properties 'hook))) (or (and=> (hook-message hook-type) |