diff options
Diffstat (limited to 'sys-apps/earlyoom')
-rw-r--r-- | sys-apps/earlyoom/Manifest | 2 | ||||
-rw-r--r-- | sys-apps/earlyoom/files/earlyoom | 6 | ||||
-rw-r--r-- | sys-apps/earlyoom/files/earlyoom-1.3-test-fixed.patch | 34 |
3 files changed, 0 insertions, 42 deletions
diff --git a/sys-apps/earlyoom/Manifest b/sys-apps/earlyoom/Manifest index 02b69427cd87..c49ff9d67e23 100644 --- a/sys-apps/earlyoom/Manifest +++ b/sys-apps/earlyoom/Manifest @@ -1,5 +1,3 @@ -AUX earlyoom 122 BLAKE2B 1e3e121135740b4f56f6929d1389cce42374db03713e7c5c6281a422f0f6ba02db3f04f8d9a72f19c8853795b4debcdf2ccffcdd4f095f425b620e931d51a8c4 SHA512 7dfd1c8aff690d2ed7137b250deac4135c48ca5fd04390468b3ea1569df81316f009e5c70175734c9f8dd21e46a13015905d3daaffe76d67eef936cda670e305 -AUX earlyoom-1.3-test-fixed.patch 1425 BLAKE2B 47231739b8bbb5a4a290266b85900dc18e8ef72d3dba8c20c8d617b06cc30c95d4c913e07e0e9a9e6fc6f095591538b8b37d7c72e7ac90f9b49f6a4706051280 SHA512 e906c6c4f7d835fb43f09d3c701a1d78b8c2d1e9642d1b7512a2e90094fe41b8f9a811da94af38f5442a976351d6cfd35557ef40a685466ea6ba80dcef5293a1 AUX earlyoom-r1 138 BLAKE2B a95a6db627133ed3d9e4fa02505a1fb8abfc17c345a16df9956d7842c5cb9b7cefd1c68b82d7cc42ad101dcf65c06ac526e0e1241989d4aed0fc87b62d8e7bc9 SHA512 f7223b7ad2780ae121ef91d19b177d6fda50eb8d4f3995ac47b34f843448917a5a5290b8e657a9d7ed7fb8a958b362172d8a6453c5d5e43ff8c78cc25456d6f8 DIST earlyoom-1.6.2.tar.gz 49006 BLAKE2B 85a02d4171ba1bb94d5ddf573b8f5ac58d28a0cf9766f4fb2c96be5b45eee7aab853008c36f9e3aac76685b70008051faa2fe339797ecf9137469f089935a6b3 SHA512 d622a5347591d2017f6e62255940482af431e647acf1b35ab035e0dbfd44da7fc52633e6dd6433e42a1348fd294d766550ba092260f3ec59bd51e545f08e466b DIST earlyoom-1.7-deps.tar.xz 1974036 BLAKE2B ff378ae64b6b293e3b9d9fa05607209a515edadd18edcb70e204de1e0808b06dfaca7e6dcddeffbda9dae8abbadf7ac6074df725997b96be8a8d8cc35ac4d8c8 SHA512 67072000f8695935f77494faca84c74c67de4b9a4b3b889b310ad674f28c7ed85a0d59e91f4d5caa06cc1d7c1e7ef31aa3a373851361b905dc29e6d4d04eeeb9 diff --git a/sys-apps/earlyoom/files/earlyoom b/sys-apps/earlyoom/files/earlyoom deleted file mode 100644 index 374c0d1af231..000000000000 --- a/sys-apps/earlyoom/files/earlyoom +++ /dev/null @@ -1,6 +0,0 @@ -#!/sbin/openrc-run -name=earlyoom -command=/usr/bin/earlyoom -command_args=-k -command_background=1 -pidfile=/run/earlyoom.pid diff --git a/sys-apps/earlyoom/files/earlyoom-1.3-test-fixed.patch b/sys-apps/earlyoom/files/earlyoom-1.3-test-fixed.patch deleted file mode 100644 index 8c6fc3ab6df5..000000000000 --- a/sys-apps/earlyoom/files/earlyoom-1.3-test-fixed.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 3648b351e88331f3f2e46af4ae0ddd19e27bc7c2 Mon Sep 17 00:00:00 2001 -From: Jakob Unterwurzacher <jakobunt@gmail.com> -Date: Mon, 8 Jul 2019 21:07:04 +0200 -Subject: [PATCH] tests: fix TestCli failure when all processes have badness 0 - -On a machine with a lot of RAM and no big processes running, -all processes may have badness 0, and we will get - - ^ new victim (higher vm_rss) - -in the debug output, but not - - ^ new victim (higher badness) - -. This is not a failure. - -Fixes https://github.com/rfjakob/earlyoom/issues/137 ---- - tests/cli_test.go | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/tests/cli_test.go b/tests/cli_test.go -index 7085290..ef4abee 100644 ---- a/tests/cli_test.go -+++ b/tests/cli_test.go -@@ -72,7 +72,7 @@ func TestCli(t *testing.T) { - {args: nil, code: -1, stderrContains: startupMsg, stdoutContains: memReport}, - {args: []string{"-p"}, code: -1, stdoutContains: memReport}, - {args: []string{"-v"}, code: 0, stderrContains: "earlyoom v", stdoutEmpty: true}, -- {args: []string{"-d"}, code: -1, stdoutContains: "^ new victim (higher badness)"}, -+ {args: []string{"-d"}, code: -1, stdoutContains: "^ new victim"}, - {args: []string{"-m", "1"}, code: -1, stderrContains: " 1 %", stdoutContains: memReport}, - {args: []string{"-m", "0"}, code: 15, stderrContains: "fatal", stdoutEmpty: true}, - {args: []string{"-m", "-10"}, code: 15, stderrContains: "fatal", stdoutEmpty: true}, |