mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
profiles: Add elapsed time to manual-database hook to output message.
* guix/profiles.scm (manual-database): Add elapsed time to manual-database hook to output message. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
d03b34cf19
commit
6d1ae43dcb
1 changed files with 13 additions and 5 deletions
|
@ -957,6 +957,7 @@ the entries in MANIFEST."
|
|||
#~(begin
|
||||
(use-modules (guix build utils)
|
||||
(srfi srfi-1)
|
||||
(srfi srfi-19)
|
||||
(srfi srfi-26))
|
||||
|
||||
(define entries
|
||||
|
@ -1011,16 +1012,23 @@ the entries in MANIFEST."
|
|||
(mkdir-p man-directory)
|
||||
(setenv "MANPATH" (string-join entries ":"))
|
||||
|
||||
(format #t "creating manual page database for ~a packages...~%"
|
||||
(format #t "Creating manual page database for ~a packages... "
|
||||
(length entries))
|
||||
(force-output)
|
||||
|
||||
(zero? (system* #+(file-append man-db "/bin/mandb")
|
||||
"--quiet" "--create"
|
||||
"-C" "man_db.conf"))))
|
||||
(let* ((start-time (current-time))
|
||||
(exit-status (system* #+(file-append man-db "/bin/mandb")
|
||||
"--quiet" "--create"
|
||||
"-C" "man_db.conf"))
|
||||
(duration (time-difference (current-time) start-time)))
|
||||
(format #t "done in ~,3f s~%"
|
||||
(+ (time-second duration)
|
||||
(* (time-nanosecond duration) (expt 10 -9))))
|
||||
(force-output)
|
||||
(zero? exit-status))))
|
||||
|
||||
(gexp->derivation "manual-database" build
|
||||
#:modules '((guix build utils)
|
||||
(srfi srfi-19)
|
||||
(srfi srfi-26))
|
||||
#:local-build? #t))
|
||||
|
||||
|
|
Loading…
Reference in a new issue