From ef414ab01a28b61ef01766c3dd28ed2342f5ab75 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 20 May 2026 03:14:11 +0900 Subject: internal/rosa/package: migrate many libraries This also adds more string helpers. Signed-off-by: Ophestra --- internal/rosa/package/libseccomp/package.az | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 internal/rosa/package/libseccomp/package.az (limited to 'internal/rosa/package/libseccomp/package.az') diff --git a/internal/rosa/package/libseccomp/package.az b/internal/rosa/package/libseccomp/package.az new file mode 100644 index 00000000..f9dffb43 --- /dev/null +++ b/internal/rosa/package/libseccomp/package.az @@ -0,0 +1,27 @@ +package libseccomp { + description = "an interface to the Linux Kernel's syscall filtering mechanism"; + website = "https://github.com/seccomp/libseccomp"; + anitya = 13823; + + version* = "2.6.0"; + source = remoteGitHubRelease { + suffix = "seccomp/libseccomp"; + tag = "v"+version; + name = "libseccomp-"+version+".tar.gz"; + checksum = "mMu-iR71guPjFbb31u-YexBaanKE_nYPjPux-vuBiPfS_0kbwJdfCGlkofaUm-EY"; + compress = gzip; + }; + patches = [ "fix-export-oob-read.patch" ]; + + early = "\nln -s ../system/bin/bash /bin/\n"; + + exec = make {}; + + inputs = [ + bash, + diffutils, + gperf, + + kernel-headers, + ]; +} -- cgit v1.3.1