[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/11: gnu: earlyoom: Update to 1.6.2.
From: |
guix-commits |
Subject: |
03/11: gnu: earlyoom: Update to 1.6.2. |
Date: |
Tue, 24 Nov 2020 06:22:51 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit c4d35da424e42d0770a6a84d5c083ed2b7f23556
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Tue Nov 24 00:07:58 2020 +0100
gnu: earlyoom: Update to 1.6.2.
* gnu/packages/linux.scm (earlyoom): Update to 1.6.2.
[arguments]: Remove obsolete 'install-contribs phase.
Add a new 'disable-failing-test phase.
---
gnu/packages/linux.scm | 32 ++++++++++++++++----------------
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index b31ee20..fa5ddcb 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -3198,7 +3198,7 @@ from the module-init-tools project.")
(define-public earlyoom
(package
(name "earlyoom")
- (version "1.3.1")
+ (version "1.6.2")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -3207,23 +3207,23 @@ from the module-init-tools project.")
(file-name (git-file-name name version))
(sha256
(base32
- "06sd3jpkdrwqbphsf8jrgs5rxfi7j3xjmygjjvj4xjk4gncz7r2i"))))
+ "16iyn51xlrsbshc7p5xl2338yyfzknaqc538sa7mamgccqwgyvvq"))))
(build-system gnu-build-system)
(arguments
- `(#:phases (modify-phases %standard-phases
- (delete 'configure)
- (add-before 'check 'set-home
- (lambda _
- (setenv "HOME" (getcwd))
- #t))
- (add-after 'build 'install-contribs
- ;; Install what seems useful from the contrib directory.
- (lambda* (#:key outputs #:allow-other-keys)
- (let* ((out (assoc-ref outputs "out"))
- (contrib (string-append
- out "/share/earlyoom/contrib")))
- (install-file "contrib/notify_all_users.py" contrib)
- #t))))
+ `(#:phases
+ (modify-phases %standard-phases
+ (delete 'configure) ; no configure script
+ (add-before 'check 'set-go-HOME
+ (lambda _
+ (setenv "HOME" (getcwd))
+ #t))
+ (add-before 'check 'disable-failing-test
+ (lambda _
+ ;; This test relies on writing to /proc/%d/oom_score_adj.
+ (substitute* "testsuite_cli_test.go"
+ (("TestI" match)
+ (string-append "skipped" match)))
+ #t)))
#:make-flags (let* ((prefix (assoc-ref %outputs "out")))
(list ,(string-append "CC=" (cc-for-target))
(string-append "VERSION=v" ,version)
- branch master updated (097b725 -> eddf3db), guix-commits, 2020/11/24
- 02/11: gnu: youtube-dl: Update to 2020.11.24., guix-commits, 2020/11/24
- 01/11: gnu: poppler-data: Update to 0.4.10., guix-commits, 2020/11/24
- 03/11: gnu: earlyoom: Update to 1.6.2.,
guix-commits <=
- 04/11: gnu: python-databricks-cli: Update to 0.14.1., guix-commits, 2020/11/24
- 05/11: gnu: axel: Update to 2.17.10., guix-commits, 2020/11/24
- 06/11: gnu: mupdf: Remove more bundled software., guix-commits, 2020/11/24
- 07/11: gnu: mupdf: Update to 1.18.0., guix-commits, 2020/11/24
- 09/11: gnu: chirp: Update to 20201121., guix-commits, 2020/11/24
- 10/11: gnu: s6-linux-init: Update to 1.0.5.1., guix-commits, 2020/11/24
- 11/11: gnu: s6-linux-init: Omit static library., guix-commits, 2020/11/24
- 08/11: gnu: mupdf: Prepare for cross-compilation., guix-commits, 2020/11/24