summaryrefslogtreecommitdiff
path: root/gnu/packages/linux.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r--gnu/packages/linux.scm40
1 files changed, 20 insertions, 20 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index a543df3fe8b..be187886874 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -349,10 +349,10 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS."
349 "linux-" version ".tar.xz")) 349 "linux-" version ".tar.xz"))
350 (sha256 hash))) 350 (sha256 hash)))
351 351
352(define-public linux-libre-5.2-version "5.2.13") 352(define-public linux-libre-5.2-version "5.2.15")
353(define-public linux-libre-5.2-pristine-source 353(define-public linux-libre-5.2-pristine-source
354 (let ((version linux-libre-5.2-version) 354 (let ((version linux-libre-5.2-version)
355 (hash (base32 "12hpph3iynr22mfwz7745lp01waf2kg579hr56d4pvhx4iahzdhp"))) 355 (hash (base32 "0jhc70r2rygm91qifjagg1jgbpjwyyq6m8g1n5iv81l1v84i0mpb")))
356 (make-linux-libre-source version 356 (make-linux-libre-source version
357 (%upstream-linux-source version hash) 357 (%upstream-linux-source version hash)
358 deblob-scripts-5.2))) 358 deblob-scripts-5.2)))
@@ -3838,7 +3838,7 @@ and copy/paste text in the console and in xterm.")
3838(define-public btrfs-progs 3838(define-public btrfs-progs
3839 (package 3839 (package
3840 (name "btrfs-progs") 3840 (name "btrfs-progs")
3841 (version "5.2.1") 3841 (version "5.2.2")
3842 (source (origin 3842 (source (origin
3843 (method url-fetch) 3843 (method url-fetch)
3844 (uri (string-append "mirror://kernel.org/linux/kernel/" 3844 (uri (string-append "mirror://kernel.org/linux/kernel/"
@@ -3846,7 +3846,7 @@ and copy/paste text in the console and in xterm.")
3846 "btrfs-progs-v" version ".tar.xz")) 3846 "btrfs-progs-v" version ".tar.xz"))
3847 (sha256 3847 (sha256
3848 (base32 3848 (base32
3849 "0crjv3i20nyj2dagfw6q7byshscpn6j7wlqch3apkzzzk00lmb1n")))) 3849 "1imivxjppi8zl27gn472pwpk8bg5dijkbyi340by31vhy7dj24w2"))))
3850 (build-system gnu-build-system) 3850 (build-system gnu-build-system)
3851 (outputs '("out" 3851 (outputs '("out"
3852 "static")) ; static versions of the binaries in "out" 3852 "static")) ; static versions of the binaries in "out"
@@ -4455,18 +4455,18 @@ cpufreq sub-system is enabled or not.")
4455(define-public haveged 4455(define-public haveged
4456 (package 4456 (package
4457 (name "haveged") 4457 (name "haveged")
4458 (version "1.9.4") 4458 (version "1.9.6")
4459 (source 4459 (source
4460 (origin 4460 (origin
4461 (method git-fetch) 4461 (method git-fetch)
4462 (uri (git-reference 4462 (uri (git-reference
4463 (url "https://github.com/jirka-h/haveged.git") 4463 (url "https://github.com/jirka-h/haveged.git")
4464 (commit version))) 4464 (commit (string-append "v" version))))
4465 (file-name (git-file-name name version)) 4465 (file-name (git-file-name name version))
4466 (sha256 4466 (sha256
4467 (base32 "1hrwzjd4byq4fdrg8svww3d8x449k80jxxrjy9v6jvzhfv19rvxr")))) 4467 (base32 "11kr19n2f87izsj341lv5amhd1wc2ckfmqr9pq5fxix8pkbs94rh"))))
4468 (build-system gnu-build-system) 4468 (build-system gnu-build-system)
4469 (home-page "http://www.issihosts.com/haveged") 4469 (home-page "https://www.issihosts.com/haveged")
4470 (synopsis "Entropy source for the Linux random number generator") 4470 (synopsis "Entropy source for the Linux random number generator")
4471 (description 4471 (description
4472 "haveged generates an unpredictable stream of random numbers for use by 4472 "haveged generates an unpredictable stream of random numbers for use by
@@ -4475,10 +4475,10 @@ standard mechanisms for filling the entropy pool may not be sufficient for
4475systems with high needs or limited user interaction, such as headless servers. 4475systems with high needs or limited user interaction, such as headless servers.
4476 4476
4477@command{haveged} runs as a privileged daemon, harvesting randomness from the 4477@command{haveged} runs as a privileged daemon, harvesting randomness from the
4478indirect effects of hardware events on hidden processor state using the HArdware 4478indirect effects of hardware events on hidden processor state using the
4479Volatile Entropy Gathering and Expansion (@dfn{HAVEGE}) algorithm. It tunes 4479@acronym{HAVEGE, HArdware Volatile Entropy Gathering and Expansion} algorithm.
4480itself to its environment and provides the same built-in test suite for the 4480It tunes itself to its environment and provides the same built-in test suite
4481output stream as used on certified hardware security devices. 4481for the output stream as used on certified hardware security devices.
4482 4482
4483The quality of the randomness produced by this algorithm has not been proven. 4483The quality of the randomness produced by this algorithm has not been proven.
4484It is recommended to run it together with another entropy source like rngd, and 4484It is recommended to run it together with another entropy source like rngd, and
@@ -5140,14 +5140,14 @@ re-use code and to avoid re-inventing the wheel.")
5140(define-public libnftnl 5140(define-public libnftnl
5141 (package 5141 (package
5142 (name "libnftnl") 5142 (name "libnftnl")
5143 (version "1.1.3") 5143 (version "1.1.4")
5144 (source 5144 (source
5145 (origin 5145 (origin
5146 (method url-fetch) 5146 (method url-fetch)
5147 (uri (string-append "mirror://netfilter.org/libnftnl/" 5147 (uri (string-append "mirror://netfilter.org/libnftnl/"
5148 "libnftnl-" version ".tar.bz2")) 5148 "libnftnl-" version ".tar.bz2"))
5149 (sha256 5149 (sha256
5150 (base32 "03xszkcpqk3s1rqc6vh7g5j13kh3d3yjnvjhk5scds3an39rgp92")))) 5150 (base32 "087dfc2n4saf2k68hyi4byvgz5grwpw5kfjvmkpn3wmd8y1riiy8"))))
5151 (build-system gnu-build-system) 5151 (build-system gnu-build-system)
5152 (native-inputs 5152 (native-inputs
5153 `(("pkg-config" ,pkg-config))) 5153 `(("pkg-config" ,pkg-config)))
@@ -5164,7 +5164,7 @@ used by nftables.")
5164(define-public nftables 5164(define-public nftables
5165 (package 5165 (package
5166 (name "nftables") 5166 (name "nftables")
5167 (version "0.9.0") 5167 (version "0.9.2")
5168 (source 5168 (source
5169 (origin 5169 (origin
5170 (method url-fetch) 5170 (method url-fetch)
@@ -5172,7 +5172,7 @@ used by nftables.")
5172 "/files/nftables-" version ".tar.bz2")) 5172 "/files/nftables-" version ".tar.bz2"))
5173 (sha256 5173 (sha256
5174 (base32 5174 (base32
5175 "14bygs6vg2v448cw5r4pxqi8an29hw0m9vab8hpmgjmrzjsq30dd")))) 5175 "1x8kalbggjq44j4916i6vyv1rb20dlh1dcsf9xvzqsry2j063djw"))))
5176 (build-system gnu-build-system) 5176 (build-system gnu-build-system)
5177 (arguments `(#:configure-flags 5177 (arguments `(#:configure-flags
5178 '("--disable-man-doc"))) ; FIXME: Needs docbook2x. 5178 '("--disable-man-doc"))) ; FIXME: Needs docbook2x.
@@ -5874,15 +5874,15 @@ the superuser to make device nodes.")
5874(define-public fakeroot 5874(define-public fakeroot
5875 (package 5875 (package
5876 (name "fakeroot") 5876 (name "fakeroot")
5877 (version "1.23") 5877 (version "1.24")
5878 (source (origin 5878 (source (origin
5879 (method url-fetch) 5879 (method url-fetch)
5880 (uri (string-append "http://ftp.debian.org/debian/pool/main/f/" 5880 (uri (string-append "https://deb.debian.org/debian/pool/main/f/"
5881 "fakeroot/fakeroot_" version ".orig.tar.xz")) 5881 "fakeroot/fakeroot_" version ".orig.tar.gz"))
5882 (file-name (string-append name "-" version ".tar.gz")) 5882 (file-name (string-append name "-" version ".tar.gz"))
5883 (sha256 5883 (sha256
5884 (base32 5884 (base32
5885 "1xpl0s2yjyjwlf832b6kbkaa5921liybaar13k7n45ckd9lxd700")))) 5885 "1vb6f93hjyqnwx8dc8mm3dgma7axgqk8s7sdsjs8l2rpc0qmn11f"))))
5886 (build-system gnu-build-system) 5886 (build-system gnu-build-system)
5887 (arguments 5887 (arguments
5888 `(#:phases 5888 `(#:phases