Received: by mail.netbsd.org (Postfix, from userid 605) id 33D2D84D20; Fri, 10 Jul 2020 10:27:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AF95B84D58 for ; Fri, 10 Jul 2020 10:27:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 0wpLggC2a5NR for ; Fri, 10 Jul 2020 10:27:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id DBAF584D20 for ; Fri, 10 Jul 2020 10:26:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D3992FB28; Fri, 10 Jul 2020 10:26:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_15943768199120" MIME-Version: 1.0 Date: Fri, 10 Jul 2020 10:26:59 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/devel To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200710102659.D3992FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_15943768199120 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Fri Jul 10 10:26:59 UTC 2020 Modified Files: pkgsrc/devel: Makefile Added Files: pkgsrc/devel/lua-cov: DESCR Makefile PLIST distinfo Log Message: devel: Add lua-cov LuaCov is a simple coverage analyzer for Lua scripts. When a Lua script is run with the luacov module loaded, it generates a stats file with the number of executions of each line of the script and its loaded modules. The luacov command-line script then processes this file generating a report file which allows one to visualize which code paths were not traversed, which is useful for verifying the effectiveness of a test suite. To generate a diff of this commit: cvs rdiff -u -r1.3168 -r1.3169 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/lua-cov/DESCR \ pkgsrc/devel/lua-cov/Makefile pkgsrc/devel/lua-cov/PLIST \ pkgsrc/devel/lua-cov/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_15943768199120 Content-Disposition: inline Content-Length: 4667 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.3168 pkgsrc/devel/Makefile:1.3169 --- pkgsrc/devel/Makefile:1.3168 Thu Jul 9 13:34:02 2020 +++ pkgsrc/devel/Makefile Fri Jul 10 10:26:59 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3168 2020/07/09 13:34:02 nia Exp $ +# $NetBSD: Makefile,v 1.3169 2020/07/10 10:26:59 nia Exp $ # COMMENT= Development utilities @@ -855,6 +855,7 @@ SUBDIR+= lua-bitlib SUBDIR+= lua-busted SUBDIR+= lua-cliargs SUBDIR+= lua-compat53 +SUBDIR+= lua-cov SUBDIR+= lua-coxpcall SUBDIR+= lua-cqueues SUBDIR+= lua-fifo Added files: Index: pkgsrc/devel/lua-cov/DESCR diff -u /dev/null pkgsrc/devel/lua-cov/DESCR:1.1 --- /dev/null Fri Jul 10 10:26:59 2020 +++ pkgsrc/devel/lua-cov/DESCR Fri Jul 10 10:26:59 2020 @@ -0,0 +1,6 @@ +LuaCov is a simple coverage analyzer for Lua scripts. When a Lua script is +run with the luacov module loaded, it generates a stats file with the number +of executions of each line of the script and its loaded modules. The luacov +command-line script then processes this file generating a report file which +allows one to visualize which code paths were not traversed, which is useful +for verifying the effectiveness of a test suite. Index: pkgsrc/devel/lua-cov/Makefile diff -u /dev/null pkgsrc/devel/lua-cov/Makefile:1.1 --- /dev/null Fri Jul 10 10:26:59 2020 +++ pkgsrc/devel/lua-cov/Makefile Fri Jul 10 10:26:59 2020 @@ -0,0 +1,45 @@ +# $NetBSD: Makefile,v 1.1 2020/07/10 10:26:59 nia Exp $ + +DISTNAME= luacov-0.14.0 +PKGNAME= ${LUA_PKGPREFIX}-${DISTNAME:S/^lua//1} +CATEGORIES= lua devel +MASTER_SITES= ${MASTER_SITE_GITHUB:=keplerproject/} +GITHUB_PROJECT= luacov +GITHUB_TAG= v${PKGVERSION_NOREV} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://keplerproject.github.io/luacov/ +COMMENT= Simple coverage analyzer for Lua scripts +LICENSE= mit + +NO_BUILD= yes +USE_LANGUAGES= # none + +PLIST_SUBST+= LUADOTVER=${_LUA_DOT_VERSION} + +REPLACE_LUA+= src/bin/luacov + +INSTALLATION_DIRS+= bin +INSTALLATION_DIRS+= ${LUA_LDIR}/luacov +INSTALLATION_DIRS+= ${LUA_LDIR}/luacov/reporter +INSTALLATION_DIRS+= ${LUA_DOCDIR}/doc/modules + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/src/bin/luacov \ + ${DESTDIR}${PREFIX}/bin/luacov${_LUA_DOT_VERSION} + ${INSTALL_DATA} ${WRKSRC}/src/luacov.lua \ + ${DESTDIR}${PREFIX}/${LUA_LDIR} + ${INSTALL_DATA} ${WRKSRC}/src/luacov/*.lua \ + ${DESTDIR}${PREFIX}/${LUA_LDIR}/luacov + ${INSTALL_DATA} ${WRKSRC}/src/luacov/reporter/*.lua \ + ${DESTDIR}${PREFIX}/${LUA_LDIR}/luacov/reporter + cd ${WRKSRC}/doc && ${INSTALL_DATA} *.html *.css *.png \ + ${DESTDIR}${PREFIX}/${LUA_DOCDIR} + cd ${WRKSRC}/doc/doc && ${INSTALL_DATA} *.html *.css \ + ${DESTDIR}${PREFIX}/${LUA_DOCDIR}/doc + cd ${WRKSRC}/doc/doc/modules && ${INSTALL_DATA} *.html \ + ${DESTDIR}${PREFIX}/${LUA_DOCDIR}/doc/modules + +.include "../../lang/lua/application.mk" +.include "../../lang/lua/module.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/lua-cov/PLIST diff -u /dev/null pkgsrc/devel/lua-cov/PLIST:1.1 --- /dev/null Fri Jul 10 10:26:59 2020 +++ pkgsrc/devel/lua-cov/PLIST Fri Jul 10 10:26:59 2020 @@ -0,0 +1,26 @@ +@comment $NetBSD: PLIST,v 1.1 2020/07/10 10:26:59 nia Exp $ +bin/luacov${LUADOTVER} +${LUA_DOCDIR}/doc.css +${LUA_DOCDIR}/doc/index.html +${LUA_DOCDIR}/doc/ldoc.css +${LUA_DOCDIR}/doc/modules/luacov.defaults.html +${LUA_DOCDIR}/doc/modules/luacov.hook.html +${LUA_DOCDIR}/doc/modules/luacov.html +${LUA_DOCDIR}/doc/modules/luacov.reporter.html +${LUA_DOCDIR}/doc/modules/luacov.runner.html +${LUA_DOCDIR}/doc/modules/luacov.stats.html +${LUA_DOCDIR}/doc/modules/luacov.tick.html +${LUA_DOCDIR}/doc/modules/luacov.util.html +${LUA_DOCDIR}/index.html +${LUA_DOCDIR}/license.html +${LUA_DOCDIR}/luacov.png +${LUA_LDIR}/luacov.lua +${LUA_LDIR}/luacov/defaults.lua +${LUA_LDIR}/luacov/hook.lua +${LUA_LDIR}/luacov/linescanner.lua +${LUA_LDIR}/luacov/reporter.lua +${LUA_LDIR}/luacov/reporter/default.lua +${LUA_LDIR}/luacov/runner.lua +${LUA_LDIR}/luacov/stats.lua +${LUA_LDIR}/luacov/tick.lua +${LUA_LDIR}/luacov/util.lua Index: pkgsrc/devel/lua-cov/distinfo diff -u /dev/null pkgsrc/devel/lua-cov/distinfo:1.1 --- /dev/null Fri Jul 10 10:26:59 2020 +++ pkgsrc/devel/lua-cov/distinfo Fri Jul 10 10:26:59 2020 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2020/07/10 10:26:59 nia Exp $ + +SHA1 (luacov-0.14.0.tar.gz) = d10c25af154b6d6b19197fcccdc48fa5362ea1a5 +RMD160 (luacov-0.14.0.tar.gz) = eab58848f391fb78202816f2897ba2c7a801ef62 +SHA512 (luacov-0.14.0.tar.gz) = 44ea158ce597f705d80b9768676e401804daea91b9c2afb146a8d25aae612e895e4f42a29c4b7b3438659c596fa500af5d23b66b7f3477459747ad06ca9b7ffa +Size (luacov-0.14.0.tar.gz) = 49571 bytes --_----------=_15943768199120--