gnu: check: Update to 0.12.0.
* gnu/packages/check.scm (check): Update to 0.12.0. [source](uri): Update to new release URL. (check-0.11.0): Remove variable. * gnu/packages/xdisorg.scm (rofi)[native-inputs]: Replace CHECK-0.11.0 with CHECK.
This commit is contained in:
parent
667082d591
commit
dfdf8d7477
|
@ -64,15 +64,15 @@
|
||||||
(define-public check
|
(define-public check
|
||||||
(package
|
(package
|
||||||
(name "check")
|
(name "check")
|
||||||
(version "0.10.0")
|
(version "0.12.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/libcheck/check/files/71408/"
|
(uri (string-append "https://github.com/libcheck/check/releases/download/"
|
||||||
"/check-" version ".tar.gz"))
|
version "/check-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0lhhywf5nxl3dd0hdakra3aasl590756c9kmvyifb3vgm9k0gxgm"))))
|
"0d22h8xshmbpl9hba9ch3xj8vb9ybm5akpsbbh7yj07fic4h2hj6"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(home-page "https://libcheck.github.io/check/")
|
(home-page "https://libcheck.github.io/check/")
|
||||||
(synopsis "Unit test framework for C")
|
(synopsis "Unit test framework for C")
|
||||||
|
@ -85,20 +85,6 @@ faults or other signals. The output from unit tests can be used within
|
||||||
source code editors and IDEs.")
|
source code editors and IDEs.")
|
||||||
(license license:lgpl2.1+)))
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
;; XXX: Some packages require this newer version. Incorporate this
|
|
||||||
;; into the main 'check' package during the next rebuild cycle.
|
|
||||||
(define-public check-0.11.0
|
|
||||||
(package
|
|
||||||
(inherit check)
|
|
||||||
(version "0.11.0")
|
|
||||||
(source (origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (string-append "https://github.com/libcheck/check/releases"
|
|
||||||
"/download/" version "/check-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"05jn1pgb7hqb937xky2147nnq3r4qy5wwr79rddpax3bms5a9xr4"))))))
|
|
||||||
|
|
||||||
(define-public cunit
|
(define-public cunit
|
||||||
(package
|
(package
|
||||||
(name "cunit")
|
(name "cunit")
|
||||||
|
|
|
@ -1097,7 +1097,7 @@ connectivity of the X server running on a particular @code{DISPLAY}.")
|
||||||
("xcb-util-wm" ,xcb-util-wm)))
|
("xcb-util-wm" ,xcb-util-wm)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("bison" ,bison)
|
`(("bison" ,bison)
|
||||||
("check" ,check-0.11.0)
|
("check" ,check)
|
||||||
("flex" ,flex)
|
("flex" ,flex)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
(arguments
|
(arguments
|
||||||
|
|
Loading…
Reference in New Issue