aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/nano.scm
diff options
context:
space:
mode:
authorPeter Lo <peterloleungyau@gmail.com>2020-06-28 17:29:42 +0800
committerRicardo Wurmus <rekado@elephly.net>2020-09-11 11:01:58 +0200
commit466ccbcad620507bea46ed6fbff483f25aebd403 (patch)
tree546ff6352180a269da50e13c181636ee980d0c9f /gnu/packages/nano.scm
parent38c2eb31bb11090fee73420d6c6aaa311be6231a (diff)
downloadguix-466ccbcad620507bea46ed6fbff483f25aebd403.tar.gz
guix-466ccbcad620507bea46ed6fbff483f25aebd403.zip
gnu: Add r-exactranktests.
* gnu/packages/cran.scm (r-exactranktests): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
Diffstat (limited to 'gnu/packages/nano.scm')
0 files changed, 0 insertions, 0 deletions
services: mcron: Add 'schedule' action....Inspired by <https://lists.gnu.org/archive/html/help-guix/2018-07/msg00035.html>. * gnu/services/mcron.scm (shepherd-schedule-action): New procedure. (mcron-shepherd-services): Add 'actions' field. * gnu/tests/base.scm (run-mcron-test)["schedule action"]: New test. * doc/guix.texi (Scheduled Job Execution): Mention 'herd schedule'. Ludovic Courtès 2018-01-21services: herd: 'with-shepherd' no longer leaves an open connection....* gnu/services/herd.scm (with-shepherd): Use 'dynamic-wind' and close CONNECTION at the end. Ludovic Courtès 2017-08-23services: herd: Actions return a list of results....Fixes a regression introduced in 0642838b2e9ab2bd988dccb64b9e1130006347bf. * gnu/services/herd.scm (invoke-action): Explain that we get a list of results. (current-services): Expect a list of result and use the first one. (unload-service, %load-file, eval-there): Likewise. Ludovic Courtès 2017-08-08services: herd: Add a stop-service procedure....* gnu/services/herd.scm (stop-service): New procedure. Christopher Baines 2017-08-08services: herd: Fix matching ok responses from shepherd service....Previously the match expression case for a successful response (where error is #f) required that the result component contained a list with a single element. As far as I see when looking at the responses from the shepherd, this is not normally the case. Therefore, to avoid treating successful responses as errors, make the match requirement more permissive, accepting any value. * gnu/services/herd.scm (invoke-action): Change match condition for ok responses. Christopher Baines