Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 May 2015 21:25:51 +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: r386972 - in head/devel: . lua-bitop
Message-ID:  <201505212125.t4LLPpt9047360@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Thu May 21 21:25:51 2015
New Revision: 386972
URL: https://svnweb.freebsd.org/changeset/ports/386972

Log:
  - Add lua-bitop 1.0.2
  
  Lua BitOp is a C extension module for Lua 5.1/5.2 which adds bitwise operations
  on numbers.
  
  WWW: http://bitop.luajit.org/

Added:
  head/devel/lua-bitop/
  head/devel/lua-bitop/Makefile   (contents, props changed)
  head/devel/lua-bitop/distinfo   (contents, props changed)
  head/devel/lua-bitop/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu May 21 21:25:44 2015	(r386971)
+++ head/devel/Makefile	Thu May 21 21:25:51 2015	(r386972)
@@ -1289,6 +1289,7 @@
     SUBDIR += lpc21isp
     SUBDIR += lrmi
     SUBDIR += lua-alien
+    SUBDIR += lua-bitop
     SUBDIR += lua-bitlib
     SUBDIR += lua-cjson
     SUBDIR += lua-gettext

Added: head/devel/lua-bitop/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/lua-bitop/Makefile	Thu May 21 21:25:51 2015	(r386972)
@@ -0,0 +1,27 @@
+# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	bitop
+PORTVERSION=	1.0.2
+CATEGORIES=	devel
+MASTER_SITES=	http://bitop.luajit.org/download/ \
+		LOCAL/sunpoet
+DISTNAME=	LuaBitOp-${PORTVERSION}
+PKGNAMEPREFIX=	${LUA_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Bitwise operations on numbers
+
+LICENSE=	MIT
+
+CFLAGS+=	-DLUA_NUMBER_LONG_LONG -I${LUA_INCDIR}
+MAKE_ARGS=	CC=${CC}
+USES=		gmake lua
+
+PLIST_FILES=	%%LUA_MODLIBDIR%%/bit.so
+
+do-install:
+	${MKDIR} ${STAGEDIR}${LUA_MODLIBDIR}/
+	${INSTALL_LIB} ${WRKSRC}/bit.so ${STAGEDIR}${LUA_MODLIBDIR}/
+
+.include <bsd.port.mk>

Added: head/devel/lua-bitop/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/lua-bitop/distinfo	Thu May 21 21:25:51 2015	(r386972)
@@ -0,0 +1,2 @@
+SHA256 (LuaBitOp-1.0.2.tar.gz) = 1207c9293dcd52eb9dca6538d1b87352bd510f4e760938f5048433f7f272ce99
+SIZE (LuaBitOp-1.0.2.tar.gz) = 23127

Added: head/devel/lua-bitop/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/lua-bitop/pkg-descr	Thu May 21 21:25:51 2015	(r386972)
@@ -0,0 +1,4 @@
+Lua BitOp is a C extension module for Lua 5.1/5.2 which adds bitwise operations
+on numbers.
+
+WWW: http://bitop.luajit.org/



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