gnu: c-reduce: Upgrade to 2.5.0.

* gnu/packages/debug.scm (c-reduce): Upgrade to 2.5.0.
[inputs]: Remove delta and perl-benchmark-timer.  Add perl-term-readkey.
[arguments]: Adjust wrapper libraries.
This commit is contained in:
Eric Bavier 2016-08-29 17:21:08 -05:00
parent ab78618f07
commit 28f45dd7d7
No known key found for this signature in database
GPG Key ID: 1EBBD204781F962C
1 changed files with 5 additions and 10 deletions

View File

@ -88,7 +88,7 @@ program to exhibit a bug.")
(define-public c-reduce (define-public c-reduce
(package (package
(name "c-reduce") (name "c-reduce")
(version "2.3.0") (version "2.5.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
@ -97,26 +97,21 @@ program to exhibit a bug.")
"creduce-" version ".tar.gz"))) "creduce-" version ".tar.gz")))
(sha256 (sha256
(base32 (base32
"0r9lvnifjcnsrkrk8k4mha1kmmb93jya7alm523ck59y3173bpi0")) "1r23lhzq3dz8vi2dalxk5las8bf0av2w94hxxbs61pr73m77ik9d"))))
(modules '((guix build utils)))
(snippet
'(substitute* "clang_delta/TransformationManager.cpp"
(("llvm/Config/config.h") "llvm/Config/llvm-config.h")))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs (inputs
`(("astyle" ,astyle) `(("astyle" ,astyle)
("delta" ,delta)
("llvm" ,llvm) ("llvm" ,llvm)
("clang" ,clang) ("clang" ,clang)
("flex" ,flex) ("flex" ,flex)
("indent" ,indent) ("indent" ,indent)
("perl" ,perl) ("perl" ,perl)
("benchmark-timer" ,perl-benchmark-timer)
("exporter-lite" ,perl-exporter-lite) ("exporter-lite" ,perl-exporter-lite)
("file-which" ,perl-file-which) ("file-which" ,perl-file-which)
("getopt-tabular" ,perl-getopt-tabular) ("getopt-tabular" ,perl-getopt-tabular)
("regex-common" ,perl-regexp-common) ("regex-common" ,perl-regexp-common)
("sys-cpu" ,perl-sys-cpu))) ("sys-cpu" ,perl-sys-cpu)
("term-readkey" ,perl-term-readkey)))
(arguments (arguments
`(#:phases (alist-cons-after `(#:phases (alist-cons-after
'install 'set-load-paths 'install 'set-load-paths
@ -131,7 +126,7 @@ program to exhibit a bug.")
(string-append (assoc-ref inputs p) (string-append (assoc-ref inputs p)
"/lib/perl5/site_perl/" "/lib/perl5/site_perl/"
,(package-version perl))) ,(package-version perl)))
'("benchmark-timer" "exporter-lite" '("term-readkey" "exporter-lite"
"file-which" "getopt-tabular" "file-which" "getopt-tabular"
"regex-common" "sys-cpu")))))) "regex-common" "sys-cpu"))))))
%standard-phases))) %standard-phases)))