diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-01-12 17:23:08 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-01-13 12:41:30 +0100 |
commit | b15af0ce378b4b3fa551393445486ea9783c2f90 (patch) | |
tree | 72eebb447412b58aabc51c02d1cbf83dfabced50 /gnu/packages | |
parent | 1124683d8cfddf7869c52ff2a4e4fb402a36ac88 (diff) | |
download | guix-b15af0ce378b4b3fa551393445486ea9783c2f90.tar guix-b15af0ce378b4b3fa551393445486ea9783c2f90.tar.gz |
gnu: lcov: Update to 1.13.
* gnu/packages/code.scm (lcov): Update to 1.13.
[arguments]: Remove superfluous #:make-flags.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/code.scm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm index 81e3ae6b64..042ea73a8c 100644 --- a/gnu/packages/code.scm +++ b/gnu/packages/code.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2015 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il> -;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org> ;;; Copyright © 2017 Andy Wingo <wingo@igalia.com> ;;; Copyright © 2018 Fis Trivial <ybbs.daans@hotmail.com> @@ -359,23 +359,23 @@ stack traces.") (define-public lcov (package (name "lcov") - (version "1.12") + (version "1.13") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/ltp/Coverage%20Analysis" "/LCOV-" version "/lcov-" version ".tar.gz")) (sha256 (base32 - "19wfifdpxxivhq9adbphanjfga9bg9spms9v7c3589wndjff8x5l")))) + "08wabnb0gcjqk0qc65a6cgbbmz6b8lvam3p7byh0dk42hj3jr5s4")))) (build-system gnu-build-system) (arguments - '(#:make-flags (let ((out (assoc-ref %outputs "out"))) - (list (string-append "PREFIX=" out) - (string-append "BIN_DIR=" out "/bin") - (string-append "MAN_DIR=" out "/share/man"))) - #:phases (modify-phases %standard-phases - (delete 'configure)) - #:tests? #f)) ;no 'check' target + '(#:make-flags + (let ((out (assoc-ref %outputs "out"))) + (list (string-append "PREFIX=" out))) + #:phases + (modify-phases %standard-phases + (delete 'configure)) ; no configure script + #:tests? #f)) ; no 'check' target (inputs `(("perl" ,perl))) (home-page "http://ltp.sourceforge.net/coverage/lcov.php") (synopsis "Code coverage tool that enhances GNU gcov") |