summaryrefslogtreecommitdiffstats
path: root/recipes-security/libseccomp/libseccomp_2.4.2.bb
diff options
context:
space:
mode:
authorArmin Kuster <akuster808@gmail.com>2020-03-07 20:38:49 +0000
committerArmin Kuster <akuster808@gmail.com>2020-03-08 14:13:07 -0700
commit4229f5025e628d48665be95880fe1e458df5dda3 (patch)
treed8ae82e6ddf83951e003726fbb4af8e30f9d33f4 /recipes-security/libseccomp/libseccomp_2.4.2.bb
parent96737082ad20eabcbbaa82b0cacee0d05d50eaab (diff)
downloadmeta-security-4229f5025e628d48665be95880fe1e458df5dda3.tar.gz
libseccomp: update to 2.4.3
dropped patch now included in update Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'recipes-security/libseccomp/libseccomp_2.4.2.bb')
-rw-r--r--recipes-security/libseccomp/libseccomp_2.4.2.bb44
1 files changed, 0 insertions, 44 deletions
diff --git a/recipes-security/libseccomp/libseccomp_2.4.2.bb b/recipes-security/libseccomp/libseccomp_2.4.2.bb
deleted file mode 100644
index 07db82a..0000000
--- a/recipes-security/libseccomp/libseccomp_2.4.2.bb
+++ /dev/null
@@ -1,44 +0,0 @@
1SUMMARY = "interface to seccomp filtering mechanism"
2DESCRIPTION = "The libseccomp library provides and easy to use, platform independent,interface to the Linux Kernel's syscall filtering mechanism: seccomp."
3SECTION = "security"
4LICENSE = "LGPL-2.1"
5LIC_FILES_CHKSUM = "file://LICENSE;beginline=0;endline=1;md5=8eac08d22113880357ceb8e7c37f989f"
6
7SRCREV = "1b6cfd1fc0b7499a28c24299a93a80bd18619563"
8
9SRC_URI = "git://github.com/seccomp/libseccomp.git;branch=release-2.4 \
10 file://0001-tests-rely-on-__SNR_xxx-instead-of-__NR_xxx-for-sysc.patch \
11 file://run-ptest \
12"
13
14S = "${WORKDIR}/git"
15
16inherit autotools-brokensep pkgconfig ptest
17
18PACKAGECONFIG ??= ""
19PACKAGECONFIG[python] = "--enable-python, --disable-python, python"
20
21DISABLE_STATIC = ""
22
23do_compile_ptest() {
24 oe_runmake -C tests check-build
25}
26
27do_install_ptest() {
28 install -d ${D}${PTEST_PATH}/tests
29 install -d ${D}${PTEST_PATH}/tools
30 for file in $(find tests/* -executable -type f); do
31 install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tests
32 done
33 for file in $(find tests/*.tests -type f); do
34 install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tests
35 done
36 for file in $(find tools/* -executable -type f); do
37 install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tools
38 done
39}
40
41FILES_${PN} = "${bindir} ${libdir}/${BPN}.so*"
42FILES_${PN}-dbg += "${libdir}/${PN}/tests/.debug/* ${libdir}/${PN}/tools/.debug"
43
44RDEPENDS_${PN}-ptest = "bash"