Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Apr 2020 07:22:41 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r530562 - in head/lang: . py-lupa
Message-ID:  <202004040722.0347MfWZ041848@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat Apr  4 07:22:41 2020
New Revision: 530562
URL: https://svnweb.freebsd.org/changeset/ports/530562

Log:
  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

Added:
  head/lang/py-lupa/
  head/lang/py-lupa/Makefile   (contents, props changed)
  head/lang/py-lupa/distinfo   (contents, props changed)
  head/lang/py-lupa/pkg-descr   (contents, props changed)
Modified:
  head/lang/Makefile

Modified: head/lang/Makefile
==============================================================================
--- head/lang/Makefile	Sat Apr  4 07:22:19 2020	(r530561)
+++ head/lang/Makefile	Sat Apr  4 07:22:41 2020	(r530562)
@@ -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

Added: head/lang/py-lupa/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/py-lupa/Makefile	Sat Apr  4 07:22:41 2020	(r530562)
@@ -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>

Added: head/lang/py-lupa/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/py-lupa/distinfo	Sat Apr  4 07:22:41 2020	(r530562)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1585907186
+SHA256 (lupa-1.9.tar.gz) = a3e11d806ca02cf72e490ec1974f8b96a14a1091895c9dccebe0b8d52dd82e8e
+SIZE (lupa-1.9.tar.gz) = 1014812

Added: head/lang/py-lupa/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/py-lupa/pkg-descr	Sat Apr  4 07:22:41 2020	(r530562)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004040722.0347MfWZ041848>