diff options
| author | Armin Kuster <akuster808@gmail.com> | 2021-04-24 20:00:55 +0000 |
|---|---|---|
| committer | Armin Kuster <akuster808@gmail.com> | 2021-04-26 14:33:01 +0000 |
| commit | baca6133f9c7f77a12dc137fe5b90723fbb4c15b (patch) | |
| tree | eed5f630577cc7c7c71aad8b853e0e03c1dcf0b7 | |
| parent | f1f517c919bcf50cdbcacc00779e801c17dec3b7 (diff) | |
| download | meta-security-baca6133f9c7f77a12dc137fe5b90723fbb4c15b.tar.gz | |
libseccomp: drop recipe. In core now
Signed-off-by: Armin Kuster <akuster808@gmail.com>
| -rw-r--r-- | recipes-security/libseccomp/files/run-ptest | 4 | ||||
| -rw-r--r-- | recipes-security/libseccomp/libseccomp_2.5.1.bb | 47 |
2 files changed, 0 insertions, 51 deletions
diff --git a/recipes-security/libseccomp/files/run-ptest b/recipes-security/libseccomp/files/run-ptest deleted file mode 100644 index 54b4a63..0000000 --- a/recipes-security/libseccomp/files/run-ptest +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | cd tests | ||
| 4 | ./regression -a | ||
diff --git a/recipes-security/libseccomp/libseccomp_2.5.1.bb b/recipes-security/libseccomp/libseccomp_2.5.1.bb deleted file mode 100644 index 40ac1a8..0000000 --- a/recipes-security/libseccomp/libseccomp_2.5.1.bb +++ /dev/null | |||
| @@ -1,47 +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 | DEPENDS += "gperf-native" | ||
| 8 | |||
| 9 | SRCREV = "4bf70431a339a2886ab8c82e9a45378f30c6e6c7" | ||
| 10 | |||
| 11 | SRC_URI = "git://github.com/seccomp/libseccomp.git;branch=release-2.5 \ | ||
| 12 | file://run-ptest \ | ||
| 13 | " | ||
| 14 | |||
| 15 | COMPATIBLE_HOST_riscv32 = "null" | ||
| 16 | |||
| 17 | S = "${WORKDIR}/git" | ||
| 18 | |||
| 19 | inherit autotools-brokensep pkgconfig ptest | ||
| 20 | |||
| 21 | PACKAGECONFIG ??= "" | ||
| 22 | PACKAGECONFIG[python] = "--enable-python, --disable-python, python3" | ||
| 23 | |||
| 24 | DISABLE_STATIC = "" | ||
| 25 | |||
| 26 | do_compile_ptest() { | ||
| 27 | oe_runmake -C tests check-build | ||
| 28 | } | ||
| 29 | |||
| 30 | do_install_ptest() { | ||
| 31 | install -d ${D}${PTEST_PATH}/tests | ||
| 32 | install -d ${D}${PTEST_PATH}/tools | ||
| 33 | for file in $(find tests/* -executable -type f); do | ||
| 34 | install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tests | ||
| 35 | done | ||
| 36 | for file in $(find tests/*.tests -type f); do | ||
| 37 | install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tests | ||
| 38 | done | ||
| 39 | for file in $(find tools/* -executable -type f); do | ||
| 40 | install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tools | ||
| 41 | done | ||
| 42 | } | ||
| 43 | |||
| 44 | FILES_${PN} = "${bindir} ${libdir}/${BPN}.so*" | ||
| 45 | FILES_${PN}-dbg += "${libdir}/${PN}/tests/.debug/* ${libdir}/${PN}/tools/.debug" | ||
| 46 | |||
| 47 | RDEPENDS_${PN}-ptest = "coreutils bash" | ||
