All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/6] lpeg-patterns: new package
@ 2017-09-24 16:18 Francois Perrad
  2017-09-24 16:18 ` [Buildroot] [PATCH 2/6] lua-fifo: " Francois Perrad
                   ` (5 more replies)
  0 siblings, 6 replies; 12+ messages in thread
From: Francois Perrad @ 2017-09-24 16:18 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/Config.in                        |  1 +
 package/lpeg-patterns/Config.in          |  8 ++++++++
 package/lpeg-patterns/lpeg-patterns.hash |  2 ++
 package/lpeg-patterns/lpeg-patterns.mk   | 14 ++++++++++++++
 4 files changed, 25 insertions(+)
 create mode 100644 package/lpeg-patterns/Config.in
 create mode 100644 package/lpeg-patterns/lpeg-patterns.hash
 create mode 100644 package/lpeg-patterns/lpeg-patterns.mk

diff --git a/package/Config.in b/package/Config.in
index c8392eb69..217209bed 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -566,6 +566,7 @@ menu "Lua libraries/modules"
 	source "package/ljlinenoise/Config.in"
 	source "package/ljsyscall/Config.in"
 	source "package/lpeg/Config.in"
+	source "package/lpeg-patterns/Config.in"
 	source "package/lpty/Config.in"
 	source "package/lrandom/Config.in"
 	source "package/lsqlite3/Config.in"
diff --git a/package/lpeg-patterns/Config.in b/package/lpeg-patterns/Config.in
new file mode 100644
index 000000000..3309e4a69
--- /dev/null
+++ b/package/lpeg-patterns/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_LPEG_PATTERNS
+	bool "lpeg-patterns"
+	# These are runtime dependencies
+	select BR2_PACKAGE_LPEG
+	help
+	  a collection of LPEG patterns.
+
+	  https://github.com/daurnimator/lpeg_patterns
diff --git a/package/lpeg-patterns/lpeg-patterns.hash b/package/lpeg-patterns/lpeg-patterns.hash
new file mode 100644
index 000000000..f779466df
--- /dev/null
+++ b/package/lpeg-patterns/lpeg-patterns.hash
@@ -0,0 +1,2 @@
+# Locally calculated
+sha256 82c8eddee52069e5ae821b68cb9e295ab5767a47d07545a4ca36ac1e81066086  lpeg_patterns-0.4-0.src.rock
diff --git a/package/lpeg-patterns/lpeg-patterns.mk b/package/lpeg-patterns/lpeg-patterns.mk
new file mode 100644
index 000000000..68bfe7361
--- /dev/null
+++ b/package/lpeg-patterns/lpeg-patterns.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# lpeg-patterns
+#
+################################################################################
+
+LPEG_PATTERNS_VERSION = 0.4-0
+LPEG_PATTERNS_NAME_UPSTREAM = lpeg_patterns
+LPEG_PATTERNS_ROCKSPEC = $(LPEG_PATTERNS_NAME_UPSTREAM)-$(LPEG_PATTERNS_VERSION).rockspec
+LPEG_PATTERNS_SOURCE = $(LPEG_PATTERNS_NAME_UPSTREAM)-$(LPEG_PATTERNS_VERSION).src.rock
+LPEG_PATTERNS_LICENSE = MIT
+LPEG_PATTERNS_LICENSE_FILES = $(LPEG_PATTERNS_SUBDIR)/LICENSE.md
+
+$(eval $(luarocks-package))
-- 
2.11.0

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

* [Buildroot] [PATCH 2/6] lua-fifo: new package
  2017-09-24 16:18 [Buildroot] [PATCH 1/6] lpeg-patterns: new package Francois Perrad
