From 1e64410f38378d6d8d9dd7bee048697da655a0fc Mon Sep 17 00:00:00 2001 From: Alex R Date: Fri, 22 Apr 2016 17:05:50 -0700 Subject: [PATCH 01/12] Added jsonrpc4lua --- lang/jsonrpc4lua/Makefile | 52 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 lang/jsonrpc4lua/Makefile diff --git a/lang/jsonrpc4lua/Makefile b/lang/jsonrpc4lua/Makefile new file mode 100644 index 0000000000000..36a91c1dcdeae --- /dev/null +++ b/lang/jsonrpc4lua/Makefile @@ -0,0 +1,52 @@ +# +# Copyright (C) 2006-2015 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=jsonrpc4lua +PKG_VERSION:=1.0.1 +PKG_RELEASE:=2 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz +PKG_SOURCE_PROTO:=git +PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) +PKG_SOURCE_URL:=https://github.com/pdxmeshnet/jsonrpc4lua.git +PKG_SOURCE_VERSION:=$(PKG_VERSION) + +PKG_MAINTAINER:=Alex R +PKG_LICENSE=MIT + +LUA_MODULE_PATH:=/usr/lib/lua + +include $(INCLUDE_DIR)/package.mk + +define Package/jsonrpc4lua + SUBMENU:=Lua + SECTION:=lang + CATEGORY:=Languages + TITLE:=jsonrpc4lua + URL:=https://github.com/pdxmeshnet/jsonrpc4lua + DEPENDS:=+lua +luasocket +lua-cjson +endef + +define Package/jsonrpc4lua/description + JSONRPC for Lua +endef + +define Build/Configure +endef + +define Build/Compile +endef + +define Package/jsonrpc4lua/install + $(INSTALL_DIR) $(1)/$(LUA_MODULE_PATH)/json + $(INSTALL_DATA) $(PKG_BUILD_DIR)/json/rpc.lua $(1)/$(LUA_MODULE_PATH)/json/rpc.lua + $(INSTALL_DATA) $(PKG_BUILD_DIR)/json/rpcserver.lua $(1)/$(LUA_MODULE_PATH)/json/rpcserver.lua +endef + +$(eval $(call BuildPackage,jsonrpc4lua)) From 674245726bdef770c0007653610a4b529406b4cb Mon Sep 17 00:00:00 2001 From: Alex R Date: Fri, 6 May 2016 20:31:07 -0700 Subject: [PATCH 02/12] Added Lua bit32 package --- lang/lua-bit32/Makefile | 58 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 lang/lua-bit32/Makefile diff --git a/lang/lua-bit32/Makefile b/lang/lua-bit32/Makefile new file mode 100644 index 0000000000000..5c0aeb8130891 --- /dev/null +++ b/lang/lua-bit32/Makefile @@ -0,0 +1,58 @@ +# +# Copyright (C) 2016 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=lua-bit32 +PKG_VERSION:=5.3.0 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz +PKG_SOURCE_PROTO:=git +PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) +PKG_SOURCE_URL:=git://github.com/keplerproject/lua-compat-5.2.git +PKG_SOURCE_VERSION:=bitlib-5.3.0 + +PKG_MAINTAINER:=Alex R +PKG_LICENSE=MIT + +LUA_MODULE_PATH:=/usr/lib/lua +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) + +include $(INCLUDE_DIR)/package.mk + +define Package/lua-bit32 + SUBMENU:=Lua + SECTION:=lang + CATEGORY:=Languages + TITLE:=lua-bit32 + URL:=http://www.lua.org/manual/5.2/manual.html#6.7 + DEPENDS:= +lua +endef + +define Package/lua-bit32/description + bit32 is the native Lua 5.2 bit manipulation library, in the version from Lua 5.3; it is compatible with Lua 5.1, 5.2 and 5.3. +endef + +TARGET_CFLAGS += $(FPIC) -shared +TARGET_LDFLAGS += -llua + +LUA_MODULE_PATH:=/usr/lib/lua + +define Build/Configure +endef + +define Build/Compile + $(TARGET_CROSS)gcc $(TARGET_CFLAGS) $(TARGET_LDFLAGS) -I $(PKG_BUILD_DIR)/c-api/ -o $(PKG_BUILD_DIR)/bit32.so $(PKG_BUILD_DIR)/lbitlib.c +endef + +define Package/lua-bit32/install + $(INSTALL_DIR) $(1)/$(LUA_MODULE_PATH)/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/bit32.so $(1)/$(LUA_MODULE_PATH)/ +endef + +$(eval $(call BuildPackage,lua-bit32)) From a16f78a9f9c610427f2aebd50150777e6c61be00 Mon Sep 17 00:00:00 2001 From: Alex R Date: Fri, 6 May 2016 20:32:38 -0700 Subject: [PATCH 03/12] Added Lua alt-getopt package --- lang/lua-alt-getopt/Makefile | 49 ++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 lang/lua-alt-getopt/Makefile diff --git a/lang/lua-alt-getopt/Makefile b/lang/lua-alt-getopt/Makefile new file mode 100644 index 0000000000000..a9c8d851694f8 --- /dev/null +++ b/lang/lua-alt-getopt/Makefile @@ -0,0 +1,49 @@ +# +# Copyright (C) 2016 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=lua-alt-getopt +PKG_VERSION:=0.7.0 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://luaforge.net/frs/download.php/4260/ +PKG_MD5SUM:=f504578b1287ea02759add231b972812 + +PKG_MAINTAINER:=Alex R +PKG_LICENSE=MIT + +LUA_MODULE_PATH:=/usr/lib/lua + +include $(INCLUDE_DIR)/package.mk + +define Package/lua-alt-getopt + SUBMENU:=Lua + SECTION:=lang + CATEGORY:=Languages + TITLE:=lua-alt-getopt + URL:=http://luaforge.net/projects/alt-getopt/ + DEPENDS:=+lua +endef + +define Package/lua-alt-getopt/description + Process application arguments the same way as getopt_long +endef + +define Build/Configure +endef + +define Build/Compile +endef + +define Package/lua-alt-getopt/install + $(INSTALL_DIR) $(1)/$(LUA_MODULE_PATH)/ + $(INSTALL_DATA) $(PKG_BUILD_DIR)/alt_getopt.lua $(1)/$(LUA_MODULE_PATH)/alt_getopt.lua +endef + +$(eval $(call BuildPackage,lua-alt-getopt)) From 7091ea8f05ff128575bbb322e100d28d093d5a3d Mon Sep 17 00:00:00 2001 From: Alex R Date: Fri, 6 May 2016 20:33:01 -0700 Subject: [PATCH 04/12] Added Lua inifile package --- lang/lua-inifile/Makefile | 51 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 lang/lua-inifile/Makefile diff --git a/lang/lua-inifile/Makefile b/lang/lua-inifile/Makefile new file mode 100644 index 0000000000000..4157cea28f601 --- /dev/null +++ b/lang/lua-inifile/Makefile @@ -0,0 +1,51 @@ +# +# Copyright (C) 2016 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=lua-inifile +PKG_VERSION:=1.0 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz +PKG_SOURCE_PROTO:=git +PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) +PKG_SOURCE_URL:=git://github.com/bartbes/love-misc-libs.git +PKG_SOURCE_VERSION:=master + +PKG_MAINTAINER:=Alex R +PKG_LICENSE=Simplified BSD license + +LUA_MODULE_PATH:=/usr/lib/lua + +include $(INCLUDE_DIR)/package.mk + +define Package/lua-inifile + SUBMENU:=Lua + SECTION:=lang + CATEGORY:=Languages + TITLE:=lua-inifile + URL:=http://docs.bartbes.com/inifile + DEPENDS:=+lua +endef + +define Package/lua-inifile/description + Inifile is a lua library for parsing and writing ini files. +endef + +define Build/Configure +endef + +define Build/Compile +endef + +define Package/lua-inifile/install + $(INSTALL_DIR) $(1)/$(LUA_MODULE_PATH)/ + $(INSTALL_DATA) $(PKG_BUILD_DIR)/inifile/inifile.lua $(1)/$(LUA_MODULE_PATH)/inifile.lua +endef + +$(eval $(call BuildPackage,lua-inifile)) From 2d915098539d5a359d1d415a0a2a59560f16cae7 Mon Sep 17 00:00:00 2001 From: Alex R Date: Mon, 23 May 2016 20:36:21 -0700 Subject: [PATCH 05/12] Added Lua cgilua package --- lang/cgilua/Makefile | 64 +++++++++++++++++++ .../patches/post-content-type-fix.patch | 19 ++++++ 2 files changed, 83 insertions(+) create mode 100644 lang/cgilua/Makefile create mode 100644 lang/cgilua/patches/post-content-type-fix.patch diff --git a/lang/cgilua/Makefile b/lang/cgilua/Makefile new file mode 100644 index 0000000000000..7ab2b969d8e69 --- /dev/null +++ b/lang/cgilua/Makefile @@ -0,0 +1,64 @@ +# +# Copyright (C) 2016 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=cgilua +PKG_VERSION:=5.1.4 +PKG_RELEASE:=1 + +PKG_SOURCE:=v$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=https://github.com/keplerproject/cgilua/archive/ +PKG_MD5SUM:=ed162ca341d0f1cd16868c80bed3da4c + +PKG_MAINTAINER:=Alex R +PKG_LICENSE=MIT + +LUA_MODULE_PATH:=/usr/lib/lua +LUA_BIN_PATH:=/usr/bin + +include $(INCLUDE_DIR)/package.mk + +define Package/cgilua + SUBMENU:=Lua + SECTION:=lang + CATEGORY:=Languages + TITLE:=cgilua + URL:=https://github.com/keplerproject/cgilua + DEPENDS:=+lua +luafilesystem +endef + +define Package/cgilua/description + CGILua is a tool for creating dynamic HTML pages and manipulating input data from Web forms. +endef + +define Build/Configure +endef + +define Build/Compile +endef + +define Package/cgilua/install + $(INSTALL_DIR) $(1)/$(LUA_MODULE_PATH)/cgilua + $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/cgilua/cgilua.lua $(1)/$(LUA_MODULE_PATH)/cgilua.lua + $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/cgilua/authentication.lua $(1)/$(LUA_MODULE_PATH)/cgilua/authentication.lua + $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/cgilua/cookies.lua $(1)/$(LUA_MODULE_PATH)/cgilua/cookies.lua + $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/cgilua/dispatcher.lua $(1)/$(LUA_MODULE_PATH)/cgilua/dispatcher.lua + $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/cgilua/loader.lua $(1)/$(LUA_MODULE_PATH)/cgilua/loader.lua + $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/cgilua/lp.lua $(1)/$(LUA_MODULE_PATH)/cgilua/lp.lua + $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/cgilua/mime.lua $(1)/$(LUA_MODULE_PATH)/cgilua/mime.lua + $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/cgilua/post.lua $(1)/$(LUA_MODULE_PATH)/cgilua/post.lua + $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/cgilua/readuntil.lua $(1)/$(LUA_MODULE_PATH)/cgilua/readuntil.lua + $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/cgilua/serialize.lua $(1)/$(LUA_MODULE_PATH)/cgilua/serialize.lua + $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/cgilua/session.lua $(1)/$(LUA_MODULE_PATH)/cgilua/session.lua + $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/cgilua/urlcode.lua $(1)/$(LUA_MODULE_PATH)/cgilua/urlcode.lua + $(INSTALL_DIR) $(1)/$(LUA_BIN_PATH)/ + $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/launchers/cgilua.cgi $(1)/$(LUA_BIN_PATH)/cgilua.cgi + $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/launchers/cgilua.fcgi $(1)/$(LUA_BIN_PATH)/cgilua.fcgi +endef + +$(eval $(call BuildPackage,cgilua)) diff --git a/lang/cgilua/patches/post-content-type-fix.patch b/lang/cgilua/patches/post-content-type-fix.patch new file mode 100644 index 0000000000000..8de95609b1ab3 --- /dev/null +++ b/lang/cgilua/patches/post-content-type-fix.patch @@ -0,0 +1,19 @@ +From: Alex R +Date: Thu, 30 Jul 2015 20:27:30 -0700 +Subject: [PATCH] Enabled accepting all unsupported POST content types as plain + text, fixed a small issue with the tinsert call + +--- a/src/cgilua/post.lua ++++ b/src/cgilua/post.lua +@@ -285,9 +285,8 @@ + urlcode.parsequery (read (inputsize), defs.args) + elseif strfind(contenttype, "multipart/form-data", 1, true) then + Main (inputsize, defs.args) +- elseif strfind (contenttype, "application/xml", 1, true) or strfind (contenttype, "text/xml", 1, true) or strfind (contenttype, "text/plain", 1, true) then +- tinsert (defs.args, read (inputsize)) + else +- error("Unsupported Media Type: "..contenttype) ++ local input = read(inputsize) ++ tinsert (defs.args, input) + end + end From 9089ac18c3bdded1e797499533a26004143ed553 Mon Sep 17 00:00:00 2001 From: Alex R Date: Fri, 19 Aug 2016 18:27:30 -0700 Subject: [PATCH 06/12] Removed unneeded configure blocks --- lang/cgilua/Makefile | 3 --- lang/jsonrpc4lua/Makefile | 3 --- lang/lua-alt-getopt/Makefile | 3 --- lang/lua-bit32/Makefile | 3 --- lang/lua-inifile/Makefile | 3 --- 5 files changed, 15 deletions(-) diff --git a/lang/cgilua/Makefile b/lang/cgilua/Makefile index 7ab2b969d8e69..fbdd551067617 100644 --- a/lang/cgilua/Makefile +++ b/lang/cgilua/Makefile @@ -36,9 +36,6 @@ define Package/cgilua/description CGILua is a tool for creating dynamic HTML pages and manipulating input data from Web forms. endef -define Build/Configure -endef - define Build/Compile endef diff --git a/lang/jsonrpc4lua/Makefile b/lang/jsonrpc4lua/Makefile index 36a91c1dcdeae..d1412ffd7f908 100644 --- a/lang/jsonrpc4lua/Makefile +++ b/lang/jsonrpc4lua/Makefile @@ -37,9 +37,6 @@ define Package/jsonrpc4lua/description JSONRPC for Lua endef -define Build/Configure -endef - define Build/Compile endef diff --git a/lang/lua-alt-getopt/Makefile b/lang/lua-alt-getopt/Makefile index a9c8d851694f8..e8c7a80b5575a 100644 --- a/lang/lua-alt-getopt/Makefile +++ b/lang/lua-alt-getopt/Makefile @@ -35,9 +35,6 @@ define Package/lua-alt-getopt/description Process application arguments the same way as getopt_long endef -define Build/Configure -endef - define Build/Compile endef diff --git a/lang/lua-bit32/Makefile b/lang/lua-bit32/Makefile index 5c0aeb8130891..dbb48b79acef1 100644 --- a/lang/lua-bit32/Makefile +++ b/lang/lua-bit32/Makefile @@ -43,9 +43,6 @@ TARGET_LDFLAGS += -llua LUA_MODULE_PATH:=/usr/lib/lua -define Build/Configure -endef - define Build/Compile $(TARGET_CROSS)gcc $(TARGET_CFLAGS) $(TARGET_LDFLAGS) -I $(PKG_BUILD_DIR)/c-api/ -o $(PKG_BUILD_DIR)/bit32.so $(PKG_BUILD_DIR)/lbitlib.c endef diff --git a/lang/lua-inifile/Makefile b/lang/lua-inifile/Makefile index 4157cea28f601..124c40a2a3185 100644 --- a/lang/lua-inifile/Makefile +++ b/lang/lua-inifile/Makefile @@ -37,9 +37,6 @@ define Package/lua-inifile/description Inifile is a lua library for parsing and writing ini files. endef -define Build/Configure -endef - define Build/Compile endef From 8c8d3f5742bcd84dd92b176343c0f520b0dea326 Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 25 Aug 2016 20:55:28 -0700 Subject: [PATCH 07/12] Added Lua luaproc package --- lang/luaproc/Makefile | 55 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 lang/luaproc/Makefile diff --git a/lang/luaproc/Makefile b/lang/luaproc/Makefile new file mode 100644 index 0000000000000..bb4740a5c733c --- /dev/null +++ b/lang/luaproc/Makefile @@ -0,0 +1,55 @@ +# +# Copyright (C) 2016 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=luaproc +PKG_VERSION:=1.0 +PKG_RELEASE:=4 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz +PKG_SOURCE_PROTO:=git +PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) +PKG_SOURCE_URL:=git://github.com/askyrme/luaproc.git +PKG_SOURCE_VERSION:=1.0-4 + +PKG_MAINTAINER:=Alex +PKG_LICENSE=MIT + +LUA_MODULE_PATH:=/usr/lib/lua +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) + +include $(INCLUDE_DIR)/package.mk + +define Package/luaproc + SUBMENU:=Lua + SECTION:=lang + CATEGORY:=Languages + TITLE:=luaproc + URL:=https://github.com/askyrme/luaproc + DEPENDS:= +lua +libpthread +endef + +define Package/luaproc/description + luaproc is a concurrent programming library for Lua +endef + +TARGET_CFLAGS += $(FPIC) -shared +TARGET_LDFLAGS += -llua -lpthread + +LUA_MODULE_PATH:=/usr/lib/lua + +define Build/Compile + $(TARGET_CROSS)gcc $(TARGET_CFLAGS) $(TARGET_LDFLAGS) -o $(PKG_BUILD_DIR)/luaproc.so $(PKG_BUILD_DIR)/src/lpsched.c $(PKG_BUILD_DIR)/src/luaproc.c +endef + +define Package/luaproc/install + $(INSTALL_DIR) $(1)/$(LUA_MODULE_PATH)/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/luaproc.so $(1)/$(LUA_MODULE_PATH)/ +endef + +$(eval $(call BuildPackage,luaproc)) From 56c4d67f93f021cf4b6301c92169a2e409f58030 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 9 Jan 2017 19:52:51 -0800 Subject: [PATCH 08/12] Fixed copyright notice as requested by @karlp --- lang/cgilua/Makefile | 6 ------ lang/jsonrpc4lua/Makefile | 6 ------ lang/lua-alt-getopt/Makefile | 6 ------ lang/lua-bit32/Makefile | 6 ------ lang/lua-inifile/Makefile | 6 ------ lang/luaproc/Makefile | 6 ------ 6 files changed, 36 deletions(-) diff --git a/lang/cgilua/Makefile b/lang/cgilua/Makefile index fbdd551067617..63a9a29070d41 100644 --- a/lang/cgilua/Makefile +++ b/lang/cgilua/Makefile @@ -1,9 +1,3 @@ -# -# Copyright (C) 2016 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# include $(TOPDIR)/rules.mk diff --git a/lang/jsonrpc4lua/Makefile b/lang/jsonrpc4lua/Makefile index d1412ffd7f908..c51bf38279909 100644 --- a/lang/jsonrpc4lua/Makefile +++ b/lang/jsonrpc4lua/Makefile @@ -1,9 +1,3 @@ -# -# Copyright (C) 2006-2015 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# include $(TOPDIR)/rules.mk diff --git a/lang/lua-alt-getopt/Makefile b/lang/lua-alt-getopt/Makefile index e8c7a80b5575a..c7a8d198d27b7 100644 --- a/lang/lua-alt-getopt/Makefile +++ b/lang/lua-alt-getopt/Makefile @@ -1,9 +1,3 @@ -# -# Copyright (C) 2016 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# include $(TOPDIR)/rules.mk diff --git a/lang/lua-bit32/Makefile b/lang/lua-bit32/Makefile index dbb48b79acef1..adc9ef4aa7c5a 100644 --- a/lang/lua-bit32/Makefile +++ b/lang/lua-bit32/Makefile @@ -1,9 +1,3 @@ -# -# Copyright (C) 2016 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# include $(TOPDIR)/rules.mk diff --git a/lang/lua-inifile/Makefile b/lang/lua-inifile/Makefile index 124c40a2a3185..67cb352eed175 100644 --- a/lang/lua-inifile/Makefile +++ b/lang/lua-inifile/Makefile @@ -1,9 +1,3 @@ -# -# Copyright (C) 2016 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# include $(TOPDIR)/rules.mk diff --git a/lang/luaproc/Makefile b/lang/luaproc/Makefile index bb4740a5c733c..d1e2ce88193d5 100644 --- a/lang/luaproc/Makefile +++ b/lang/luaproc/Makefile @@ -1,9 +1,3 @@ -# -# Copyright (C) 2016 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# include $(TOPDIR)/rules.mk From f324c700503fece6a1481550dd2739fa41068a75 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 9 Jan 2017 20:01:16 -0800 Subject: [PATCH 09/12] Fixed PKG_RELEASE --- lang/jsonrpc4lua/Makefile | 2 +- lang/luaproc/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/jsonrpc4lua/Makefile b/lang/jsonrpc4lua/Makefile index c51bf38279909..caa65d117d08f 100644 --- a/lang/jsonrpc4lua/Makefile +++ b/lang/jsonrpc4lua/Makefile @@ -3,7 +3,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=jsonrpc4lua PKG_VERSION:=1.0.1 -PKG_RELEASE:=2 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_PROTO:=git diff --git a/lang/luaproc/Makefile b/lang/luaproc/Makefile index d1e2ce88193d5..3aa8178205997 100644 --- a/lang/luaproc/Makefile +++ b/lang/luaproc/Makefile @@ -3,7 +3,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luaproc PKG_VERSION:=1.0 -PKG_RELEASE:=4 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_PROTO:=git From f042a6249e3cab215f141e6fa865e802768e2321 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 9 Jan 2017 20:02:50 -0800 Subject: [PATCH 10/12] Fixed license --- lang/lua-inifile/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/lua-inifile/Makefile b/lang/lua-inifile/Makefile index 67cb352eed175..2d78487c1bfc7 100644 --- a/lang/lua-inifile/Makefile +++ b/lang/lua-inifile/Makefile @@ -12,7 +12,7 @@ PKG_SOURCE_URL:=git://github.com/bartbes/love-misc-libs.git PKG_SOURCE_VERSION:=master PKG_MAINTAINER:=Alex R -PKG_LICENSE=Simplified BSD license +PKG_LICENSE=BSD-2-Clause LUA_MODULE_PATH:=/usr/lib/lua From 905a2d7c68461cf8ab9eae913d398658d30fe88f Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 9 Jan 2017 20:13:48 -0800 Subject: [PATCH 11/12] Fixed description --- lang/jsonrpc4lua/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/jsonrpc4lua/Makefile b/lang/jsonrpc4lua/Makefile index caa65d117d08f..32cbb64f818ea 100644 --- a/lang/jsonrpc4lua/Makefile +++ b/lang/jsonrpc4lua/Makefile @@ -28,7 +28,7 @@ define Package/jsonrpc4lua endef define Package/jsonrpc4lua/description - JSONRPC for Lua + JSON-RPC over HTTP library (fork of json4lua with encoding/decoding replaced by lua-cjson) for use in RPC clients and servers. endef define Build/Compile From b242ef8cc9d810870dd699e45a095f0e5b4ee369 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 9 Jan 2017 20:16:35 -0800 Subject: [PATCH 12/12] Updated email address --- lang/cgilua/Makefile | 2 +- lang/jsonrpc4lua/Makefile | 2 +- lang/lua-alt-getopt/Makefile | 2 +- lang/lua-bit32/Makefile | 2 +- lang/lua-inifile/Makefile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lang/cgilua/Makefile b/lang/cgilua/Makefile index 63a9a29070d41..4e3228cae52aa 100644 --- a/lang/cgilua/Makefile +++ b/lang/cgilua/Makefile @@ -9,7 +9,7 @@ PKG_SOURCE:=v$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://github.com/keplerproject/cgilua/archive/ PKG_MD5SUM:=ed162ca341d0f1cd16868c80bed3da4c -PKG_MAINTAINER:=Alex R +PKG_MAINTAINER:=Alex R PKG_LICENSE=MIT LUA_MODULE_PATH:=/usr/lib/lua diff --git a/lang/jsonrpc4lua/Makefile b/lang/jsonrpc4lua/Makefile index 32cbb64f818ea..54b80d00b27ee 100644 --- a/lang/jsonrpc4lua/Makefile +++ b/lang/jsonrpc4lua/Makefile @@ -11,7 +11,7 @@ PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE_URL:=https://github.com/pdxmeshnet/jsonrpc4lua.git PKG_SOURCE_VERSION:=$(PKG_VERSION) -PKG_MAINTAINER:=Alex R +PKG_MAINTAINER:=Alex R PKG_LICENSE=MIT LUA_MODULE_PATH:=/usr/lib/lua diff --git a/lang/lua-alt-getopt/Makefile b/lang/lua-alt-getopt/Makefile index c7a8d198d27b7..9749e8e54b682 100644 --- a/lang/lua-alt-getopt/Makefile +++ b/lang/lua-alt-getopt/Makefile @@ -9,7 +9,7 @@ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://luaforge.net/frs/download.php/4260/ PKG_MD5SUM:=f504578b1287ea02759add231b972812 -PKG_MAINTAINER:=Alex R +PKG_MAINTAINER:=Alex R PKG_LICENSE=MIT LUA_MODULE_PATH:=/usr/lib/lua diff --git a/lang/lua-bit32/Makefile b/lang/lua-bit32/Makefile index adc9ef4aa7c5a..f94ae1ba995b6 100644 --- a/lang/lua-bit32/Makefile +++ b/lang/lua-bit32/Makefile @@ -11,7 +11,7 @@ PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE_URL:=git://github.com/keplerproject/lua-compat-5.2.git PKG_SOURCE_VERSION:=bitlib-5.3.0 -PKG_MAINTAINER:=Alex R +PKG_MAINTAINER:=Alex R PKG_LICENSE=MIT LUA_MODULE_PATH:=/usr/lib/lua diff --git a/lang/lua-inifile/Makefile b/lang/lua-inifile/Makefile index 2d78487c1bfc7..0f2640047148c 100644 --- a/lang/lua-inifile/Makefile +++ b/lang/lua-inifile/Makefile @@ -11,7 +11,7 @@ PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE_URL:=git://github.com/bartbes/love-misc-libs.git PKG_SOURCE_VERSION:=master -PKG_MAINTAINER:=Alex R +PKG_MAINTAINER:=Alex R PKG_LICENSE=BSD-2-Clause LUA_MODULE_PATH:=/usr/lib/lua