All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH 1/2] lua: bump lua.pc version
@ 2016-02-10 14:44 Maciej Borzecki
  2016-02-10 14:44 ` [meta-oe][PATCH 2/2] lua: update Libs in lua.pc Maciej Borzecki
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Maciej Borzecki @ 2016-02-10 14:44 UTC (permalink / raw)
  To: openembedded-devel, Li xin, Kang Kai, Martin Jansa; +Cc: Maciek Borzecki

Lua was updated to 5.3.2, however lua.pc still has 5.2.2 listed as
Version.

Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
---
 meta-oe/recipes-devtools/lua/lua/lua.pc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-devtools/lua/lua/lua.pc b/meta-oe/recipes-devtools/lua/lua/lua.pc
index e6f8b6f096dbcf578665699d2e3570dd22088d40..f14d227543c04189c5c31cd2c2737ac68933979f 100644
--- a/meta-oe/recipes-devtools/lua/lua/lua.pc
+++ b/meta-oe/recipes-devtools/lua/lua/lua.pc
@@ -4,7 +4,7 @@ includedir=${prefix}/include
 
 Name: Lua
 Description: Lua language engine
-Version: 5.2.2
+Version: 5.3.2
 Requires:
 Libs: -L${libdir} -llua
 Libs.private: -lm
-- 
2.5.0



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [meta-oe][PATCH 2/2] lua: update Libs in lua.pc
  2016-02-10 14:44 [meta-oe][PATCH 1/2] lua: bump lua.pc version Maciej Borzecki
@ 2016-02-10 14:44 ` Maciej Borzecki
  2016-02-10 17:13 ` [meta-oe][PATCH 1/2] lua: bump lua.pc version Andreas Müller
  2016-02-10 17:47 ` Marko Lindqvist
  2 siblings, 0 replies; 6+ messages in thread
From: Maciej Borzecki @ 2016-02-10 14:44 UTC (permalink / raw)
  To: openembedded-devel, Li xin, Kang Kai, Martin Jansa; +Cc: Maciek Borzecki

Update Libs in lua.pc so that pkg-config --libs gives the correct list
of libraries for linking. This makes us effectively list the same
libraries as Fedora does.

Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
---
 meta-oe/recipes-devtools/lua/lua/lua.pc | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/meta-oe/recipes-devtools/lua/lua/lua.pc b/meta-oe/recipes-devtools/lua/lua/lua.pc
index f14d227543c04189c5c31cd2c2737ac68933979f..4b4fb47b95e27f8c30ecad7b0d2f7254ebafd5ae 100644
--- a/meta-oe/recipes-devtools/lua/lua/lua.pc
+++ b/meta-oe/recipes-devtools/lua/lua/lua.pc
@@ -6,6 +6,5 @@ Name: Lua
 Description: Lua language engine
 Version: 5.3.2
 Requires:
-Libs: -L${libdir} -llua
-Libs.private: -lm
+Libs: -L${libdir} -llua -lm -ldl
 Cflags: -I${includedir}
-- 
2.5.0



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [meta-oe][PATCH 1/2] lua: bump lua.pc version
  2016-02-10 14:44 [meta-oe][PATCH 1/2] lua: bump lua.pc version Maciej Borzecki
  2016-02-10 14:44 ` [meta-oe][PATCH 2/2] lua: update Libs in lua.pc Maciej Borzecki
@ 2016-02-10 17:13 ` Andreas Müller
  2016-02-11  9:06   ` Maciej Borzecki
  2016-02-10 17:47 ` Marko Lindqvist
  2 siblings, 1 reply; 6+ messages in thread
From: Andreas Müller @ 2016-02-10 17:13 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Maciek Borzecki

On Wed, Feb 10, 2016 at 3:44 PM, Maciej Borzecki
<maciej.borzecki@open-rnd.pl> wrote:
> Lua was updated to 5.3.2, however lua.pc still has 5.2.2 listed as
> Version.
>
> Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
> ---
>  meta-oe/recipes-devtools/lua/lua/lua.pc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta-oe/recipes-devtools/lua/lua/lua.pc b/meta-oe/recipes-devtools/lua/lua/lua.pc
> index e6f8b6f096dbcf578665699d2e3570dd22088d40..f14d227543c04189c5c31cd2c2737ac68933979f 100644
> --- a/meta-oe/recipes-devtools/lua/lua/lua.pc
> +++ b/meta-oe/recipes-devtools/lua/lua/lua.pc
> @@ -4,7 +4,7 @@ includedir=${prefix}/include
>
>  Name: Lua
>  Description: Lua language engine
> -Version: 5.2.2
> +Version: 5.3.2
>  Requires:
>  Libs: -L${libdir} -llua
>  Libs.private: -lm
> --
> 2.5.0
>
Is it possible to 'sed' this based on PV so that we don't need to do
that on next update?

Andreas


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [meta-oe][PATCH 1/2] lua: bump lua.pc version
  2016-02-10 14:44 [meta-oe][PATCH 1/2] lua: bump lua.pc version Maciej Borzecki
  2016-02-10 14:44 ` [meta-oe][PATCH 2/2] lua: update Libs in lua.pc Maciej Borzecki
  2016-02-10 17:13 ` [meta-oe][PATCH 1/2] lua: bump lua.pc version Andreas Müller