@ 2017-09-24 16:18 ` Francois Perrad
  2017-10-03 20:03   ` Thomas Petazzoni
  2017-09-24 16:18 ` [Buildroot] [PATCH 3/6] lua-cqueues: " Francois Perrad
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Francois Perrad @ 2017-09-24 16:18 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/Config.in              |  1 +
 package/lua-fifo/Config.in     |  6 ++++++
 package/lua-fifo/lua-fifo.hash |  2 ++
 package/lua-fifo/lua-fifo.mk   | 14 ++++++++++++++
 4 files changed, 23 insertions(+)
 create mode 100644 package/lua-fifo/Config.in
 create mode 100644 package/lua-fifo/lua-fifo.hash
 create mode 100644 package/lua-fifo/lua-fifo.mk

diff --git a/package/Config.in b/package/Config.in
index 217209bed..e4133d365 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -578,6 +578,7 @@ menu "Lua libraries/modules"
 	source "package/lua-curl/Config.in"
 	source "package/lua-datafile/Config.in"
 	source "package/lua-ev/Config.in"
+	source "package/lua-fifo/Config.in"
 	source "package/lua-flu/Config.in"
 	source "package/lua-iconv/Config.in"
 	source "package/lua-markdown/Config.in"
diff --git a/package/lua-fifo/Config.in b/package/lua-fifo/Config.in
new file mode 100644
index 000000000..5715b6bd2
--- /dev/null
+++ b/package/lua-fifo/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_LUA_FIFO
+	bool "lua-fifo"
+	help
+	  A lua library/'class' that implements a FIFO.
+
+	  https://github.com/daurnimator/fifo.lua
diff --git a/package/lua-fifo/lua-fifo.hash b/package/lua-fifo/lua-fifo.hash
new file mode 100644
index 000000000..bab372804
--- /dev/null
+++ b/package/lua-fifo/lua-fifo.hash
@@ -0,0 +1,2 @@
+# Locally calculated
+sha256 53dea24ad658614a0254dcb10296a1a0fc5357315ada5724d6362f54c32b4c20  fifo-0.2-0.src.rock
diff --git a/package/lua-fifo/lua-fifo.mk b/package/lua-fifo/lua-fifo.mk
new file mode 100644
index 000000000..875b89577
--- /dev/null
+++ b/package/lua-fifo/lua-fifo.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# lua-fifo
+#
+################################################################################
+
+LUA_FIFO_VERSION_UPSTREAM =0.2
+LUA_FIFO_VERSION =$(LUA_FIFO_VERSION_UPSTREAM)-0
+LUA_FIFO_NAME_UPSTREAM = fifo
+LUA_FIFO_SUBDIR = fifo.lua-$(LUA_FIFO_VERSION_UPSTREAM)
+LUA_FIFO_LICENSE = MIT
+LUA_FIFO_LICENSE_FILES = $(LUA_FIFO_SUBDIR)/LICENSE
+
+$(eval $(luarocks-package))
-- 
2.11.0

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

* [Buildroot] [PATCH 3/6] lua-cqueues: new package
  2017-09-24 16:18 [Buildroot] [PATCH 1/6] lpeg-patterns: new package Francois Perrad
  2017-09-24 16:18 ` [Buildroot] [PATCH 2/6] lua-fifo: " Francois Perrad
