* [Buildroot] [PATCH 1/2] lua-expat: bump to version 1.3.0
@ 2014-04-04 19:15 Francois Perrad
2014-04-04 19:15 ` [Buildroot] [PATCH 2/2] luasec: bump to version 0.5 Francois Perrad
2014-04-04 21:30 ` [Buildroot] [PATCH 1/2] lua-expat: bump to version 1.3.0 Thomas Petazzoni
0 siblings, 2 replies; 3+ messages in thread
From: Francois Perrad @ 2014-04-04 19:15 UTC (permalink / raw)
To: buildroot
which is now compatible with Lua 5.2
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
package/luaexpat/Config.in | 4 ----
package/luaexpat/luaexpat.mk | 2 +-
package/luaexpatutils/Config.in | 4 ----
3 files changed, 1 insertion(+), 9 deletions(-)
diff --git a/package/luaexpat/Config.in b/package/luaexpat/Config.in
index 3394780..f8db318 100644
--- a/package/luaexpat/Config.in
+++ b/package/luaexpat/Config.in
@@ -2,11 +2,7 @@ config BR2_PACKAGE_LUAEXPAT
bool "luaexpat"
select BR2_PACKAGE_EXPAT
depends on BR2_PACKAGE_HAS_LUA_INTERPRETER
- depends on !BR2_PACKAGE_LUA_5_2
help
LuaExpat is a SAX XML parser based on the Expat library.
http://matthewwild.co.uk/projects/luaexpat/
-
-comment "luaexpat needs a Lua 5.1 interpreter"
- depends on BR2_PACKAGE_LUA_5_2
diff --git a/package/luaexpat/luaexpat.mk b/package/luaexpat/luaexpat.mk
index d507c2a..c6768dc 100644
--- a/package/luaexpat/luaexpat.mk
+++ b/package/luaexpat/luaexpat.mk
@@ -4,7 +4,7 @@
#
################################################################################
-LUAEXPAT_VERSION = 1.2.0-1
+LUAEXPAT_VERSION = 1.3.0-1
LUAEXPAT_DEPENDENCIES = expat
LUAEXPAT_LICENSE = MIT
diff --git a/package/luaexpatutils/Config.in b/package/luaexpatutils/Config.in
index 333f98d..cb2887a 100644
--- a/package/luaexpatutils/Config.in
+++ b/package/luaexpatutils/Config.in
@@ -1,12 +1,8 @@
config BR2_PACKAGE_LUAEXPATUTILS
bool "luaexpatutils"
select BR2_PACKAGE_LUAEXPAT
- depends on !BR2_PACKAGE_LUA_5_2
help
lxp.doc is a module that provides useful features for working with
XML formats in LOM format as used by the LuaExpat project from Kepler.
https://github.com/stevedonovan/LuaExpatUtils
-
-comment "luaexpatutils needs a Lua 5.1 interpreter"
- depends on BR2_PACKAGE_LUA_5_2
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 2/2] luasec: bump to version 0.5
2014-04-04 19:15 [Buildroot] [PATCH 1/2] lua-expat: bump to version 1.3.0 Francois Perrad
@ 2014-04-04 19:15 ` Francois Perrad
2014-04-04 21:30 ` [Buildroot] [PATCH 1/2] lua-expat: bump to version 1.3.0 Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Francois Perrad @ 2014-04-04 19:15 UTC (permalink / raw)
To: buildroot
which is now compatible with Lua 5.2
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
package/luasec/Config.in | 4 ----
package/luasec/luasec.mk | 4 ++--
2 files changed, 2 insertions(+), 6 deletions(-)
diff --git a/package/luasec/Config.in b/package/luasec/Config.in
index 48aa766..ed55df7 100644
--- a/package/luasec/Config.in
+++ b/package/luasec/Config.in
@@ -3,12 +3,8 @@ config BR2_PACKAGE_LUASEC
select BR2_PACKAGE_OPENSSL
select BR2_PACKAGE_LUASOCKET
depends on BR2_PACKAGE_HAS_LUA_INTERPRETER
- depends on !BR2_PACKAGE_LUA_5_2
help
LuaSec is a binding for OpenSSL library to provide TLS/SSL
communication.
http://www.inf.puc-rio.br/~brunoos/luasec/
-
-comment "luasec needs a Lua 5.1 interpreter"
- depends on BR2_PACKAGE_LUA_5_2
diff --git a/package/luasec/luasec.mk b/package/luasec/luasec.mk
index 354e805..69f53b2 100644
--- a/package/luasec/luasec.mk
+++ b/package/luasec/luasec.mk
@@ -4,9 +4,9 @@
#
################################################################################
-LUASEC_VERSION_UPSTREAM = 0.4.1
+LUASEC_VERSION_UPSTREAM = 0.5
LUASEC_VERSION = $(LUASEC_VERSION_UPSTREAM)-2
-LUASEC_SUBDIR = luasec-luasec-$(LUASEC_VERSION_UPSTREAM)
+LUASEC_SUBDIR = luasec
LUASEC_LICENSE = MIT
LUASEC_LICENSE_FILES = $(LUASEC_SUBDIR)/LICENSE
LUASEC_DEPENDENCIES = openssl
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/2] lua-expat: bump to version 1.3.0
2014-04-04 19:15 [Buildroot] [PATCH 1/2] lua-expat: bump to version 1.3.0 Francois Perrad
2014-04-04 19:15 ` [Buildroot] [PATCH 2/2] luasec: bump to version 0.5 Francois Perrad
@ 2014-04-04 21:30 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2014-04-04 21:30 UTC (permalink / raw)
To: buildroot
Dear Francois Perrad,
On Fri, 4 Apr 2014 21:15:06 +0200, Francois Perrad wrote:
> which is now compatible with Lua 5.2
>
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
> ---
> package/luaexpat/Config.in | 4 ----
> package/luaexpat/luaexpat.mk | 2 +-
> package/luaexpatutils/Config.in | 4 ----
> 3 files changed, 1 insertion(+), 9 deletions(-)
Both patches applied, thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-04-04 21:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-04 19:15 [Buildroot] [PATCH 1/2] lua-expat: bump to version 1.3.0 Francois Perrad
2014-04-04 19:15 ` [Buildroot] [PATCH 2/2] luasec: bump to version 0.5 Francois Perrad
2014-04-04 21:30 ` [Buildroot] [PATCH 1/2] lua-expat: bump to version 1.3.0 Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox