py-lupa: Update to 1.9

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.
This commit is contained in:
nia 2021-08-24 10:05:50 +00:00
parent aa01f41eea
commit 20bd50efa0
3 changed files with 9 additions and 8 deletions

View file

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.11 2020/07/13 19:45:45 alnsn Exp $
# $NetBSD: Makefile,v 1.12 2021/08/24 10:05:50 nia Exp $
DISTNAME= lupa-1.8
DISTNAME= lupa-1.9
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=l/lupa/}

View file

@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.8 2019/03/12 23:57:50 alnsn Exp $
$NetBSD: distinfo,v 1.9 2021/08/24 10:05:50 nia Exp $
SHA1 (lupa-1.8.tar.gz) = a322d8979a4d0983d70895589cbbf0ddf4b125b6
RMD160 (lupa-1.8.tar.gz) = c71a7b7442fd0ce40003b505c331630e315ed206
SHA512 (lupa-1.8.tar.gz) = 322da16f11e5f2a76c39d3ebf3582b517b798df6bfd87f0e08038f1c5b180279a59cdf0688e5ec86ab50a7732d6ab4767e0798f6b864654a247767fad6bf56dd
Size (lupa-1.8.tar.gz) = 1013207 bytes
SHA1 (lupa-1.9.tar.gz) = 834e513d4ed109919dfce745b4e10f4d30c53353
RMD160 (lupa-1.9.tar.gz) = 382e9493a4e95b110065f2ac27657c15f65d25ff
SHA512 (lupa-1.9.tar.gz) = 4ea8d0ebe7f6481bf9ef4a49d5e30f8baf0ce12c9afb793526858808aea44eb27044ad5c2b5c9532e1ea2220a4eb9b52ce4debb2f7cb2bf53b26abee81541916
Size (lupa-1.9.tar.gz) = 1014812 bytes

View file

@ -1,4 +1,4 @@
# $NetBSD: options.mk,v 1.2 2017/05/30 21:59:56 alnsn Exp $
# $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
@ -14,5 +14,6 @@ PYSETUPBUILDARGS+= --with-cython
.if !empty(PKG_OPTIONS:Mluajit)
.include "../../lang/LuaJIT2/buildlink3.mk"
.else
LUA_VERSIONS_ACCEPTED= 53 51 52
.include "../../lang/lua/buildlink3.mk"
.endif