mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
0096a8df6f
aa9621d compiler: rework switch statement code generation b5f0de1 vm: add trace mode instruction dump output fixes 0341d64 vm: fix another for-loop memory leak 00d9419 vm: fix further memory leaks in trace mode 20a3763 vm: fix loop variable memory leak in NEXTK/NEXTKV instruction 9a6ef2b lib: prevent use-after-free after uc_shift() 03f1324 object: free prototype object when registering existing ressource type b3d758b compiler: fix for/break miscompilation 86e3970 lib: fix value refcount of uc_unshift() return value fe464ea run_tests.sh: allow passing tests to run as arguments 091ae1b compiler: fix another try/catch miscompilation fcedb19 lib: fix passing uninitialized memory to sigprocmask() 0d0357d vm: fix leaking source context strings in trace mode 7a41fb3 lib: use execvp() in system() Signed-off-by: Jo-Philipp Wich <jo@mein.io>
117 lines
2.8 KiB
Makefile
117 lines
2.8 KiB
Makefile
#
|
|
# Copyright (C) 2020-2021 Jo-Philipp Wich <jo@mein.io>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ucode
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=https://github.com/jow-/ucode.git
|
|
PKG_SOURCE_DATE:=2021-03-29
|
|
PKG_SOURCE_VERSION:=aa9621db401e881ffcdea03be272c94149484ccf
|
|
PKG_MIRROR_HASH:=11b7de10e6ab91742d8a633a0030dde86118ffe73031cdf9c192cb3fded97a20
|
|
PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
|
|
PKG_LICENSE:=ISC
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/ucode/default
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=ucode - Tiny scripting and templating language
|
|
endef
|
|
|
|
define Package/ucode
|
|
$(Package/ucode/default)
|
|
DEPENDS:=+libjson-c
|
|
endef
|
|
|
|
define Package/ucode/description
|
|
ucode is a tiny script interpreter featuring an ECMAScript oriented
|
|
script language and Jinja-inspired templating.
|
|
endef
|
|
|
|
|
|
define Package/ucode-mod-fs
|
|
$(Package/ucode/default)
|
|
TITLE+= (filesystem module)
|
|
DEPENDS:=ucode
|
|
endef
|
|
|
|
define Package/ucode-mod-fs/description
|
|
The filesystem plugin module allows interaction with the local file system.
|
|
endef
|
|
|
|
|
|
define Package/ucode-mod-math
|
|
$(Package/ucode/default)
|
|
TITLE+= (math module)
|
|
DEPENDS:=ucode
|
|
endef
|
|
|
|
define Package/ucode-mod-math/description
|
|
The math plugin provides access to various <math.h> procedures.
|
|
endef
|
|
|
|
|
|
define Package/ucode-mod-ubus
|
|
$(Package/ucode/default)
|
|
TITLE+= (ubus module)
|
|
DEPENDS:=ucode +libubus +libblobmsg-json
|
|
endef
|
|
|
|
define Package/ucode-mod-ubus/description
|
|
The ubus module allows ucode template scripts to enumerate and invoke ubus
|
|
procedures.
|
|
endef
|
|
|
|
|
|
define Package/ucode-mod-uci
|
|
$(Package/ucode/default)
|
|
TITLE+= (uci module)
|
|
DEPENDS:=ucode +libuci
|
|
endef
|
|
|
|
define Package/ucode-mod-uci/description
|
|
The uci module allows templates to read and modify uci configuration.
|
|
endef
|
|
|
|
|
|
define Package/ucode/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ucode $(1)/usr/bin/ucode
|
|
endef
|
|
|
|
define Package/ucode-mod-fs/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/ucode
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/lib/fs.so $(1)/usr/lib/ucode/
|
|
endef
|
|
|
|
define Package/ucode-mod-math/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/ucode
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/lib/math.so $(1)/usr/lib/ucode/
|
|
endef
|
|
|
|
define Package/ucode-mod-ubus/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/ucode
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/lib/ubus.so $(1)/usr/lib/ucode/
|
|
endef
|
|
|
|
define Package/ucode-mod-uci/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/ucode
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/lib/uci.so $(1)/usr/lib/ucode/
|
|
endef
|
|
|
|
|
|
$(eval $(call BuildPackage,ucode))
|
|
$(eval $(call BuildPackage,ucode-mod-fs))
|
|
$(eval $(call BuildPackage,ucode-mod-math))
|
|
$(eval $(call BuildPackage,ucode-mod-ubus))
|
|
$(eval $(call BuildPackage,ucode-mod-uci))
|