gnu: time: Update to 1.9.
* gnu/packages/time.scm (time): Update to 1.9. * tests/guix-build.sh: Update time package to 1.9.
This commit is contained in:
parent
906dcb20f2
commit
64f925cb4b
|
@ -2,7 +2,7 @@
|
||||||
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
|
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
|
||||||
;;; Copyright © 2013, 2017 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2017 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2015, 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2015, 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2015, 2017 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2015, 2017 Leo Famulari <leo@famulari.name>
|
||||||
;;; Copyright © 2015, 2017 Cyril Roelandt <tipecaml@gmail.com>
|
;;; Copyright © 2015, 2017 Cyril Roelandt <tipecaml@gmail.com>
|
||||||
;;; Copyright © 2016 Sou Bunnbu <iyzsong@gmail.com>
|
;;; Copyright © 2016 Sou Bunnbu <iyzsong@gmail.com>
|
||||||
|
@ -43,7 +43,7 @@
|
||||||
(define-public time
|
(define-public time
|
||||||
(package
|
(package
|
||||||
(name "time")
|
(name "time")
|
||||||
(version "1.8")
|
(version "1.9")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -51,7 +51,7 @@
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"06rfg8dn0q2r8pdq8i6brrs6rqrsgvkwbbl4kfx3a6lnal0m8bwa"))))
|
"07jj7cz6lc13iqrpgn81ivqh8rkm73p4rnivwgrrshk23v4g1b7v"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(home-page "https://www.gnu.org/software/time/")
|
(home-page "https://www.gnu.org/software/time/")
|
||||||
(synopsis "Run a command, then display its resource usage")
|
(synopsis "Run a command, then display its resource usage")
|
||||||
|
|
|
@ -184,7 +184,7 @@ test "`guix build superseded -d`" = "`guix build bar -d`"
|
||||||
|
|
||||||
# Parsing package names and versions.
|
# Parsing package names and versions.
|
||||||
guix build -n time # PASS
|
guix build -n time # PASS
|
||||||
guix build -n time@1.8 # PASS, version found
|
guix build -n time@1.9 # PASS, version found
|
||||||
if guix build -n time@3.2; # FAIL, version not found
|
if guix build -n time@3.2; # FAIL, version not found
|
||||||
then false; else true; fi
|
then false; else true; fi
|
||||||
if guix build -n something-that-will-never-exist; # FAIL
|
if guix build -n something-that-will-never-exist; # FAIL
|
||||||
|
|
Loading…
Reference in New Issue