GNU bug report logs -
#75797
[PATCH core-packages-team] gnu: libseccomp: Update to 2.6.0.
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Mon, 03 Mar 2025 23:27:16 +0800
with message-id <87mse2kucr.fsf <at> iscas.ac.cn>
and subject line Re: [bug#75797] [PATCH core-packages-team] gnu: libseccomp: Update to 2.6.0.
has caused the debbugs.gnu.org bug report #75797,
regarding [PATCH core-packages-team] gnu: libseccomp: Update to 2.6.0.
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
75797: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=75797
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
* gnu/packages/linux.scm (libseccomp): Update to 2.6.0.
[source]: Switch to git-fetch.
[arguments]: Use G-expressions.
[native-inputs]: Add autoconf, automake, and libtool.
Change-Id: I19302252578c6791937ec073d24607e19277f49a
---
gnu/packages/linux.scm | 30 ++++++++++++++++--------------
1 file changed, 16 insertions(+), 14 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 1f62c63f08..5a6c41a426 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -7753,26 +7753,28 @@ (define-public mtd-utils
(define-public libseccomp
(package
(name "libseccomp")
- (version "2.5.4")
+ (version "2.6.0")
(source (origin
- (method url-fetch)
- (uri (string-append "https://github.com/seccomp/libseccomp/"
- "releases/download/v" version
- "/libseccomp-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/seccomp/libseccomp")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "1nyb3lspc5bsirpsx89vah3n54pmwlgxrwsfaxl01kq50i004afq"))))
+ "189yh66aj3z3jvns739qbj504f3mcl3w44pxxizw877pbj3kal11"))))
(build-system gnu-build-system)
(arguments
- '(#:configure-flags '("--disable-static")
- #:phases (modify-phases %standard-phases
- (add-before 'check 'skip-load-test
- (lambda _
- ;; This test does a native system call and fails when
- ;; run under QEMU user-mode emulation. Just skip it.
- (delete-file "tests/52-basic-load.tests"))))))
+ (list
+ #:configure-flags #~(list "--disable-static")
+ #:phases #~(modify-phases %standard-phases
+ (add-before 'check 'skip-load-test
+ (lambda _
+ ;; This test does a native system call and fails when
+ ;; run under QEMU user-mode emulation. Just skip it.
+ (delete-file "tests/52-basic-load.tests"))))))
(native-inputs
- (list gperf which))
+ (list autoconf automake gperf libtool which))
(synopsis "Interface to Linux's seccomp syscall filtering mechanism")
(description "The libseccomp library provides an easy to use, platform
independent, interface to the Linux Kernel's syscall filtering mechanism. The
base-commit: 3cf48f590c53651e0073a90cf2a5d51098c667af
--
2.47.1
[Message part 3 (message/rfc822, inline)]
[Message part 4 (text/plain, inline)]
Zheng Junjie <zhengjunjie <at> iscas.ac.cn> writes:
> * gnu/packages/linux.scm (libseccomp): Update to 2.6.0.
> [source]: Switch to git-fetch.
> [arguments]: Use G-expressions.
> [native-inputs]: Add autoconf, automake, and libtool.
>
> Change-Id: I19302252578c6791937ec073d24607e19277f49a
> ---
> gnu/packages/linux.scm | 30 ++++++++++++++++--------------
> 1 file changed, 16 insertions(+), 14 deletions(-)
>
> diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
> index 1f62c63f08..5a6c41a426 100644
> --- a/gnu/packages/linux.scm
> +++ b/gnu/packages/linux.scm
> @@ -7753,26 +7753,28 @@ (define-public mtd-utils
> (define-public libseccomp
> (package
> (name "libseccomp")
> - (version "2.5.4")
> + (version "2.6.0")
> (source (origin
> - (method url-fetch)
> - (uri (string-append "https://github.com/seccomp/libseccomp/"
> - "releases/download/v" version
> - "/libseccomp-" version ".tar.gz"))
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/seccomp/libseccomp")
> + (commit (string-append "v" version))))
> + (file-name (git-file-name name version))
> (sha256
> (base32
> - "1nyb3lspc5bsirpsx89vah3n54pmwlgxrwsfaxl01kq50i004afq"))))
> + "189yh66aj3z3jvns739qbj504f3mcl3w44pxxizw877pbj3kal11"))))
> (build-system gnu-build-system)
> (arguments
> - '(#:configure-flags '("--disable-static")
> - #:phases (modify-phases %standard-phases
> - (add-before 'check 'skip-load-test
> - (lambda _
> - ;; This test does a native system call and fails when
> - ;; run under QEMU user-mode emulation. Just skip it.
> - (delete-file "tests/52-basic-load.tests"))))))
> + (list
> + #:configure-flags #~(list "--disable-static")
> + #:phases #~(modify-phases %standard-phases
> + (add-before 'check 'skip-load-test
> + (lambda _
> + ;; This test does a native system call and fails when
> + ;; run under QEMU user-mode emulation. Just skip it.
> + (delete-file "tests/52-basic-load.tests"))))))
> (native-inputs
> - (list gperf which))
> + (list autoconf automake gperf libtool which))
> (synopsis "Interface to Linux's seccomp syscall filtering mechanism")
> (description "The libseccomp library provides an easy to use, platform
> independent, interface to the Linux Kernel's syscall filtering mechanism. The
>
> base-commit: 3cf48f590c53651e0073a90cf2a5d51098c667af
pushed to core-packages-team. closing.
[signature.asc (application/pgp-signature, inline)]
This bug report was last modified 136 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.