From 86300e61b99994ccf03e240c9aa0e7e58120f83c Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Mon, 18 Dec 2017 19:50:39 -0500 Subject: gnu: linux-libre@4.4: Update to 4.4.106. * gnu/packages/linux.scm (linux-libre-4.4): Update to 4.4.106. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 75263a08e..2ac828c84 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -390,8 +390,8 @@ It has been modified to remove all non-free binary blobs.") #:configuration-file kernel-config)) (define-public linux-libre-4.4 - (make-linux-libre "4.4.105" - "177qvci7wfrc23vi11bnyayfivxf6d8hankgrzv26jr3z6j0rall" + (make-linux-libre "4.4.106" + "1dn67fl8lbckjxcra1d02fqjald71cxp4fq3bld4wc1r4saanqi7" %intel-compatible-systems #:configuration-file kernel-config)) -- cgit v1.3 From 48e1f444152363918195427f46cc26dbba30792a Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Mon, 18 Dec 2017 19:51:22 -0500 Subject: gnu: linux-libre@4.9: Update to 4.9.70. * gnu/packages/linux.scm (linux-libre-4.9): Update to 4.9.70. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 2ac828c84..351490f47 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -384,8 +384,8 @@ It has been modified to remove all non-free binary blobs.") #:configuration-file kernel-config)) (define-public linux-libre-4.9 - (make-linux-libre "4.9.69" - "0xkqbh8fpx47appszjbxzljr6vr0wyk0fphlkynpcrmingk4b98j" + (make-linux-libre "4.9.70" + "1bwfk68zzwmznhf3zv858wpav2r43g7hg4wxcdyfamy8k38v0r43" %intel-compatible-systems #:configuration-file kernel-config)) -- cgit v1.3 From 7a6a08c945e64b844c8d7655d883b5c30d9092fb Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Mon, 18 Dec 2017 19:52:02 -0500 Subject: gnu: linux-libre: Update to 4.14.7. * gnu/packages/linux.scm (%linux-libre-version): Update to 4.14.7. (%linux-libre-hash): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 351490f47..7ab2ba84d 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -370,8 +370,8 @@ It has been modified to remove all non-free binary blobs.") (define %intel-compatible-systems '("x86_64-linux" "i686-linux")) (define %linux-compatible-systems '("x86_64-linux" "i686-linux" "armhf-linux")) -(define %linux-libre-version "4.14.6") -(define %linux-libre-hash "0q6dl2shkj5dkf0wgzgfyaq0axk97w05j618xi619y9xqph4ql79") +(define %linux-libre-version "4.14.7") +(define %linux-libre-hash "1hwmg4mqpm3n6qxcjl01fbl3pbbirw9727jzfc7gy6livifyibfi") ;; linux-libre configuration for armhf-linux is derived from Debian armmp. It ;; supports qemu "virt" machine and possibly a large number of ARM boards. -- cgit v1.3 From 8bc6956bbd28b749538d113a214a63a93039537f Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sat, 2 Dec 2017 18:08:21 -0500 Subject: gnu: rng-tools: Update to 6.1. Rng-tools development appears to have moved to GitHub [0]: "NOTE: The rng-tools project hasn't seen updates in some time, but is still in active use. To facilitate ongoing development, the rng-tools project is moved to here: https://github.com/nhorman/rng-tools" [0] https://sourceforge.net/p/gkernel/wiki/Home/ * gnu/packages/linux.scm (rng-tools): Update to 6.1. [source]: Use new upstream URL and give a descriptive file-name. [arguments]: Add a 'bootstrap' phase. [native-inputs]: Add autoconf, automake, and pkg-config. [inputs]: Add sysfsutils. --- gnu/packages/linux.scm | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 7ab2ba84d..2eb35c92f 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3490,16 +3490,30 @@ The following service daemons are also provided: (define-public rng-tools (package (name "rng-tools") - (version "5") + (version "6.1") (source (origin (method url-fetch) - (uri (string-append - "http://downloads.sourceforge.net/sourceforge/gkernel/" - "rng-tools-" version ".tar.gz")) + (uri (string-append "https://github.com/nhorman/rng-tools/" + "archive/v" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "13h7lc8wl9khhvkr0i3bl5j9bapf8anhqis1lcnwxg1vc2v058b0")))) + "00ywsknjpc9jd9kfmz2syk9l0xkiiwyx5qhl5zvhhc69v6682i31")))) (build-system gnu-build-system) + (arguments + `(;; Avoid using OpenSSL, curl, and libxml2, reducing the closure by 166 MiB. + #:configure-flags '("--without-nistbeacon") + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'bootstrap + (lambda _ + (zero? (system* "sh" "autogen.sh"))))))) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("pkg-config" ,pkg-config))) + (inputs + `(("libsysfs" ,sysfsutils))) (synopsis "Random number generator daemon") (description "Monitor a hardware random number generator, and supply entropy -- cgit v1.3 From 770635e11df514d96da4583d2c21d3c4bb2292ff Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Wed, 20 Dec 2017 18:27:08 -0500 Subject: gnu: linux-libre@4.4: Update to 4.4.107. * gnu/packages/linux.scm (linux-libre-4.4): Update to 4.4.107. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 2eb35c92f..ca7115eca 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -390,8 +390,8 @@ It has been modified to remove all non-free binary blobs.") #:configuration-file kernel-config)) (define-public linux-libre-4.4 - (make-linux-libre "4.4.106" - "1dn67fl8lbckjxcra1d02fqjald71cxp4fq3bld4wc1r4saanqi7" + (make-linux-libre "4.4.107" + "0pfzv15c1qj7a77n8cdmsi77yhlbzv35y7qa03j0b96ajwjsclsp" %intel-compatible-systems #:configuration-file kernel-config)) -- cgit v1.3 From 0786e4bd12639a306a6f038e9f1f5dbb5d2ac4d9 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Wed, 20 Dec 2017 18:27:48 -0500 Subject: gnu: linux-libre@4.9: Update to 4.9.71. * gnu/packages/linux.scm (linux-libre-4.9): Update to 4.9.71. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index ca7115eca..8b94319db 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -384,8 +384,8 @@ It has been modified to remove all non-free binary blobs.") #:configuration-file kernel-config)) (define-public linux-libre-4.9 - (make-linux-libre "4.9.70" - "1bwfk68zzwmznhf3zv858wpav2r43g7hg4wxcdyfamy8k38v0r43" + (make-linux-libre "4.9.71" + "0z4m77zbndlqy43bgl1xhklpjilbvrhbfbcppc55z3f61qwjf0mc" %intel-compatible-systems #:configuration-file kernel-config)) -- cgit v1.3 From 66df43b9aeeba1779f4455d551fee900887a0779 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Wed, 20 Dec 2017 18:28:36 -0500 Subject: gnu: linux-libre: Update to 4.14.8. * gnu/packages/linux.scm (%linux-libre-version): Update to 4.14.8. (%linux-libre-hash): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 8b94319db..ae705f10c 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -370,8 +370,8 @@ It has been modified to remove all non-free binary blobs.") (define %intel-compatible-systems '("x86_64-linux" "i686-linux")) (define %linux-compatible-systems '("x86_64-linux" "i686-linux" "armhf-linux")) -(define %linux-libre-version "4.14.7") -(define %linux-libre-hash "1hwmg4mqpm3n6qxcjl01fbl3pbbirw9727jzfc7gy6livifyibfi") +(define %linux-libre-version "4.14.8") +(define %linux-libre-hash "0y8nggpdgfqfx6dy5k39vj552k5mxamwjn6mldwrhs2aqpsrbwr3") ;; linux-libre configuration for armhf-linux is derived from Debian armmp. It ;; supports qemu "virt" machine and possibly a large number of ARM boards. -- cgit v1.3