gnu: boinc-client, boinc-server: Update to 7.16.17.
* gnu/packages/distributed.scm (boinc-client): Update to 7.16.17. (boinc-server): Run the test suite.
This commit is contained in:
parent
1b31303294
commit
d20720755e
1 changed files with 5 additions and 6 deletions
|
@ -44,7 +44,7 @@
|
||||||
(define-public boinc-client
|
(define-public boinc-client
|
||||||
(package
|
(package
|
||||||
(name "boinc-client")
|
(name "boinc-client")
|
||||||
(version "7.16.6")
|
(version "7.16.17")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -55,7 +55,7 @@
|
||||||
(file-name (git-file-name "boinc" version))
|
(file-name (git-file-name "boinc" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"00xpzxxnki9hsf2vg9p67dk9ilw9ychpgm09fp3c41zyylb33ml5"))))
|
"1p8y3mnf5yfhavhqxwf9v68prg1601h8q1pllm5z89zh661di3mj"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments '(#:configure-flags '("--disable-server")))
|
(arguments '(#:configure-flags '("--disable-server")))
|
||||||
(inputs `(("openssl" ,openssl)
|
(inputs `(("openssl" ,openssl)
|
||||||
|
@ -82,13 +82,12 @@ resources). It supports virtualized, parallel, and GPU-based applications.")
|
||||||
(license (list license:lgpl3+ license:gpl3+))))
|
(license (list license:lgpl3+ license:gpl3+))))
|
||||||
|
|
||||||
(define-public boinc-server
|
(define-public boinc-server
|
||||||
|
;; XXX The server and client packages duplicate many files such as /lib.
|
||||||
|
;; TODO: consolidate them?
|
||||||
(package (inherit boinc-client)
|
(package (inherit boinc-client)
|
||||||
(name "boinc-server")
|
(name "boinc-server")
|
||||||
(arguments '(#:configure-flags '("--disable-client" "--disable-manager")
|
(arguments '(#:configure-flags '("--disable-client" "--disable-manager")
|
||||||
#:parallel-build? #f
|
#:parallel-build? #f))
|
||||||
#:tests? #f)) ; FIXME: Looks like bad test syntax in the
|
|
||||||
; source package, 2 tests fail. Disable for
|
|
||||||
; now.
|
|
||||||
(inputs `(("openssl" ,openssl)
|
(inputs `(("openssl" ,openssl)
|
||||||
("curl" ,curl)
|
("curl" ,curl)
|
||||||
("mariadb:dev" ,mariadb "dev")
|
("mariadb:dev" ,mariadb "dev")
|
||||||
|
|
Reference in a new issue