From: Martin Jansa <martin.jansa@gmail.com>
To: openembedded-devel@lists.openembedded.org
Subject: Re: [meta-oe][PATCH] luajit: Upgrade to 2.1 beta1
Date: Wed, 21 Oct 2015 18:52:21 +0200 [thread overview]
Message-ID: <20151021165221.GG2556@jama> (raw)
In-Reply-To: <1445315359-30016-1-git-send-email-raj.khem@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 4954 bytes --]
On Mon, Oct 19, 2015 at 09:29:19PM -0700, Khem Raj wrote:
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
> ...p-automatically-this-leaves-the-stripping.patch | 33 ----------------------
> .../luajit/{luajit_2.0.4.bb => luajit_2.1.bb} | 17 +++++------
> 2 files changed, 9 insertions(+), 41 deletions(-)
> delete mode 100644 meta-oe/recipes-devtools/luajit/luajit/0001-Do-not-strip-automatically-this-leaves-the-stripping.patch
> rename meta-oe/recipes-devtools/luajit/{luajit_2.0.4.bb => luajit_2.1.bb} (74%)
>
> diff --git a/meta-oe/recipes-devtools/luajit/luajit/0001-Do-not-strip-automatically-this-leaves-the-stripping.patch b/meta-oe/recipes-devtools/luajit/luajit/0001-Do-not-strip-automatically-this-leaves-the-stripping.patch
> deleted file mode 100644
> index f123b3f..0000000
> --- a/meta-oe/recipes-devtools/luajit/luajit/0001-Do-not-strip-automatically-this-leaves-the-stripping.patch
> +++ /dev/null
> @@ -1,33 +0,0 @@
> -From 528009f5ca0685c95ef27f6c8957160499c0576a Mon Sep 17 00:00:00 2001
> -From: Khem Raj <raj.khem@gmail.com>
> -Date: Fri, 10 May 2013 10:42:45 -0700
> -Subject: [PATCH] Do not strip automatically, this leaves the stripping
> - busines to OE
> -
> -Upstream-Status: Inappropriate [OE-Specific]
> -
> -Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ----
> - src/Makefile | 2 --
> - 1 file changed, 2 deletions(-)
> -
> -diff --git a/src/Makefile b/src/Makefile
> -index 278324a..5ecd6d5 100644
> ---- a/src/Makefile
> -+++ b/src/Makefile
> -@@ -665,12 +665,10 @@ $(LUAJIT_A): $(LJVMCORE_O)
> - $(LUAJIT_SO): $(LJVMCORE_O)
> - $(E) "DYNLINK $@"
> - $(Q)$(TARGET_LD) $(TARGET_ASHLDFLAGS) -o $@ $(LJVMCORE_DYNO) $(TARGET_ALIBS)
> -- $(Q)$(TARGET_STRIP) $@
> -
> - $(LUAJIT_T): $(TARGET_O) $(LUAJIT_O) $(TARGET_DEP)
> - $(E) "LINK $@"
> - $(Q)$(TARGET_LD) $(TARGET_ALDFLAGS) -o $@ $(LUAJIT_O) $(TARGET_O) $(TARGET_ALIBS)
> -- $(Q)$(TARGET_STRIP) $@
> - $(E) "OK Successfully built LuaJIT"
> -
> - ##############################################################################
> ---
> -1.7.9.5
> -
> diff --git a/meta-oe/recipes-devtools/luajit/luajit_2.0.4.bb b/meta-oe/recipes-devtools/luajit/luajit_2.1.bb
> similarity index 74%
> rename from meta-oe/recipes-devtools/luajit/luajit_2.0.4.bb
> rename to meta-oe/recipes-devtools/luajit/luajit_2.1.bb
> index 4a15a4e..ba439d0 100644
> --- a/meta-oe/recipes-devtools/luajit/luajit_2.0.4.bb
> +++ b/meta-oe/recipes-devtools/luajit/luajit_2.1.bb
> @@ -3,13 +3,13 @@ LICENSE = "MIT"
> LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=3992f1fbae3b8b061f9056b7fcda8cc6"
> HOMEPAGE = "http://luajit.org"
>
> -SRC_URI = "http://luajit.org/download/LuaJIT-${PV}.tar.gz \
> - file://0001-Do-not-strip-automatically-this-leaves-the-stripping.patch \
> +SRCREV = "776c6935ed807fc3b1ee6cd89a0cf682ffb7e9de"
> +SRC_URI = "git://luajit.org/git/luajit-2.0.git;protocol=http;branch=v${PV} \
> "
> -SRC_URI[md5sum] = "dd9c38307f2223a504cbfb96e477eca0"
> -SRC_URI[sha256sum] = "620fa4eb12375021bef6e4f237cbd2dd5d49e56beb414bee052c746beef1807d"
>
> -S = "${WORKDIR}/LuaJIT-${PV}"
> +SPIN = ".0-beta1"
This seems to break meta-oe/recipes-extended/sysdig/sysdig_git.bb
| -- Could NOT find Lua51 (missing: LUA_LIBRARIES LUA_INCLUDE_DIR)
| CMake Error at CMakeLists.txt:116 (message):
| Couldn't find system LuaJIT or Lua
|
> +
> +S = "${WORKDIR}/git"
>
> inherit pkgconfig binconfig
>
> @@ -23,7 +23,7 @@ do_configure_prepend() {
> EXTRA_OEMAKE = 'CROSS=${HOST_PREFIX} \
> TARGET_CFLAGS="${TOOLCHAIN_OPTIONS} ${HOST_CC_ARCH}" \
> TARGET_LDFLAGS="${TOOLCHAIN_OPTIONS}" \
> - TARGET_SHLDFLAGS="${TOOLCHAIN_OPTIONS}"'
> + TARGET_SHLDFLAGS="${TOOLCHAIN_OPTIONS}" TARGET_STRIP="/bin/echo"'
> EXTRA_OEMAKE_append_powerpc = ' HOST_CC="${BUILD_CC} -m32"'
> EXTRA_OEMAKE_append_x86 = ' HOST_CC="${BUILD_CC} -m32"'
> EXTRA_OEMAKE_append_x86-64 = ' HOST_CC="${BUILD_CC}"'
> @@ -36,7 +36,8 @@ do_compile () {
> }
>
> do_install () {
> - oe_runmake 'DESTDIR=${D}' install
> + oe_runmake 'DESTDIR=${D}' 'TARGET_STRIP=/bin/echo' install
> + ln -s ${bindir}/${BPN}-${PV}${SPIN} ${D}${bindir}/luajit
> rmdir ${D}${datadir}/lua/5.* \
> ${D}${datadir}/lua \
> ${D}${libdir}/lua/5.* \
> @@ -52,5 +53,5 @@ FILES_${PN}-dev += "${libdir}/libluajit-5.1.a \
> ${libdir}/libluajit-5.1.so \
> ${libdir}/pkgconfig/luajit.pc \
> "
> -FILES_luajit-common = "${datadir}/${BPN}-${PV}"
> +FILES_luajit-common = "${datadir}/${BPN}-${PV}${SPIN}"
>
> --
> 2.6.1
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]
next prev parent reply other threads:[~2015-10-21 16:52 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-20 4:29 [meta-oe][PATCH] luajit: Upgrade to 2.1 beta1 Khem Raj
2015-10-21 16:52 ` Martin Jansa [this message]
2015-10-23 7:40 ` Khem Raj
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20151021165221.GG2556@jama \
--to=martin.jansa@gmail.com \
--cc=openembedded-devel@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.