@ 2017-09-24 16:18 ` Francois Perrad
  2017-10-03 20:14   ` Thomas Petazzoni
  2017-09-24 16:18 ` [Buildroot] [PATCH 4/6] lua-compat53: " Francois Perrad
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Francois Perrad @ 2017-09-24 16:18 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/Config.in                    |  1 +
 package/lua-cqueues/Config.in        | 12 ++++++++++++
 package/lua-cqueues/lua-cqueues.hash |  2 ++
 package/lua-cqueues/lua-cqueues.mk   | 23 +++++++++++++++++++++++
 4 files changed, 38 insertions(+)
 create mode 100644 package/lua-cqueues/Config.in
 create mode 100644 package/lua-cqueues/lua-cqueues.hash
 create mode 100644 package/lua-cqueues/lua-cqueues.mk

diff --git a/package/Config.in b/package/Config.in
index e4133d365..393bdcf4f 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -574,6 +574,7 @@ menu "Lua libraries/modules"
 	source "package/lua-cjson/Config.in"
 	source "package/lua-coat/Config.in"
 	source "package/lua-coatpersistent/Config.in"
+	source "package/lua-cqueues/Config.in"
 	source "package/lua-csnappy/Config.in"
 	source "package/lua-curl/Config.in"
 	source "package/lua-datafile/Config.in"
diff --git a/package/lua-cqueues/Config.in b/package/lua-cqueues/Config.in
new file mode 100644
index 000000000..60f022848
--- /dev/null
+++ b/package/lua-cqueues/Config.in
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_LUA_CQUEUES
+	bool "lua-cqueues"
+	depends on BR2_TOOLCHAIN_HAS_THREADS
+	select BR2_PACKAGE_OPENSSL
+	help
+	  Continuation Queues: Embeddable asynchronous networking,
+	  threading, and notification framework for Lua on Unix.
+
+	  http://25thandclement.com/~william/projects/cqueues.html
+
+comment "lua-cqueues needs a toolchain w/ threads"
+	depends on !BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/lua-cqueues/lua-cqueues.hash b/package/lua-cqueues/lua-cqueues.hash
new file mode 100644
index 000000000..9fd664d69
--- /dev/null
+++ b/package/lua-cqueues/lua-cqueues.hash
@@ -0,0 +1,2 @@
+# Locally calculated
+sha256 ae51b713bdf966215b87244e03ac60b5a12beb82d15dfb02755a000cfb2df905  lua-cqueues-rel-20161215.tar.gz
diff --git a/package/lua-cqueues/lua-cqueues.mk b/package/lua-cqueues/lua-cqueues.mk
new file mode 100644
index 000000000..4f4be1e04
--- /dev/null
+++ b/package/lua-cqueues/lua-cqueues.mk
@@ -0,0 +1,23 @@
+################################################################################
+#
+# lua-cqueues
+#
+################################################################################
+
+LUA_CQUEUES_VERSION = rel-20161215
+LUA_CQUEUES_SITE = $(call github,wahern,cqueues,$(LUA_CQUEUES_VERSION))
+LUA_CQUEUES_LICENSE = MIT
+LUA_CQUEUES_LICENSE_FILES = LICENSE
+LUA_CQUEUES_DEPENDENCIES = luainterpreter openssl
+
+define LUA_CQUEUES_BUILD_CMDS
+	$(TARGET_MAKE_ENV) $(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
+		prefix="$(STAGING_DIR)/usr" all$(LUAINTERPRETER_ABIVER)
+endef
+
+define LUA_CQUEUES_INSTALL_TARGET_CMDS
+	$(TARGET_MAKE_ENV) $(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
+		DESTDIR="$(TARGET_DIR)" prefix=/usr install$(LUAINTERPRETER_ABIVER)
+endef
+
+$(eval $(generic-package))
-- 
2.11.0

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

* [Buildroot] [PATCH 4/6] lua-compat53: new package
  2017-09-24 16:18 [Buildroot] [PATCH 1/6] lpeg-patterns: new package Francois Perrad
  2017-09-24 16:18 ` [Buildroot] [PATCH 2/6] lua-fifo: " Francois Perrad
  2017-09-24 16:18 ` [Buildroot] [PATCH 3/6] lua-cqueues: " Francois Perrad
@ 2017-09-24 16:18 ` Francois Perrad
  2017-10-03 20:15   ` Thomas Petazzoni
  2017-09-24 16:18 ` [Buildroot] [PATCH 5/6] lua-basexx: " Francois Perrad
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Francois Perrad @ 2017-09-24 16:18 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/Config.in                      |  1 +
 package/lua-compat53/Config.in         |  8 ++++++++
 package/lua-compat53/lua-compat53.hash |  2 ++
 package/lua-compat53/lua-compat53.mk   | 14 ++++++++++++++
 4 files changed, 25 insertions(+)
 create mode 100644 package/lua-compat53/Config.in
 create mode 100644 package/lua-compat53/lua-compat53.hash
 create mode 100644 package/lua-compat53/lua-compat53.mk

diff --git a/package/Config.in b/package/Config.in
index 393bdcf4f..b4dc699a9 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -574,6 +574,7 @@ menu "Lua libraries/modules"
 	source "package/lua-cjson/Config.in"
 	source "package/lua-coat/Config.in"
 	source "package/lua-coatpersistent/Config.in"
+	source "package/lua-compat53/Config.in"
 	source "package/lua-cqueues/Config.in"
 	source "package/lua-csnappy/Config.in"
 	source "package/lua-curl/Config.in"
