From b15af0ce378b4b3fa551393445486ea9783c2f90 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 12 Jan 2018 17:23:08 +0100 Subject: gnu: lcov: Update to 1.13. * gnu/packages/code.scm (lcov): Update to 1.13. [arguments]: Remove superfluous #:make-flags. --- gnu/packages/code.scm | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'gnu/packages/code.scm') 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 ;;; Copyright © 2015 Ricardo Wurmus ;;; Copyright © 2016, 2017 Efraim Flashner -;;; Copyright © 2017 Tobias Geerinckx-Rice +;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice ;;; Copyright © 2017 Clément Lassieur ;;; Copyright © 2017 Andy Wingo ;;; Copyright © 2018 Fis Trivial @@ -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") -- cgit v1.2.3