20bd50efa0
1.9 (2019-12-21) ---------------- * Build against Lua 5.3 if available. * Use Lua 5.3.5 in binary wheels and as bundled Lua. * GH#129: Fix Lua module loading in Python 3.x. * GH#126: Fix build on Linux systems that install Lua as "lua52" package. * Built with Cython 0.29.14 for better Py3.8 compatibility.
19 lines
482 B
Makefile
19 lines
482 B
Makefile
# $NetBSD: options.mk,v 1.3 2021/08/24 10:05:50 nia Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.py-lupa
|
|
PKG_SUPPORTED_OPTIONS= cython luajit
|
|
PKG_SUGGESTED_OPTIONS+= cython
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mcython)
|
|
PYSETUPBUILDARGS+= --with-cython
|
|
.include "../../devel/py-cython/buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mluajit)
|
|
.include "../../lang/LuaJIT2/buildlink3.mk"
|
|
.else
|
|
LUA_VERSIONS_ACCEPTED= 53 51 52
|
|
.include "../../lang/lua/buildlink3.mk"
|
|
.endif
|