diff --git a/package/lua-compat53/Config.in b/package/lua-compat53/Config.in
new file mode 100644
index 000000000..7ab3d740f
--- /dev/null
+++ b/package/lua-compat53/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_LUA_COMPAT53
+	bool "lua-compat53"
+	depends on !BR2_PACKAGE_LUA_5_3
+	help
+	  Compatibility module providing Lua-5.3-style APIs for Lua 5.2
+	  and 5.1
+
+	  https://github.com/keplerproject/lua-compat-5.3
diff --git a/package/lua-compat53/lua-compat53.hash b/package/lua-compat53/lua-compat53.hash
new file mode 100644
index 000000000..7f1e1bb22
--- /dev/null
+++ b/package/lua-compat53/lua-compat53.hash
@@ -0,0 +1,2 @@
+# Locally calculated
+sha256 fd0117156f59d1cb3824d5cca63be84c72cb5519b714377545433be3bb31afdf  compat53-0.5-1.src.rock
diff --git a/package/lua-compat53/lua-compat53.mk b/package/lua-compat53/lua-compat53.mk
new file mode 100644
index 000000000..969f81639
--- /dev/null
+++ b/package/lua-compat53/lua-compat53.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# lua-compat53
+#
+################################################################################
+
+LUA_COMPAT53_VERSION_UPSTREAM = 0.5
+LUA_COMPAT53_VERSION = $(LUA_COMPAT53_VERSION_UPSTREAM)-1
+LUA_COMPAT53_NAME_UPSTREAM = compat53
+LUA_COMPAT53_SUBDIR = lua-compat-5.3-$(LUA_COMPAT53_VERSION_UPSTREAM)
+LUA_COMPAT53_LICENSE = MIT
+LUA_COMPAT53_LICENSE_FILES = $(LUA_COMPAT53_SUBDIR)/LICENSE
+
+$(eval $(luarocks-package))
-- 
2.11.0

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

* [Buildroot] [PATCH 5/6] lua-basexx: new package
  2017-09-24 16:18 [Buildroot] [PATCH 1/6] lpeg-patterns: new package Francois Perrad
                   ` (2 preceding siblings ...)
  2017-09-24 16:18 ` [Buildroot] [PATCH 4/6] lua-compat53: " Francois Perrad
@ 2017-09-24 16:18 ` Francois Perrad
  2017-10-03 20:16   ` Thomas Petazzoni
  2017-09-24 16:18 ` [Buildroot] [PATCH 6/6] lua-http: " Francois Perrad
  2017-10-03 20:03 ` [Buildroot] [PATCH 1/6] lpeg-patterns: " Thomas Petazzoni
  5 siblings, 1 reply; 12+ messages in thread
From: Francois Perrad @ 2017-09-24 16:18 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/Config.in                  |  1 +
 package/lua-basexx/Config.in       |  8 ++++++++
 package/lua-basexx/lua-basexx.hash |  2 ++
 package/lua-basexx/lua-basexx.mk   | 14 ++++++++++++++
 4 files changed, 25 insertions(+)
 create mode 100644 package/lua-basexx/Config.in
 create mode 100644 package/lua-basexx/lua-basexx.hash
 create mode 100644 package/lua-basexx/lua-basexx.mk

diff --git a/package/Config.in b/package/Config.in
index b4dc699a9..2e3339a91 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -570,6 +570,7 @@ menu "Lua libraries/modules"
 	source "package/lpty/Config.in"
 	source "package/lrandom/Config.in"
 	source "package/lsqlite3/Config.in"
+	source "package/lua-basexx/Config.in"
 	source "package/lua-bit32/Config.in"
 	source "package/lua-cjson/Config.in"
 	source "package/lua-coat/Config.in"
diff --git a/package/lua-basexx/Config.in b/package/lua-basexx/Config.in
new file mode 100644
index 000000000..2f3bb1dec
--- /dev/null
+++ b/package/lua-basexx/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_LUA_BASEXX
+	bool "lua-basexx"
+	help
+	  A Lua library which provides base2(bitfield), base16(hex),
+	  base32(crockford/rfc), base64(rfc/url), base85(z85) decoding
+	  and encoding.
+
+	  https://github.com/aiq/basexx
diff --git a/package/lua-basexx/lua-basexx.hash b/package/lua-basexx/lua-basexx.hash
new file mode 100644
index 000000000..91c428c14
--- /dev/null
+++ b/package/lua-basexx/lua-basexx.hash
@@ -0,0 +1,2 @@
+# Locally calculated
+sha256 ff5379b1f5b396103b8bb589ab3dd94d0a727c8e7a48dcfe1c73e2f07af6a8df  basexx-0.4.0-1.src.rock
diff --git a/package/lua-basexx/lua-basexx.mk b/package/lua-basexx/lua-basexx.mk
new file mode 100644
index 000000000..bfdc1e27b
--- /dev/null
+++ b/package/lua-basexx/lua-basexx.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# lua-basexx
+#
+################################################################################
+
+LUA_BASEXX_VERSION_UPSTREAM =0.4.0
+LUA_BASEXX_VERSION = $(LUA_BASEXX_VERSION_UPSTREAM)-1
+LUA_BASEXX_NAME_UPSTREAM = basexx
+LUA_BASEXX_SUBDIR = basexx-$(LUA_BASEXX_VERSION_UPSTREAM)
+LUA_BASEXX_LICENSE = MIT
+LUA_BASEXX_LICENSE_FILES = $(LUA_BASEXX_SUBDIR)/LICENSE
+
+$(eval $(luarocks-package))
-- 
2.11.0

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

