From owner-svn-ports-head@freebsd.org Fri Mar 9 21:49:43 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 40662F27604; Fri, 9 Mar 2018 21:49:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E6F6A6ED33; Fri, 9 Mar 2018 21:49:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E049124A1C; Fri, 9 Mar 2018 21:49:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w29LngkE037486; Fri, 9 Mar 2018 21:49:42 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w29LngYf037483; Fri, 9 Mar 2018 21:49:42 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201803092149.w29LngYf037483@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Mar 2018 21:49:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464025 - head/devel/lua-posix X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/lua-posix X-SVN-Commit-Revision: 464025 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Mar 2018 21:49:43 -0000 Author: sunpoet Date: Fri Mar 9 21:49:42 2018 New Revision: 464025 URL: https://svnweb.freebsd.org/changeset/ports/464025 Log: Fix DISTVERSIONPREFIX - Update COMMENT - Remove WKRSRC from SHEBANG_FILES - Do not silence installation messages - Update pkg-descr - Update WWW - Take maintainership Modified: head/devel/lua-posix/Makefile head/devel/lua-posix/distinfo head/devel/lua-posix/pkg-descr Modified: head/devel/lua-posix/Makefile ============================================================================== --- head/devel/lua-posix/Makefile Fri Mar 9 21:49:36 2018 (r464024) +++ head/devel/lua-posix/Makefile Fri Mar 9 21:49:42 2018 (r464025) @@ -2,30 +2,31 @@ # $FreeBSD$ PORTNAME= posix -DISTVERSIONPREFIX= release-v -DISTVERSION= 34.0.4 +PORTVERSION= 34.0.4 +DISTVERSIONPREFIX= v CATEGORIES= devel PKGNAMEPREFIX= ${LUA_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org -COMMENT= POSIX layer for Lua +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Lua bindings for POSIX APIs LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= lua shebangfix -SHEBANG_FILES= ${WRKSRC}/build-aux/luke +SHEBANG_FILES= build-aux/luke + USE_GITHUB= yes GH_ACCOUNT= luaposix GH_PROJECT= luaposix do-build: - @cd ${WRKSRC} && build-aux/luke \ - version="${PORTVERSION}" \ - PREFIX="${PREFIX}" \ - LUA="${LOCALBASE}/bin/lua${LUA_VER_STR}" \ + @cd ${WRKSRC} && build-aux/luke all \ + CFLAGS="${CFLAGS}" \ + LUA="${LOCALBASE}/bin/${LUA_CMD}" \ LUA_INCDIR="${LUA_INCDIR}" \ - CFLAGS="${CFLAGS}" + PREFIX="${PREFIX}" \ + version="${PORTVERSION}" do-install: cd ${WRKSRC} && build-aux/luke install \ @@ -33,6 +34,6 @@ do-install: INST_LUADIR="${STAGEDIR}${LUA_MODSHAREDIR}" post-install: - @${FIND} ${STAGEDIR}${LUA_MODLIBDIR} -name "*.so" | ${XARGS} ${STRIP_CMD} + ${FIND} ${STAGEDIR}${LUA_MODLIBDIR} -name '*.so' -exec ${STRIP_CMD} {} + .include Modified: head/devel/lua-posix/distinfo ============================================================================== --- head/devel/lua-posix/distinfo Fri Mar 9 21:49:36 2018 (r464024) +++ head/devel/lua-posix/distinfo Fri Mar 9 21:49:42 2018 (r464025) @@ -1,3 +1,3 @@ -TIMESTAMP = 1520540525 -SHA256 (luaposix-luaposix-release-v34.0.4_GH0.tar.gz) = d0110e465fdaeedd6662e9fdd40ae88131f7380bd7e1335adac70c24bb70f718 -SIZE (luaposix-luaposix-release-v34.0.4_GH0.tar.gz) = 175204 +TIMESTAMP = 1520532327 +SHA256 (luaposix-luaposix-v34.0.4_GH0.tar.gz) = eb6e7322da3013bdb3d524f68df4f5510a2efd805c06bf7cc27be6611eab7483 +SIZE (luaposix-luaposix-v34.0.4_GH0.tar.gz) = 175194 Modified: head/devel/lua-posix/pkg-descr ============================================================================== --- head/devel/lua-posix/pkg-descr Fri Mar 9 21:49:36 2018 (r464024) +++ head/devel/lua-posix/pkg-descr Fri Mar 9 21:49:42 2018 (r464025) @@ -1,3 +1,9 @@ -LuaPosix is a Lua extension library that provides support for POSIX. +This is a POSIX binding for LuaJIT, Lua 5.1, 5.2 and 5.3; like most libraries it +simply binds to C APIs on the underlying system, so it won't work on non-POSIX +systems. However, it does try to detect the level of POSIX conformance of the +underlying system and bind only available APIs. -WWW: http://luaposix.github.io/luaposix +For a while, luaposix contained support for curses functionality too, but now it +has its own lcurses repository again, where it is being maintained separately. + +WWW: https://github.com/luaposix/luaposix