All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/lua-livr: new package
@ 2020-01-14 16:37 Francois Perrad
  2020-01-14 16:37 ` [Buildroot] [PATCH 2/2] package/lua-livr-extra: " Francois Perrad
  2020-02-02 14:11 ` [Buildroot] [PATCH 1/2] package/lua-livr: " Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Francois Perrad @ 2020-01-14 16:37 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/Config.in b/package/Config.in
index ac59182c8..e18bf40cd 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -634,6 +634,7 @@ menu "Lua libraries/modules"
 	source "package/lua-gd/Config.in"
 	source "package/lua-http/Config.in"
 	source "package/lua-iconv/Config.in"
+	source "package/lua-livr/Config.in"
 	source "package/lua-lpeg-patterns/Config.in"
 	source "package/lua-lunitx/Config.in"
 	source "package/lua-markdown/Config.in"
diff --git a/package/lua-livr/Config.in b/package/lua-livr/Config.in
new file mode 100644
index 000000000..76fd1c754
--- /dev/null
+++ b/package/lua-livr/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_LUA_LIVR
+	bool "lua-livr"
+	help
+	  Lightweight validator supporting Language Independent
+	  Validation Rules Specification (LIVR).
+
+	  https://fperrad.frama.io/lua-LIVR
diff --git a/package/lua-livr/lua-livr.hash b/package/lua-livr/lua-livr.hash
new file mode 100644
index 000000000..a891420b4
--- /dev/null
+++ b/package/lua-livr/lua-livr.hash
@@ -0,0 +1,3 @@
+# computed by luarocks/buildroot
+sha256 a3890301ed5f393b585cab26ac944eddc9df41bfa2ab87c11785925193453493  lua-livr-0.2.1-1.src.rock
+sha256 8f09089acf52cfabcc2a44ec3a492dc261e0ae9df3c618f43b33805e696e02d8  lua-LIVR-0.2.1/COPYRIGHT
diff --git a/package/lua-livr/lua-livr.mk b/package/lua-livr/lua-livr.mk
new file mode 100644
index 000000000..25034b897
--- /dev/null
+++ b/package/lua-livr/lua-livr.mk
@@ -0,0 +1,12 @@
+################################################################################
+#
+# lua-livr
+#
+################################################################################
+
+LUA_LIVR_VERSION = 0.2.1-1
+LUA_LIVR_NAME_UPSTREAM = lua-LIVR
+LUA_LIVR_LICENSE = MIT
+LUA_LIVR_LICENSE_FILES = $(LUA_LIVR_SUBDIR)/COPYRIGHT
+
+$(eval $(luarocks-package))
-- 
2.20.1

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

* [Buildroot] [PATCH 2/2] package/lua-livr-extra: new package
  2020-01-14 16:37 [Buildroot] [PATCH 1/2] package/lua-livr: new package Francois Perrad
@ 2020-01-14 16:37 ` Francois Perrad
  2020-02-02 14:11   ` Peter Korsgaard
  2020-02-02 14:11 ` [Buildroot] [PATCH 1/2] package/lua-livr: " Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Francois Perrad @ 2020-01-14 16:37 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/Config.in b/package/Config.in
index e18bf40cd..916c6b430 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -635,6 +635,7 @@ menu "Lua libraries/modules"
 	source "package/lua-http/Config.in"
 	source "package/lua-iconv/Config.in"
 	source "package/lua-livr/Config.in"
+	source "package/lua-livr-extra/Config.in"
 	source "package/lua-lpeg-patterns/Config.in"
 	source "package/lua-lunitx/Config.in"
 	source "package/lua-markdown/Config.in"
diff --git a/package/lua-livr-extra/Config.in b/package/lua-livr-extra/Config.in
new file mode 100644
index 000000000..085062292
--- /dev/null
+++ b/package/lua-livr-extra/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_LUA_LIVR_EXTRA
+	bool "lua-livr-extra"
+	select BR2_PACKAGE_LUA_LIVR # runtime
+	help
+	  more LIVR rules.
+
+	  https://fperrad.frama.io/lua-LIVR-extra
diff --git a/package/lua-livr-extra/lua-livr-extra.hash b/package/lua-livr-extra/lua-livr-extra.hash
new file mode 100644
index 000000000..cb7cf898b
--- /dev/null
+++ b/package/lua-livr-extra/lua-livr-extra.hash
@@ -0,0 +1,3 @@
+# computed by luarocks/buildroot
+sha256 42fef357db3e05e32112ddebcd4296f040a825dfac77ff2fa03aedbdcdaac729  lua-livr-extra-0.1.1-1.src.rock
+sha256 96751dc604608ecf2357d1599bc2d2e9f56382793a6c218dc98d460759adbf07  lua-LIVR-extra-0.1.1/COPYRIGHT
diff --git a/package/lua-livr-extra/lua-livr-extra.mk b/package/lua-livr-extra/lua-livr-extra.mk
new file mode 100644
index 000000000..0a6378dbf
--- /dev/null
+++ b/package/lua-livr-extra/lua-livr-extra.mk
@@ -0,0 +1,12 @@
+################################################################################
+#
+# lua-livr-extra
+#
+################################################################################
+
+LUA_LIVR_EXTRA_VERSION = 0.1.1-1
+LUA_LIVR_EXTRA_NAME_UPSTREAM = lua-LIVR-extra
+LUA_LIVR_EXTRA_LICENSE = MIT
+LUA_LIVR_EXTRA_LICENSE_FILES = $(LUA_LIVR_EXTRA_SUBDIR)/COPYRIGHT
+
+$(eval $(luarocks-package))
-- 
2.20.1

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

* [Buildroot] [PATCH 1/2] package/lua-livr: new package
  2020-01-14 16:37 [Buildroot] [PATCH 1/2] package/lua-livr: new package Francois Perrad
  2020-01-14 16:37 ` [Buildroot] [PATCH 2/2] package/lua-livr-extra: " Francois Perrad
@ 2020-02-02 14:11 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2020-02-02 14:11 UTC (permalink / raw)
  To: buildroot

>>>>> "Francois" == Francois Perrad <fperrad@gmail.com> writes:

 > Signed-off-by: Francois Perrad <francois.perrad@gadz.org>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] package/lua-livr-extra: new package
  2020-01-14 16:37 ` [Buildroot] [PATCH 2/2] package/lua-livr-extra: " Francois Perrad
@ 2020-02-02 14:11   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2020-02-02 14:11 UTC (permalink / raw)
  To: buildroot

>>>>> "Francois" == Francois Perrad <fperrad@gmail.com> writes:

 > Signed-off-by: Francois Perrad <francois.perrad@gadz.org>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2020-02-02 14:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-14 16:37 [Buildroot] [PATCH 1/2] package/lua-livr: new package Francois Perrad
2020-01-14 16:37 ` [Buildroot] [PATCH 2/2] package/lua-livr-extra: " Francois Perrad
2020-02-02 14:11   ` Peter Korsgaard
2020-02-02 14:11 ` [Buildroot] [PATCH 1/2] package/lua-livr: " Peter Korsgaard

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.