* [Buildroot] [PATCH 6/6] lua-http: new package
  2017-09-24 16:18 [Buildroot] [PATCH 1/6] lpeg-patterns: new package Francois Perrad
                   ` (3 preceding siblings ...)
  2017-09-24 16:18 ` [Buildroot] [PATCH 5/6] lua-basexx: " Francois Perrad
@ 2017-09-24 16:18 ` Francois Perrad
  2017-10-03 20:17   ` Thomas Petazzoni
  2017-10-03 20:03 ` [Buildroot] [PATCH 1/6] lpeg-patterns: " Thomas Petazzoni
  5 siblings, 1 reply; 12+ messages in thread
From: Francois Perrad @ 2017-09-24 16:18 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/Config.in              |  1 +
 package/lua-http/Config.in     | 18 ++++++++++++++++++
 package/lua-http/lua-http.hash |  2 ++
 package/lua-http/lua-http.mk   | 14 ++++++++++++++
 4 files changed, 35 insertions(+)
 create mode 100644 package/lua-http/Config.in
 create mode 100644 package/lua-http/lua-http.hash
 create mode 100644 package/lua-http/lua-http.mk

diff --git a/package/Config.in b/package/Config.in
index 2e3339a91..6ab9a7541 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -583,6 +583,7 @@ menu "Lua libraries/modules"
 	source "package/lua-ev/Config.in"
 	source "package/lua-fifo/Config.in"
 	source "package/lua-flu/Config.in"
+	source "package/lua-http/Config.in"
 	source "package/lua-iconv/Config.in"
 	source "package/lua-markdown/Config.in"
 	source "package/lua-messagepack/Config.in"
diff --git a/package/lua-http/Config.in b/package/lua-http/Config.in
new file mode 100644
index 000000000..dabeccfcf
--- /dev/null
+++ b/package/lua-http/Config.in
@@ -0,0 +1,18 @@
+config BR2_PACKAGE_LUA_HTTP
+	bool "lua-http"
+	depends on BR2_TOOLCHAIN_HAS_THREADS    # luaossl & lua-cqueues
+	# These are runtime dependencies
+	select BR2_PACKAGE_LPEG_PATTERNS
+	select BR2_PACKAGE_LUA_BASEXX
+	select BR2_PACKAGE_LUA_COMPAT53 if !BR2_PACKAGE_LUA_5_3
+	select BR2_PACKAGE_LUA_CQUEUES
+	select BR2_PACKAGE_LUA_FIFO
+	select BR2_PACKAGE_LUABITOP if BR2_PACKAGE_LUA_5_1
+	select BR2_PACKAGE_LUAOSSL
+	help
+	  HTTP library for Lua
+
+	  https://daurnimator.github.io/lua-http/
+
+comment "lua-http needs a toolchain w/ threads"
+	depends on !BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/lua-http/lua-http.hash b/package/lua-http/lua-http.hash
new file mode 100644
index 000000000..2346ab97a
--- /dev/null
+++ b/package/lua-http/lua-http.hash
@@ -0,0 +1,2 @@
+# Locally calculated
+sha256 d68591eeeeb60c4187469eae89f5bad02d753a8c0adaa460d453b0734222645a  http-0.2-0.src.rock
diff --git a/package/lua-http/lua-http.mk b/package/lua-http/lua-http.mk
new file mode 100644
index 000000000..9bc416b8a
--- /dev/null
+++ b/package/lua-http/lua-http.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# lua-http
+#
+################################################################################
+
+LUA_HTTP_VERSION_UPSTREAM = 0.2
+LUA_HTTP_VERSION = $(LUA_HTTP_VERSION_UPSTREAM)-0
+LUA_HTTP_NAME_UPSTREAM = http
+LUA_HTTP_SUBDIR = lua-http-$(LUA_HTTP_VERSION_UPSTREAM)
+LUA_HTTP_LICENSE = MIT
+LUA_HTTP_LICENSE_FILES = $(LUA_HTTP_SUBDIR)/LICENSE.md
+
+$(eval $(luarocks-package))
-- 
2.11.0

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

* [Buildroot] [PATCH 1/6] lpeg-patterns: new package
  2017-09-24 16:18 [Buildroot] [PATCH 1/6] lpeg-patterns: new package Francois Perrad
                   ` (4 preceding siblings ...)
  2017-09-24 16:18 ` [Buildroot] [PATCH 6/6] lua-http: " Francois Perrad
@ 2017-10-03 20:03 ` Thomas Petazzoni
  5 siblings, 0 replies; 12+ messages in thread
