* [Buildroot] [PATCH] directfb-lua: new package
@ 2013-07-29 19:36 Ezequiel Garcia
2014-03-02 15:39 ` Thomas Petazzoni
2014-03-03 19:38 ` François Perrad
0 siblings, 2 replies; 4+ messages in thread
From: Ezequiel Garcia @ 2013-07-29 19:36 UTC (permalink / raw)
To: buildroot
This is a Lua binding to DirectFB. It is an automated binding
generated from the DirectFB headers, so it generates an identical
API to DirectFB's, only simpler to use.
Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
---
package/Config.in | 1 +
package/directfb-lua/Config.in | 10 ++++++++++
package/directfb-lua/directfb-lua.mk | 23 +++++++++++++++++++++++
3 files changed, 34 insertions(+)
create mode 100644 package/directfb-lua/Config.in
create mode 100644 package/directfb-lua/directfb-lua.mk
diff --git a/package/Config.in b/package/Config.in
index 6d5ff01..dcaac4c 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -120,6 +120,7 @@ comment "graphic libraries"
source "package/cegui06/Config.in"
source "package/directfb/Config.in"
source "package/directfb-examples/Config.in"
+source "package/directfb-lua/Config.in"
source "package/divine/Config.in"
source "package/fbdump/Config.in"
source "package/fbgrab/Config.in"
diff --git a/package/directfb-lua/Config.in b/package/directfb-lua/Config.in
new file mode 100644
index 0000000..7f941f9
--- /dev/null
+++ b/package/directfb-lua/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_DIRECTFB_LUA
+ bool "directfb-lua"
+ depends on BR2_PACKAGE_DIRECTFB
+ depends on BR2_PACKAGE_LUA
+ help
+ directfb-lua is a Lua binding to DirectFB. It is an automated binding
+ generated from the DirectFB headers. This means it generates an API
+ identical to the DirectFB's, only easier to use.
+
+ https://github.com/ezequielgarcia/directfb-lua
diff --git a/package/directfb-lua/directfb-lua.mk b/package/directfb-lua/directfb-lua.mk
new file mode 100644
index 0000000..f975a55
--- /dev/null
+++ b/package/directfb-lua/directfb-lua.mk
@@ -0,0 +1,23 @@
+################################################################################
+#
+# directfb-lua
+#
+################################################################################
+
+DIRECTFB_LUA_VERSION = v0.2.1
+DIRECTFB_LUA_SITE = https://github.com/ezequielgarcia/directfb-lua/tarball/$(DIRECTFB_LUA_VERSION)
+DIRECTFB_LUA_LICENSE = MIT
+DIRECTFB_LUA_LICENSE_FILES = COPYING
+DIRECTFB_LUA_DEPENDENCIES = directfb lua
+
+define DIRECTFB_LUA_BUILD_CMDS
+ $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) gen
+ $(TARGET_MAKE_ENV) CROSS_COMPILE="$(TARGET_CROSS)" $(MAKE) -C $(@D)
+endef
+
+define DIRECTFB_LUA_INSTALL_TARGET_CMDS
+ $(TARGET_MAKE_ENV) INSTALL_DIR="$(TARGET_DIR)/usr/lib/lua" \
+ $(MAKE) -C $(@D) install
+endef
+
+$(eval $(generic-package))
--
1.8.1.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH] directfb-lua: new package
2013-07-29 19:36 [Buildroot] [PATCH] directfb-lua: new package Ezequiel Garcia
@ 2014-03-02 15:39 ` Thomas Petazzoni
2014-03-03 19:38 ` François Perrad
1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2014-03-02 15:39 UTC (permalink / raw)
To: buildroot
Fran?ois,
Could you review the following patch that adds a Lua binding to
DirectFB ?
Thanks!
Thomas
On Mon, 29 Jul 2013 16:36:27 -0300, Ezequiel Garcia wrote:
> This is a Lua binding to DirectFB. It is an automated binding
> generated from the DirectFB headers, so it generates an identical
> API to DirectFB's, only simpler to use.
>
> Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
> ---
> package/Config.in | 1 +
> package/directfb-lua/Config.in | 10 ++++++++++
> package/directfb-lua/directfb-lua.mk | 23 +++++++++++++++++++++++
> 3 files changed, 34 insertions(+)
> create mode 100644 package/directfb-lua/Config.in
> create mode 100644 package/directfb-lua/directfb-lua.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 6d5ff01..dcaac4c 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -120,6 +120,7 @@ comment "graphic libraries"
> source "package/cegui06/Config.in"
> source "package/directfb/Config.in"
> source "package/directfb-examples/Config.in"
> +source "package/directfb-lua/Config.in"
> source "package/divine/Config.in"
> source "package/fbdump/Config.in"
> source "package/fbgrab/Config.in"
> diff --git a/package/directfb-lua/Config.in b/package/directfb-lua/Config.in
> new file mode 100644
> index 0000000..7f941f9
> --- /dev/null
> +++ b/package/directfb-lua/Config.in
> @@ -0,0 +1,10 @@
> +config BR2_PACKAGE_DIRECTFB_LUA
> + bool "directfb-lua"
> + depends on BR2_PACKAGE_DIRECTFB
> + depends on BR2_PACKAGE_LUA
> + help
> + directfb-lua is a Lua binding to DirectFB. It is an automated binding
> + generated from the DirectFB headers. This means it generates an API
> + identical to the DirectFB's, only easier to use.
> +
> + https://github.com/ezequielgarcia/directfb-lua
> diff --git a/package/directfb-lua/directfb-lua.mk b/package/directfb-lua/directfb-lua.mk
> new file mode 100644
> index 0000000..f975a55
> --- /dev/null
> +++ b/package/directfb-lua/directfb-lua.mk
> @@ -0,0 +1,23 @@
> +################################################################################
> +#
> +# directfb-lua
> +#
> +################################################################################
> +
> +DIRECTFB_LUA_VERSION = v0.2.1
> +DIRECTFB_LUA_SITE = https://github.com/ezequielgarcia/directfb-lua/tarball/$(DIRECTFB_LUA_VERSION)
> +DIRECTFB_LUA_LICENSE = MIT
> +DIRECTFB_LUA_LICENSE_FILES = COPYING
> +DIRECTFB_LUA_DEPENDENCIES = directfb lua
> +
> +define DIRECTFB_LUA_BUILD_CMDS
> + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) gen
> + $(TARGET_MAKE_ENV) CROSS_COMPILE="$(TARGET_CROSS)" $(MAKE) -C $(@D)
> +endef
> +
> +define DIRECTFB_LUA_INSTALL_TARGET_CMDS
> + $(TARGET_MAKE_ENV) INSTALL_DIR="$(TARGET_DIR)/usr/lib/lua" \
> + $(MAKE) -C $(@D) install
> +endef
> +
> +$(eval $(generic-package))
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH] directfb-lua: new package
2013-07-29 19:36 [Buildroot] [PATCH] directfb-lua: new package Ezequiel Garcia
2014-03-02 15:39 ` Thomas Petazzoni
@ 2014-03-03 19:38 ` François Perrad
2014-03-03 23:05 ` Ezequiel Garcia
1 sibling, 1 reply; 4+ messages in thread
From: François Perrad @ 2014-03-03 19:38 UTC (permalink / raw)
To: buildroot
2013-07-29 21:36 GMT+02:00 Ezequiel Garcia <ezequiel.garcia@free-electrons.com>:
> This is a Lua binding to DirectFB. It is an automated binding
> generated from the DirectFB headers, so it generates an identical
> API to DirectFB's, only simpler to use.
>
> Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
> ---
> package/Config.in | 1 +
> package/directfb-lua/Config.in | 10 ++++++++++
> package/directfb-lua/directfb-lua.mk | 23 +++++++++++++++++++++++
> 3 files changed, 34 insertions(+)
> create mode 100644 package/directfb-lua/Config.in
> create mode 100644 package/directfb-lua/directfb-lua.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 6d5ff01..dcaac4c 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -120,6 +120,7 @@ comment "graphic libraries"
> source "package/cegui06/Config.in"
> source "package/directfb/Config.in"
> source "package/directfb-examples/Config.in"
> +source "package/directfb-lua/Config.in"
This is not the right place. directfb-lua must be inserted in the Lua
modules section, just after 'dado'.
> source "package/divine/Config.in"
> source "package/fbdump/Config.in"
> source "package/fbgrab/Config.in"
> diff --git a/package/directfb-lua/Config.in b/package/directfb-lua/Config.in
> new file mode 100644
> index 0000000..7f941f9
> --- /dev/null
> +++ b/package/directfb-lua/Config.in
> @@ -0,0 +1,10 @@
> +config BR2_PACKAGE_DIRECTFB_LUA
> + bool "directfb-lua"
> + depends on BR2_PACKAGE_DIRECTFB
> + depends on BR2_PACKAGE_LUA
The dependency with Lua is implicit in the Lua modules section.
The dependency with DirectFB must be rewritten like this :
select BR2_PACKAGE_DIRECTFB
depends on BR2_TOOLCHAIN_HAS_THREADS # directfb
depends on BR2_INSTALL_LIBSTDCPP # directfb
with this comment statement at the end of the file :
comment "directfb-lua needs a toolchain w/ C++, threads"
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
> + help
> + directfb-lua is a Lua binding to DirectFB. It is an automated binding
> + generated from the DirectFB headers. This means it generates an API
> + identical to the DirectFB's, only easier to use.
> +
> + https://github.com/ezequielgarcia/directfb-lua
> diff --git a/package/directfb-lua/directfb-lua.mk b/package/directfb-lua/directfb-lua.mk
> new file mode 100644
> index 0000000..f975a55
> --- /dev/null
> +++ b/package/directfb-lua/directfb-lua.mk
> @@ -0,0 +1,23 @@
> +################################################################################
> +#
> +# directfb-lua
> +#
> +################################################################################
> +
> +DIRECTFB_LUA_VERSION = v0.2.1
> +DIRECTFB_LUA_SITE = https://github.com/ezequielgarcia/directfb-lua/tarball/$(DIRECTFB_LUA_VERSION)
Now, Buildroot has a Github helper.
DIRECTFB_LUA_SITE = $(call
github,ezequielgarcia,directfb-lua,$(DIRECTFB_LUA_VERSION))
> +DIRECTFB_LUA_LICENSE = MIT
> +DIRECTFB_LUA_LICENSE_FILES = COPYING
> +DIRECTFB_LUA_DEPENDENCIES = directfb lua
Now, Buildroot has various Lua interpreters, and directfb-lua could be
build with all of them.
DIRECTFB_LUA_DEPENDENCIES = directfb luainterpreter
> +
> +define DIRECTFB_LUA_BUILD_CMDS
> + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) gen
> + $(TARGET_MAKE_ENV) CROSS_COMPILE="$(TARGET_CROSS)" $(MAKE) -C $(@D)
> +endef
> +
> +define DIRECTFB_LUA_INSTALL_TARGET_CMDS
> + $(TARGET_MAKE_ENV) INSTALL_DIR="$(TARGET_DIR)/usr/lib/lua" \
At this time :
INSTALL_DIR="$(TARGET_DIR)/usr/lib/lua/$(LUAINTERPRETER_ABIVER)"
Fran?ois
> + $(MAKE) -C $(@D) install
> +endef
> +
> +$(eval $(generic-package))
> --
> 1.8.1.5
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH] directfb-lua: new package
2014-03-03 19:38 ` François Perrad
@ 2014-03-03 23:05 ` Ezequiel Garcia
0 siblings, 0 replies; 4+ messages in thread
From: Ezequiel Garcia @ 2014-03-03 23:05 UTC (permalink / raw)
To: buildroot
On Mon, Mar 03, 2014 at 08:38:12PM +0100, Fran?ois Perrad wrote:
> 2013-07-29 21:36 GMT+02:00 Ezequiel Garcia <ezequiel.garcia@free-electrons.com>:
> > This is a Lua binding to DirectFB. It is an automated binding
> > generated from the DirectFB headers, so it generates an identical
> > API to DirectFB's, only simpler to use.
> >
> > Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
> > ---
> > package/Config.in | 1 +
> > package/directfb-lua/Config.in | 10 ++++++++++
> > package/directfb-lua/directfb-lua.mk | 23 +++++++++++++++++++++++
> > 3 files changed, 34 insertions(+)
> > create mode 100644 package/directfb-lua/Config.in
> > create mode 100644 package/directfb-lua/directfb-lua.mk
> >
> > diff --git a/package/Config.in b/package/Config.in
> > index 6d5ff01..dcaac4c 100644
> > --- a/package/Config.in
> > +++ b/package/Config.in
> > @@ -120,6 +120,7 @@ comment "graphic libraries"
> > source "package/cegui06/Config.in"
> > source "package/directfb/Config.in"
> > source "package/directfb-examples/Config.in"
> > +source "package/directfb-lua/Config.in"
>
> This is not the right place. directfb-lua must be inserted in the Lua
> modules section, just after 'dado'.
>
> > source "package/divine/Config.in"
> > source "package/fbdump/Config.in"
> > source "package/fbgrab/Config.in"
> > diff --git a/package/directfb-lua/Config.in b/package/directfb-lua/Config.in
> > new file mode 100644
> > index 0000000..7f941f9
> > --- /dev/null
> > +++ b/package/directfb-lua/Config.in
> > @@ -0,0 +1,10 @@
> > +config BR2_PACKAGE_DIRECTFB_LUA
> > + bool "directfb-lua"
> > + depends on BR2_PACKAGE_DIRECTFB
> > + depends on BR2_PACKAGE_LUA
>
> The dependency with Lua is implicit in the Lua modules section.
> The dependency with DirectFB must be rewritten like this :
>
> select BR2_PACKAGE_DIRECTFB
> depends on BR2_TOOLCHAIN_HAS_THREADS # directfb
> depends on BR2_INSTALL_LIBSTDCPP # directfb
>
> with this comment statement at the end of the file :
>
> comment "directfb-lua needs a toolchain w/ C++, threads"
> depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
>
> > + help
> > + directfb-lua is a Lua binding to DirectFB. It is an automated binding
> > + generated from the DirectFB headers. This means it generates an API
> > + identical to the DirectFB's, only easier to use.
> > +
> > + https://github.com/ezequielgarcia/directfb-lua
> > diff --git a/package/directfb-lua/directfb-lua.mk b/package/directfb-lua/directfb-lua.mk
> > new file mode 100644
> > index 0000000..f975a55
> > --- /dev/null
> > +++ b/package/directfb-lua/directfb-lua.mk
> > @@ -0,0 +1,23 @@
> > +################################################################################
> > +#
> > +# directfb-lua
> > +#
> > +################################################################################
> > +
> > +DIRECTFB_LUA_VERSION = v0.2.1
> > +DIRECTFB_LUA_SITE = https://github.com/ezequielgarcia/directfb-lua/tarball/$(DIRECTFB_LUA_VERSION)
>
> Now, Buildroot has a Github helper.
> DIRECTFB_LUA_SITE = $(call
> github,ezequielgarcia,directfb-lua,$(DIRECTFB_LUA_VERSION))
>
> > +DIRECTFB_LUA_LICENSE = MIT
> > +DIRECTFB_LUA_LICENSE_FILES = COPYING
> > +DIRECTFB_LUA_DEPENDENCIES = directfb lua
>
> Now, Buildroot has various Lua interpreters, and directfb-lua could be
> build with all of them.
> DIRECTFB_LUA_DEPENDENCIES = directfb luainterpreter
>
> > +
> > +define DIRECTFB_LUA_BUILD_CMDS
> > + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) gen
> > + $(TARGET_MAKE_ENV) CROSS_COMPILE="$(TARGET_CROSS)" $(MAKE) -C $(@D)
> > +endef
> > +
> > +define DIRECTFB_LUA_INSTALL_TARGET_CMDS
> > + $(TARGET_MAKE_ENV) INSTALL_DIR="$(TARGET_DIR)/usr/lib/lua" \
>
> At this time :
> INSTALL_DIR="$(TARGET_DIR)/usr/lib/lua/$(LUAINTERPRETER_ABIVER)"
>
Thanks a lot for the feedback! I'll push another patch.
--
Ezequiel Garc?a, Free Electrons
Embedded Linux, Kernel and Android Engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-03-03 23:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-29 19:36 [Buildroot] [PATCH] directfb-lua: new package Ezequiel Garcia
2014-03-02 15:39 ` Thomas Petazzoni
2014-03-03 19:38 ` François Perrad
2014-03-03 23:05 ` Ezequiel Garcia
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).