luaposix: bump to version 33.0.0
authorFrancois Perrad <fperrad@gmail.com>
Wed, 24 Dec 2014 09:10:40 +0000 (10:10 +0100)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Wed, 24 Dec 2014 11:00:51 +0000 (12:00 +0100)
ncurses becomes a mandatory dependency

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/luaposix/Config.in
package/luaposix/luaposix.mk

index 04269fbf469f620ac14c83b8d900b4b74f20834d..a40c3f9bffef16bffab1572fec98fc22277d3a16 100644 (file)
@@ -1,6 +1,7 @@
 config BR2_PACKAGE_LUAPOSIX
        bool "luaposix"
        depends on BR2_PACKAGE_HAS_LUAINTERPRETER
+       select BR2_PACKAGE_NCURSES
        select BR2_PACKAGE_LUABITOP if BR2_PACKAGE_LUA_5_1
        # LuaBitOp is already included in LuaJIT
        help
index a723a50a19d3f5eed9d62ecd149c59bc09de1293..5d4147203e54ccb51ea617fcafd8e30c254fa70e 100644 (file)
@@ -4,15 +4,11 @@
 #
 ################################################################################
 
-LUAPOSIX_VERSION = 32
+LUAPOSIX_VERSION = 33.0.0
 LUAPOSIX_SITE = $(call github,luaposix,luaposix,release-v$(LUAPOSIX_VERSION))
 LUAPOSIX_LICENSE = MIT
 LUAPOSIX_LICENSE_FILES = COPYING
-LUAPOSIX_DEPENDENCIES = luainterpreter host-lua
+LUAPOSIX_DEPENDENCIES = luainterpreter host-lua ncurses
 LUAPOSIX_CONF_OPTS = --libdir="/usr/lib/lua/$(LUAINTERPRETER_ABIVER)" --datarootdir="/usr/share/lua/$(LUAINTERPRETER_ABIVER)"
 
-ifeq ($(BR2_PACKAGE_NCURSES),y)
-LUAPOSIX_DEPENDENCIES += ncurses
-endif
-
 $(eval $(autotools-package))