From: Thomas Petazzoni @ 2017-10-03 20:03 UTC (permalink / raw)
  To: buildroot

Hello,

On Sun, 24 Sep 2017 18:18:54 +0200, Francois Perrad wrote:
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
> ---
>  package/Config.in                        |  1 +
>  package/lpeg-patterns/Config.in          |  8 ++++++++
>  package/lpeg-patterns/lpeg-patterns.hash |  2 ++
>  package/lpeg-patterns/lpeg-patterns.mk   | 14 ++++++++++++++
>  4 files changed, 25 insertions(+)
>  create mode 100644 package/lpeg-patterns/Config.in
>  create mode 100644 package/lpeg-patterns/lpeg-patterns.hash
>  create mode 100644 package/lpeg-patterns/lpeg-patterns.mk

Thanks, but according to the Buildroot manual, all Lua packages must
now start with "lua", i.e lualpeg-patterns or perhaps preferably
lua-lpeg-patterns.

See also commit 75cf694bb0892186a68bd954cef82922d825ca6f from Arnout.

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 2/6] lua-fifo: new package
  2017-09-24 16:18 ` [Buildroot] [PATCH 2/6] lua-fifo: " Francois Perrad
@ 2017-10-03 20:03   ` Thomas Petazzoni
  0 siblings, 0 replies; 12+ messages in thread
From: Thomas Petazzoni @ 2017-10-03 20:03 UTC (permalink / raw)
  To: buildroot

Hello,

On Sun, 24 Sep 2017 18:18:55 +0200, Francois Perrad wrote:
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
> ---
>  package/Config.in              |  1 +
>  package/lua-fifo/Config.in     |  6 ++++++
>  package/lua-fifo/lua-fifo.hash |  2 ++
>  package/lua-fifo/lua-fifo.mk   | 14 ++++++++++++++
>  4 files changed, 23 insertions(+)
>  create mode 100644 package/lua-fifo/Config.in
>  create mode 100644 package/lua-fifo/lua-fifo.hash
>  create mode 100644 package/lua-fifo/lua-fifo.mk

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 3/6] lua-cqueues: new package
  2017-09-24 16:18 ` [Buildroot] [PATCH 3/6] lua-cqueues: " Francois Perrad
@ 2017-10-03 20:14   ` Thomas Petazzoni
  0 siblings, 0 replies; 12+ messages in thread
From: Thomas Petazzoni @ 2017-10-03 20:14 UTC (permalink / raw)
  To: buildroot

Hello,

On Sun, 24 Sep 2017 18:18:56 +0200, Francois Perrad wrote:
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
> ---
>  package/Config.in                    |  1 +
>  package/lua-cqueues/Config.in        | 12 ++++++++++++
>  package/lua-cqueues/lua-cqueues.hash |  2 ++
>  package/lua-cqueues/lua-cqueues.mk   | 23 +++++++++++++++++++++++
>  4 files changed, 38 insertions(+)
>  create mode 100644 package/lua-cqueues/Config.in
>  create mode 100644 package/lua-cqueues/lua-cqueues.hash
>  create mode 100644 package/lua-cqueues/lua-cqueues.mk

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 4/6] lua-compat53: new package
  2017-09-24 16:18 ` [Buildroot] [PATCH 4/6] lua-compat53: " Francois Perrad
@ 2017-10-03 20:15   ` Thomas Petazzoni
  0 siblings, 0 replies; 12+ messages in thread
