upstream changes: ----------------- o Reformatted test chunks to make them more legible o Add proper handling of full userdata o Add test of function records to handle both forms o Remove experimental array functions o Fix handling of random number for ranges and value 1 o Fix implementation of mod '%' operator o Update tests to new decode of functions o Add a Makefile for the minibench o Complete split of function record into separate lua and erlang records o Merge pull request #90 from benjamintanweihao/patch-1 o Split function record into separate lua and erlang records o Fix Getting Started wiki link o Merge pull request #85 from lastcanal/sandbox_runner o remove random seed setting from sandbox runner o Add luerl_sandbox module, a sandbox builder and reduction counting ru… o Changes for hex.pm package o Update README.md o Make the random state part of the Lua state o Cleanup rebar3 config script o Fix generation of erlang version macro flag o Fix generation of erlang version macro flag o Set correct return values for luerl:load o The math lib now always uses the correct module random/rand o Add handling of erlang version based compiler macros o Fix handling of #! and Windows BOM when loading files o fixing typo in README o Adding support for maps to encode() and fixing README o Fixes make clean
16 lines
415 B
Makefile
16 lines
415 B
Makefile
# $NetBSD: Makefile,v 1.4 2021/05/20 19:57:45 triaxx Exp $
|
|
|
|
DISTNAME= luerl-0.4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=rvirding/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/rvirding/luerl/
|
|
COMMENT= Implementation of Lua in Erlang
|
|
LICENSE= apache-2.0
|
|
|
|
GITHUB_PROJECT= luerl
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
.include "../../lang/erlang/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|