From 6b4bc27a47e032a86dace3e1efb3b038d9d43f35 Mon Sep 17 00:00:00 2001 From: Rutger Helling Date: Mon, 9 Sep 2019 08:28:52 +0200 Subject: gnu: btrfs-progs: Update to 5.2.2. * gnu/packages/linux.scm (btrfs-progs): Update to 5.2.2. --- 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 270e2e5dcc..b98c6b984d 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3838,7 +3838,7 @@ and copy/paste text in the console and in xterm.") (define-public btrfs-progs (package (name "btrfs-progs") - (version "5.2.1") + (version "5.2.2") (source (origin (method url-fetch) (uri (string-append "mirror://kernel.org/linux/kernel/" @@ -3846,7 +3846,7 @@ and copy/paste text in the console and in xterm.") "btrfs-progs-v" version ".tar.xz")) (sha256 (base32 - "0crjv3i20nyj2dagfw6q7byshscpn6j7wlqch3apkzzzk00lmb1n")))) + "1imivxjppi8zl27gn472pwpk8bg5dijkbyi340by31vhy7dj24w2")))) (build-system gnu-build-system) (outputs '("out" "static")) ; static versions of the binaries in "out" -- cgit 1.4.1 From ae1bab3e95506663de62b8868ba96682716d13d1 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 10 Sep 2019 01:34:39 +0200 Subject: gnu: fakeroot: Update to 1.24. * gnu/packages/linux.scm (fakeroot): Update to 1.24. [source]: Adjust and use HTTPS. --- gnu/packages/linux.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index b98c6b984d..92b9d2ece1 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -5862,15 +5862,15 @@ the superuser to make device nodes.") (define-public fakeroot (package (name "fakeroot") - (version "1.23") + (version "1.24") (source (origin (method url-fetch) - (uri (string-append "http://ftp.debian.org/debian/pool/main/f/" - "fakeroot/fakeroot_" version ".orig.tar.xz")) + (uri (string-append "https://deb.debian.org/debian/pool/main/f/" + "fakeroot/fakeroot_" version ".orig.tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1xpl0s2yjyjwlf832b6kbkaa5921liybaar13k7n45ckd9lxd700")))) + "1vb6f93hjyqnwx8dc8mm3dgma7axgqk8s7sdsjs8l2rpc0qmn11f")))) (build-system gnu-build-system) (arguments `(#:phases -- cgit 1.4.1 From 389cae8b0727bff958e4a2dd98526cf7edbe9ade Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 10 Sep 2019 23:18:39 +0200 Subject: gnu: haveged: Update to 1.9.6. * gnu/packages/linux.scm (haveged): Update to 1.9.6. --- gnu/packages/linux.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 92b9d2ece1..8b18587c76 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4455,16 +4455,16 @@ cpufreq sub-system is enabled or not.") (define-public haveged (package (name "haveged") - (version "1.9.4") + (version "1.9.6") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/jirka-h/haveged.git") - (commit version))) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1hrwzjd4byq4fdrg8svww3d8x449k80jxxrjy9v6jvzhfv19rvxr")))) + (base32 "11kr19n2f87izsj341lv5amhd1wc2ckfmqr9pq5fxix8pkbs94rh")))) (build-system gnu-build-system) (home-page "http://www.issihosts.com/haveged") (synopsis "Entropy source for the Linux random number generator") -- cgit 1.4.1 From 6664ec0c8a978accebc3a7eadd6a83dc4a4b28e8 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 10 Sep 2019 23:19:08 +0200 Subject: gnu: haveged: Use HTTPS home page. * gnu/packages/linux.scm (haveged)[home-page]: Use HTTPS. --- gnu/packages/linux.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 8b18587c76..38bfa09b2b 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4466,7 +4466,7 @@ cpufreq sub-system is enabled or not.") (sha256 (base32 "11kr19n2f87izsj341lv5amhd1wc2ckfmqr9pq5fxix8pkbs94rh")))) (build-system gnu-build-system) - (home-page "http://www.issihosts.com/haveged") + (home-page "https://www.issihosts.com/haveged") (synopsis "Entropy source for the Linux random number generator") (description "haveged generates an unpredictable stream of random numbers for use by -- cgit 1.4.1 From 8e42b087f09aade76076b8bda0d2a1cfaceba35b Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 10 Sep 2019 23:23:01 +0200 Subject: gnu: haveged: Use @acronym in description. * gnu/packages/linux.scm (havege)[description]: Substitute @acronym for @dfn mark-up. --- gnu/packages/linux.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 38bfa09b2b..1fc4d7d98e 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4475,10 +4475,10 @@ standard mechanisms for filling the entropy pool may not be sufficient for systems with high needs or limited user interaction, such as headless servers. @command{haveged} runs as a privileged daemon, harvesting randomness from the -indirect effects of hardware events on hidden processor state using the HArdware -Volatile Entropy Gathering and Expansion (@dfn{HAVEGE}) algorithm. It tunes -itself to its environment and provides the same built-in test suite for the -output stream as used on certified hardware security devices. +indirect effects of hardware events on hidden processor state using the +@acronym{HAVEGE, HArdware Volatile Entropy Gathering and Expansion} algorithm. +It tunes itself to its environment and provides the same built-in test suite +for the output stream as used on certified hardware security devices. The quality of the randomness produced by this algorithm has not been proven. It is recommended to run it together with another entropy source like rngd, and -- cgit 1.4.1 From c5e3f4f0438cfde1cb9133caf8178a1ed4bd6695 Mon Sep 17 00:00:00 2001 From: Rutger Helling Date: Wed, 11 Sep 2019 10:19:59 +0200 Subject: gnu: libnftnl: Update to 1.1.4. * gnu/packages/linux.scm (libnftnl): Update to 1.1.4. --- 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 1fc4d7d98e..92831b63a8 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -5128,14 +5128,14 @@ re-use code and to avoid re-inventing the wheel.") (define-public libnftnl (package (name "libnftnl") - (version "1.1.3") + (version "1.1.4") (source (origin (method url-fetch) (uri (string-append "mirror://netfilter.org/libnftnl/" "libnftnl-" version ".tar.bz2")) (sha256 - (base32 "03xszkcpqk3s1rqc6vh7g5j13kh3d3yjnvjhk5scds3an39rgp92")))) + (base32 "087dfc2n4saf2k68hyi4byvgz5grwpw5kfjvmkpn3wmd8y1riiy8")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) -- cgit 1.4.1 From f8b7c35ad0f06cd2cdd508ad6869d29530beb3c8 Mon Sep 17 00:00:00 2001 From: Rutger Helling Date: Wed, 11 Sep 2019 10:20:26 +0200 Subject: gnu: nftables: Update to 0.9.2. * gnu/packages/linux.scm (nftables): Update to 0.9.2. --- 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 92831b63a8..148254e63f 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -5152,7 +5152,7 @@ used by nftables.") (define-public nftables (package (name "nftables") - (version "0.9.0") + (version "0.9.2") (source (origin (method url-fetch) @@ -5160,7 +5160,7 @@ used by nftables.") "/files/nftables-" version ".tar.bz2")) (sha256 (base32 - "14bygs6vg2v448cw5r4pxqi8an29hw0m9vab8hpmgjmrzjsq30dd")))) + "1x8kalbggjq44j4916i6vyv1rb20dlh1dcsf9xvzqsry2j063djw")))) (build-system gnu-build-system) (arguments `(#:configure-flags '("--disable-man-doc"))) ; FIXME: Needs docbook2x. -- cgit 1.4.1 From 489f540b4e625324a7f5009f9fef3160bd2c42fc Mon Sep 17 00:00:00 2001 From: Rutger Helling Date: Mon, 16 Sep 2019 14:06:09 +0200 Subject: gnu: linux-libre: Update to 5.2.15. * gnu/packages/linux.scm (linux-libre): Update to 5.2.15. --- 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 148254e63f..c9baecfa28 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -350,10 +350,10 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." "linux-" version ".tar.xz")) (sha256 hash))) -(define-public linux-libre-5.2-version "5.2.13") +(define-public linux-libre-5.2-version "5.2.15") (define-public linux-libre-5.2-pristine-source (let ((version linux-libre-5.2-version) - (hash (base32 "12hpph3iynr22mfwz7745lp01waf2kg579hr56d4pvhx4iahzdhp"))) + (hash (base32 "0jhc70r2rygm91qifjagg1jgbpjwyyq6m8g1n5iv81l1v84i0mpb"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.2))) -- cgit 1.4.1