From 1163dcc00b8bc728c0234cacc3cf586b2a415b67 Mon Sep 17 00:00:00 2001 From: Armin Kuster Date: Mon, 5 Feb 2018 08:40:06 +0530 Subject: libseccomp: update to 2.3.3 Drop git PV for bb reciped PV. supports 4.15 kernel Signed-off-by: Armin Kuster --- recipes-security/libseccomp/libseccomp.bb | 44 ------------------------- recipes-security/libseccomp/libseccomp_2.3.3.bb | 42 +++++++++++++++++++++++ 2 files changed, 42 insertions(+), 44 deletions(-) delete mode 100644 recipes-security/libseccomp/libseccomp.bb create mode 100644 recipes-security/libseccomp/libseccomp_2.3.3.bb diff --git a/recipes-security/libseccomp/libseccomp.bb b/recipes-security/libseccomp/libseccomp.bb deleted file mode 100644 index 7b9e0e5..0000000 --- a/recipes-security/libseccomp/libseccomp.bb +++ /dev/null @@ -1,44 +0,0 @@ -SUMMARY = "interface to seccomp filtering mechanism" -DESCRIPTION = "The libseccomp library provides and easy to use, platform independent,interface to the Linux Kernel's syscall filtering mechanism: seccomp." -SECTION = "security" -LICENSE = "LGPL-2.1" -LIC_FILES_CHKSUM = "file://LICENSE;beginline=0;endline=1;md5=8eac08d22113880357ceb8e7c37f989f" - -SRCREV = "2331d104bc0cbde5f6c54e504a038e52bfe8e12d" - -PV = "2.3.2+git${SRCPV}" - -SRC_URI = "git://github.com/seccomp/libseccomp.git;branch=release-2.3 \ - file://run-ptest \ -" - -S = "${WORKDIR}/git" - -inherit autotools-brokensep pkgconfig ptest - -PACKAGECONFIG ??= "" -PACKAGECONFIG[python] = "--enable-python, --disable-python, python" - -do_compile_ptest() { - oe_runmake -C tests check-build -} - -do_install_ptest() { - install -d ${D}${PTEST_PATH}/tests - install -d ${D}${PTEST_PATH}/tools - for file in $(find tests/* -executable -type f); do - install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tests - done - for file in $(find tests/*.tests -type f); do - install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tests - done - for file in $(find tools/* -executable -type f); do - install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tools - done -} - -FILES_${PN} = "${bindir} ${libdir}/${PN}.so*" -FILES_${PN}-dbg += "${libdir}/${PN}/tests/.debug/* ${libdir}/${PN}/tools/.debug" - -RDEPENDS_${PN} = "bash" -RDEPENDS_${PN}-ptest = "bash" diff --git a/recipes-security/libseccomp/libseccomp_2.3.3.bb b/recipes-security/libseccomp/libseccomp_2.3.3.bb new file mode 100644 index 0000000..8d58163 --- /dev/null +++ b/recipes-security/libseccomp/libseccomp_2.3.3.bb @@ -0,0 +1,42 @@ +SUMMARY = "interface to seccomp filtering mechanism" +DESCRIPTION = "The libseccomp library provides and easy to use, platform independent,interface to the Linux Kernel's syscall filtering mechanism: seccomp." +SECTION = "security" +LICENSE = "LGPL-2.1" +LIC_FILES_CHKSUM = "file://LICENSE;beginline=0;endline=1;md5=8eac08d22113880357ceb8e7c37f989f" + +SRCREV = "74b190e1aa05f07da0c61fb9a30dbc9c18ce2c9d" + +SRC_URI = "git://github.com/seccomp/libseccomp.git;branch=release-2.3 \ + file://run-ptest \ +" + +S = "${WORKDIR}/git" + +inherit autotools-brokensep pkgconfig ptest + +PACKAGECONFIG ??= "" +PACKAGECONFIG[python] = "--enable-python, --disable-python, python" + +do_compile_ptest() { + oe_runmake -C tests check-build +} + +do_install_ptest() { + install -d ${D}${PTEST_PATH}/tests + install -d ${D}${PTEST_PATH}/tools + for file in $(find tests/* -executable -type f); do + install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tests + done + for file in $(find tests/*.tests -type f); do + install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tests + done + for file in $(find tools/* -executable -type f); do + install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tools + done +} + +FILES_${PN} = "${bindir} ${libdir}/${PN}.so*" +FILES_${PN}-dbg += "${libdir}/${PN}/tests/.debug/* ${libdir}/${PN}/tools/.debug" + +RDEPENDS_${PN} = "bash" +RDEPENDS_${PN}-ptest = "bash" -- cgit v1.2.3-54-g00ecf