[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/04: hydra: Honor the 'max-silent-time' package property.
From: |
Ludovic Courtès |
Subject: |
03/04: hydra: Honor the 'max-silent-time' package property. |
Date: |
Tue, 19 Jan 2016 22:47:48 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit af46761302db744257ca06ad3c0aa7cc3be1c5ce
Author: Ludovic Courtès <address@hidden>
Date: Tue Jan 19 22:11:12 2016 +0100
hydra: Honor the 'max-silent-time' package property.
Suggested by Mark H Weaver <address@hidden>.
* build-aux/hydra/gnu-system.scm (package->alist): Add
'max-silent-time' pair.
---
build-aux/hydra/gnu-system.scm | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm
index d586d90..c3cb9cc 100644
--- a/build-aux/hydra/gnu-system.scm
+++ b/build-aux/hydra/gnu-system.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <address@hidden>
+;;; Copyright © 2012, 2013, 2014, 2015, 2016 Ludovic Courtès <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -78,6 +78,9 @@
(license . ,(package-license package))
(home-page . ,(package-home-page package))
(maintainers . ("address@hidden"))
+ (max-silent-time . ,(or (assoc-ref (package-properties package)
+ 'max-silent-time)
+ 3600)) ; 1 hour by default
(timeout . ,(or (assoc-ref (package-properties package) 'timeout)
72000)))) ; 20 hours by default