1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00

Add py-lupa 1.9

Lupa integrates the runtimes of Lua or LuaJIT2 into CPython. It is a partial
rewrite of LunaticPython in Cython with some additional features such as proper
coroutine support.

WWW: https://github.com/scoder/lupa
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2020-04-04 07:22:41 +00:00
parent 395bc5dcf9
commit 390dada204
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=530562
4 changed files with 36 additions and 0 deletions

View File

@ -277,6 +277,7 @@
SUBDIR += ptoc
SUBDIR += purescript
SUBDIR += py-hy
SUBDIR += py-lupa
SUBDIR += py-mx-base
SUBDIR += py-qt5-qml
SUBDIR += py-textX

27
lang/py-lupa/Makefile Normal file
View File

@ -0,0 +1,27 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= lupa
PORTVERSION= 1.9
CATEGORIES= lang python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Python wrapper around Lua and LuaJIT
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USES= lua pkgconfig python
USE_PYTHON= autoplist concurrent distutils
MAKE_ARGS= --no-bundle
post-patch:
@${RM} -fr ${WRKSRC}/third-party
do-test:
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} setup.py test
.include <bsd.port.mk>

3
lang/py-lupa/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1585907186
SHA256 (lupa-1.9.tar.gz) = a3e11d806ca02cf72e490ec1974f8b96a14a1091895c9dccebe0b8d52dd82e8e
SIZE (lupa-1.9.tar.gz) = 1014812

5
lang/py-lupa/pkg-descr Normal file
View File

@ -0,0 +1,5 @@
Lupa integrates the runtimes of Lua or LuaJIT2 into CPython. It is a partial
rewrite of LunaticPython in Cython with some additional features such as proper
coroutine support.
WWW: https://github.com/scoder/lupa