Archived
1
0
Fork 0

gnu: libseccomp: Update to 2.4.2.

* gnu/packages/linux.scm (libseccomp): Update to 2.4.2.
* gnu/packages/virtualization.scm (qemu-minimal-2.10)[inputs]: Remove "libseccomp".
This commit is contained in:
Marius Bakke 2019-11-21 15:31:34 +01:00
parent d9580a26c7
commit d100d5d544
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA
2 changed files with 8 additions and 3 deletions

View file

@ -4786,7 +4786,7 @@ of flash storage.")
(define-public libseccomp (define-public libseccomp
(package (package
(name "libseccomp") (name "libseccomp")
(version "2.4.1") (version "2.4.2")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://github.com/seccomp/libseccomp/" (uri (string-append "https://github.com/seccomp/libseccomp/"
@ -4794,7 +4794,7 @@ of flash storage.")
"/libseccomp-" version ".tar.gz")) "/libseccomp-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"1s06h2cgk0xxwmhwj72z33bllafc1xqnxzk2yyra2rmg959778qw")))) "0nsq81acrbkdr8zairxbwa33bj2a6126npp76b4srjl472sjfkxm"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs (native-inputs
`(("which" ,which))) `(("which" ,which)))

View file

@ -300,7 +300,12 @@ server and embedded PowerPC, and S390 guests.")
;; qemu-minimal-2.10 needs Python 2. Remove below once no longer necessary. ;; qemu-minimal-2.10 needs Python 2. Remove below once no longer necessary.
(native-inputs `(("python-2" ,python-2) (native-inputs `(("python-2" ,python-2)
,@(fold alist-delete (package-native-inputs qemu) ,@(fold alist-delete (package-native-inputs qemu)
'("python-wrapper"))))))) '("python-wrapper"))))
(inputs
(fold alist-delete (package-inputs qemu)
;; Disable seccomp support, because it's not required for the GRUB
;; test suite, and because it fails with libseccomp 2.4.2 and later.
'("libseccomp"))))))
(define-public libosinfo (define-public libosinfo
(package (package