gnu: dejagnu: Update to 1.6.

* gnu/packages/dejagnu.scm (dejagnu): Update to 1.6.
[home-page]: Use https.
[license]: Update to gpl3+.
This commit is contained in:
Efraim Flashner 2016-10-09 08:47:54 +03:00
parent caaa715d16
commit 539ab1afdd
No known key found for this signature in database
GPG key ID: F4C1D3917EACEE93

View file

@ -26,7 +26,7 @@ (define-module (gnu packages dejagnu)
(define-public dejagnu (define-public dejagnu
(package (package
(name "dejagnu") (name "dejagnu")
(version "1.5.3") (version "1.6")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
@ -34,7 +34,7 @@ (define-public dejagnu
version ".tar.gz")) version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"069z3qrdv35cm2sbnfr5yjzplrqj9f61cchxis7j9mm19hv8x6q9")))) "0qypaakd2065jgpcv84zcsibl8gph3p334gb2qdmhsrbirhlmdh0"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs `(("expect" ,expect))) (inputs `(("expect" ,expect)))
(arguments (arguments
@ -74,10 +74,10 @@ (define-public dejagnu
expect "/bin:$PATH\n"))))) expect "/bin:$PATH\n")))))
%standard-phases)))) %standard-phases))))
(home-page (home-page
"http://www.gnu.org/software/dejagnu/") "https://www.gnu.org/software/dejagnu/")
(synopsis "GNU software testing framework") (synopsis "GNU software testing framework")
(description (description
"DejaGnu is a framework for testing software. In effect, it serves as "DejaGnu is a framework for testing software. In effect, it serves as
a front-end for all tests written for a program. Thus, each program can have a front-end for all tests written for a program. Thus, each program can have
multiple test suites, which are then all managed by a single harness.") multiple test suites, which are then all managed by a single harness.")
(license gpl2+))) (license gpl3+)))