From: Thomas Petazzoni @ 2017-10-03 20:15 UTC (permalink / raw)
  To: buildroot

Hello,

On Sun, 24 Sep 2017 18:18:57 +0200, Francois Perrad wrote:
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
> ---
>  package/Config.in                      |  1 +
>  package/lua-compat53/Config.in         |  8 ++++++++
>  package/lua-compat53/lua-compat53.hash |  2 ++
>  package/lua-compat53/lua-compat53.mk   | 14 ++++++++++++++
>  4 files changed, 25 insertions(+)
>  create mode 100644 package/lua-compat53/Config.in
>  create mode 100644 package/lua-compat53/lua-compat53.hash
>  create mode 100644 package/lua-compat53/lua-compat53.mk

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 5/6] lua-basexx: new package
  2017-09-24 16:18 ` [Buildroot] [PATCH 5/6] lua-basexx: " Francois Perrad
@ 2017-10-03 20:16   ` Thomas Petazzoni
  0 siblings, 0 replies; 12+ messages in thread
From: Thomas Petazzoni @ 2017-10-03 20:16 UTC (permalink / raw)
  To: buildroot

Hello,

On Sun, 24 Sep 2017 18:18:58 +0200, Francois Perrad wrote:
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
> ---
>  package/Config.in                  |  1 +
>  package/lua-basexx/Config.in       |  8 ++++++++
>  package/lua-basexx/lua-basexx.hash |  2 ++
>  package/lua-basexx/lua-basexx.mk   | 14 ++++++++++++++
>  4 files changed, 25 insertions(+)
>  create mode 100644 package/lua-basexx/Config.in
>  create mode 100644 package/lua-basexx/lua-basexx.hash
>  create mode 100644 package/lua-basexx/lua-basexx.mk

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 6/6] lua-http: new package
  2017-09-24 16:18 ` [Buildroot] [PATCH 6/6] lua-http: " Francois Perrad
@ 2017-10-03 20:17   ` Thomas Petazzoni
  0 siblings, 0 replies; 12+ messages in thread
From: Thomas Petazzoni @ 2017-10-03 20:17 UTC (permalink / raw)
  To: buildroot

Hello,

On Sun, 24 Sep 2017 18:18:59 +0200, Francois Perrad wrote:
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
> ---
>  package/Config.in              |  1 +
>  package/lua-http/Config.in     | 18 ++++++++++++++++++
>  package/lua-http/lua-http.hash |  2 ++
>  package/lua-http/lua-http.mk   | 14 ++++++++++++++
>  4 files changed, 35 insertions(+)
>  create mode 100644 package/lua-http/Config.in
>  create mode 100644 package/lua-http/lua-http.hash
>  create mode 100644 package/lua-http/lua-http.mk

Looks good to me. However, since it depends on PATCH 1/6, I'll wait
for a v2. I've merged the other patches, so please resend just
lpeg-patterns and lua-http.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2017-10-03 20:17 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-24 16:18 [Buildroot] [PATCH 1/6] lpeg-patterns: new package Francois Perrad
2017-09-24 16:18 ` [Buildroot] [PATCH 2/6] lua-fifo: " Francois Perrad
2017-10-03 20:03   ` Thomas Petazzoni
2017-09-24 16:18 ` [Buildroot] [PATCH 3/6] lua-cqueues: " Francois Perrad
2017-10-03 20:14   ` Thomas Petazzoni
2017-09-24 16:18 ` [Buildroot] [PATCH 4/6] lua-compat53: " Francois Perrad
2017-10-03 20:15   ` Thomas Petazzoni
2017-09-24 16:18 ` [Buildroot] [PATCH 5/6] lua-basexx: " Francois Perrad
2017-10-03 20:16   ` Thomas Petazzoni
2017-09-24 16:18 ` [Buildroot] [PATCH 6/6] lua-http: " Francois Perrad
2017-10-03 20:17   ` Thomas Petazzoni
2017-10-03 20:03 ` [Buildroot] [PATCH 1/6] lpeg-patterns: " Thomas Petazzoni

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.