diff options
| author | Armin Kuster <akuster808@gmail.com> | 2020-03-07 20:38:49 +0000 |
|---|---|---|
| committer | Armin Kuster <akuster808@gmail.com> | 2020-03-08 14:13:07 -0700 |
| commit | 4229f5025e628d48665be95880fe1e458df5dda3 (patch) | |
| tree | d8ae82e6ddf83951e003726fbb4af8e30f9d33f4 /recipes-security/libseccomp/libseccomp_2.4.2.bb | |
| parent | 96737082ad20eabcbbaa82b0cacee0d05d50eaab (diff) | |
| download | meta-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.bb | 44 |
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 @@ | |||
| 1 | SUMMARY = "interface to seccomp filtering mechanism" | ||
| 2 | DESCRIPTION = "The libseccomp library provides and easy to use, platform independent,interface to the Linux Kernel's syscall filtering mechanism: seccomp." | ||
| 3 | SECTION = "security" | ||
| 4 | LICENSE = "LGPL-2.1" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;beginline=0;endline=1;md5=8eac08d22113880357ceb8e7c37f989f" | ||
| 6 | |||
| 7 | SRCREV = "1b6cfd1fc0b7499a28c24299a93a80bd18619563" | ||
| 8 | |||
| 9 | SRC_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 | |||
| 14 | S = "${WORKDIR}/git" | ||
| 15 | |||
| 16 | inherit autotools-brokensep pkgconfig ptest | ||
| 17 | |||
| 18 | PACKAGECONFIG ??= "" | ||
| 19 | PACKAGECONFIG[python] = "--enable-python, --disable-python, python" | ||
| 20 | |||
| 21 | DISABLE_STATIC = "" | ||
| 22 | |||
| 23 | do_compile_ptest() { | ||
| 24 | oe_runmake -C tests check-build | ||
| 25 | } | ||
| 26 | |||
| 27 | do_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 | |||
| 41 | FILES_${PN} = "${bindir} ${libdir}/${BPN}.so*" | ||
| 42 | FILES_${PN}-dbg += "${libdir}/${PN}/tests/.debug/* ${libdir}/${PN}/tools/.debug" | ||
| 43 | |||
| 44 | RDEPENDS_${PN}-ptest = "bash" | ||
