diff options
| author | Hongzhi.Song <hongzhi.song@windriver.com> | 2019-04-10 23:13:42 -0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2019-04-11 11:30:35 -0700 |
| commit | be6481ca9f144708c8d6f741396be6e597eb8f18 (patch) | |
| tree | 8db05f7264630beaf87b404b02c22b1ddcb631f1 /meta-oe/recipes-devtools/lua/lua_5.3.5.bb | |
| parent | fc144a1428cdff292d2dc9d1a7440acd1e712aa0 (diff) | |
| download | meta-openembedded-be6481ca9f144708c8d6f741396be6e597eb8f18.tar.gz | |
lua: upgrade from v5.3.4 to v5.3.5
The v5.3.5 release covers CVE-2019-6706 which is vulnerable.
Signed-off-by: Hongzhi.Song <hongzhi.song@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/lua/lua_5.3.5.bb')
| -rw-r--r-- | meta-oe/recipes-devtools/lua/lua_5.3.5.bb | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/lua/lua_5.3.5.bb b/meta-oe/recipes-devtools/lua/lua_5.3.5.bb new file mode 100644 index 0000000000..265e2519e0 --- /dev/null +++ b/meta-oe/recipes-devtools/lua/lua_5.3.5.bb | |||
| @@ -0,0 +1,63 @@ | |||
| 1 | DESCRIPTION = "Lua is a powerful light-weight programming language designed \ | ||
| 2 | for extending applications." | ||
| 3 | LICENSE = "MIT" | ||
| 4 | LIC_FILES_CHKSUM = "file://doc/readme.html;beginline=318;endline=352;md5=60aa5cfdbd40086501778d9b6ebf29ee" | ||
| 5 | HOMEPAGE = "http://www.lua.org/" | ||
| 6 | |||
| 7 | DEPENDS = "readline" | ||
| 8 | SRC_URI = "http://www.lua.org/ftp/lua-${PV}.tar.gz;name=tarballsrc \ | ||
| 9 | file://lua.pc.in \ | ||
| 10 | " | ||
| 11 | |||
| 12 | # if no test suite matches PV release of Lua exactly, download the suite for the closest Lua release. | ||
| 13 | PV_testsuites = "5.3.4" | ||
| 14 | |||
| 15 | SRC_URI += "${@bb.utils.contains('DISTRO_FEATURES', 'ptest', \ | ||
| 16 | 'http://www.lua.org/tests/lua-${PV_testsuites}-tests.tar.gz;name=tarballtest \ | ||
| 17 | file://run-ptest \ | ||
| 18 | ', '', d)}" | ||
| 19 | |||
| 20 | SRC_URI[tarballsrc.md5sum] = "4f4b4f323fd3514a68e0ab3da8ce3455" | ||
| 21 | SRC_URI[tarballsrc.sha256sum] = "0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac" | ||
| 22 | SRC_URI[tarballtest.md5sum] = "b14fe3748c1cb2d74e3acd1943629ba3" | ||
| 23 | SRC_URI[tarballtest.sha256sum] = "b80771238271c72565e5a1183292ef31bd7166414cd0d43a8eb79845fa7f599f" | ||
| 24 | |||
| 25 | inherit pkgconfig binconfig ptest | ||
| 26 | |||
| 27 | UCLIBC_PATCHES += "file://uclibc-pthread.patch" | ||
| 28 | SRC_URI_append_libc-uclibc = "${UCLIBC_PATCHES}" | ||
| 29 | |||
| 30 | TARGET_CC_ARCH += " -fPIC ${LDFLAGS}" | ||
| 31 | EXTRA_OEMAKE = "'CC=${CC} -fPIC' 'MYCFLAGS=${CFLAGS} -DLUA_USE_LINUX -fPIC' MYLDFLAGS='${LDFLAGS}'" | ||
| 32 | |||
| 33 | do_configure_prepend() { | ||
| 34 | sed -i -e s:/usr/local:${prefix}:g src/luaconf.h | ||
| 35 | } | ||
| 36 | |||
| 37 | do_compile () { | ||
| 38 | oe_runmake linux | ||
| 39 | } | ||
| 40 | |||
| 41 | do_install () { | ||
| 42 | oe_runmake \ | ||
| 43 | 'INSTALL_TOP=${D}${prefix}' \ | ||
| 44 | 'INSTALL_BIN=${D}${bindir}' \ | ||
| 45 | 'INSTALL_INC=${D}${includedir}/' \ | ||
| 46 | 'INSTALL_MAN=${D}${mandir}/man1' \ | ||
| 47 | 'INSTALL_SHARE=${D}${datadir}/lua' \ | ||
| 48 | 'INSTALL_LIB=${D}${libdir}' \ | ||
| 49 | 'INSTALL_CMOD=${D}${libdir}/lua/5.3' \ | ||
| 50 | install | ||
| 51 | install -d ${D}${libdir}/pkgconfig | ||
| 52 | |||
| 53 | sed -e s/@VERSION@/${PV}/ ${WORKDIR}/lua.pc.in > ${WORKDIR}/lua.pc | ||
| 54 | install -m 0644 ${WORKDIR}/lua.pc ${D}${libdir}/pkgconfig/ | ||
| 55 | rmdir ${D}${datadir}/lua/5.3 | ||
| 56 | rmdir ${D}${datadir}/lua | ||
| 57 | } | ||
| 58 | |||
| 59 | do_install_ptest () { | ||
| 60 | cp -R --no-dereference --preserve=mode,links -v ${WORKDIR}/lua-${PV_testsuites}-tests ${D}${PTEST_PATH}/test | ||
| 61 | } | ||
| 62 | |||
| 63 | BBCLASSEXTEND = "native nativesdk" | ||