@ 2016-02-10 17:47 ` Marko Lindqvist
  2016-02-10 17:56   ` Maciej Borzecki
  2 siblings, 1 reply; 6+ messages in thread
From: Marko Lindqvist @ 2016-02-10 17:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Maciek Borzecki

On 10 February 2016 at 16:44, Maciej Borzecki
<maciej.borzecki@open-rnd.pl> wrote:
> Lua was updated to 5.3.2, however lua.pc still has 5.2.2 listed as
> Version.

 Sorry, I have not been following this. Do we still have lua-5.2
available for packages that are not switched to lua-5.3?

 (My experience, based on single case, was that updating sw to use
lua-5.3 instead of lua-5.2 was much simpler than lua-5.1 -> lua-5.2,
but I still assume there to be fair number of packages that have had
no lua-5.3 compatible releases yet. In fact, I'm maintaining one.)


 - ML


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [meta-oe][PATCH 1/2] lua: bump lua.pc version
  2016-02-10 17:47 ` Marko Lindqvist
@ 2016-02-10 17:56   ` Maciej Borzecki
  0 siblings, 0 replies; 6+ messages in thread
From: Maciej Borzecki @ 2016-02-10 17:56 UTC (permalink / raw)
  To: Marko Lindqvist, openembedded-devel; +Cc: Maciek Borzecki


> Dnia 10 luty 2016 o 18:47 Marko Lindqvist <cazfi74@gmail.com> napisał(a):
>
>
> On 10 February 2016 at 16:44, Maciej Borzecki
> <maciej.borzecki@open-rnd.pl> wrote:
> > Lua was updated to 5.3.2, however lua.pc still has 5.2.2 listed as
> > Version.
>
> Sorry, I have not been following this. Do we still have lua-5.2
> available for packages that are not switched to lua-5.3?
>
> (My experience, based on single case, was that updating sw to use
> lua-5.3 instead of lua-5.2 was much simpler than lua-5.1 -> lua-5.2,
> but I still assume there to be fair number of packages that have had
> no lua-5.3 compatible releases yet. In fact, I'm maintaining one.)
>
 
AFAIK there's only a single lua recipe in OE and it's currently lua
5.3.2. Layer index also lists lua-5.1 in meta-openwrt, but that would
be all.

--
Maciej Borzęcki
Senior Software Engineer at Open-RnD Sp. z o.o.
www.open-rnd.pl, Facebook, Twitter


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [meta-oe][PATCH 1/2] lua: bump lua.pc version
  2016-02-10 17:13 ` [meta-oe][PATCH 1/2] lua: bump lua.pc version Andreas Müller
@ 2016-02-11  9:06   ` Maciej Borzecki
  0 siblings, 0 replies; 6+ messages in thread
From: Maciej Borzecki @ 2016-02-11  9:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Maciek Borzecki

On 02/10 18:13, Andreas Müller wrote:
> On Wed, Feb 10, 2016 at 3:44 PM, Maciej Borzecki
> <maciej.borzecki@open-rnd.pl> wrote:
> > Lua was updated to 5.3.2, however lua.pc still has 5.2.2 listed as
> > Version.
> >
> > Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
> > ---
> >  meta-oe/recipes-devtools/lua/lua/lua.pc | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/meta-oe/recipes-devtools/lua/lua/lua.pc b/meta-oe/recipes-devtools/lua/lua/lua.pc
> > index e6f8b6f096dbcf578665699d2e3570dd22088d40..f14d227543c04189c5c31cd2c2737ac68933979f 100644
> > --- a/meta-oe/recipes-devtools/lua/lua/lua.pc
> > +++ b/meta-oe/recipes-devtools/lua/lua/lua.pc
> > @@ -4,7 +4,7 @@ includedir=${prefix}/include
> >
> >  Name: Lua
> >  Description: Lua language engine
> > -Version: 5.2.2
> > +Version: 5.3.2
> >  Requires:
> >  Libs: -L${libdir} -llua
> >  Libs.private: -lm
> > --
> > 2.5.0
> >
> Is it possible to 'sed' this based on PV so that we don't need to do
> that on next update?
>

Agreed, makes sense to update it based on ${PV}.

--
Maciej Borzęcki
Senior Software Developer at Open-RnD Sp. z o.o., Poland
www.open-rnd.pl
mobile: +48 889 117 365, fax: +48 42 657 9079


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-02-11  9:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-10 14:44 [meta-oe][PATCH 1/2] lua: bump lua.pc version Maciej Borzecki
2016-02-10 14:44 ` [meta-oe][PATCH 2/2] lua: update Libs in lua.pc Maciej Borzecki
2016-02-10 17:13 ` [meta-oe][PATCH 1/2] lua: bump lua.pc version Andreas Müller
2016-02-11  9:06   ` Maciej Borzecki
2016-02-10 17:47 ` Marko Lindqvist
2016-02-10 17:56   ` Maciej Borzecki

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.