Received: by mail.netbsd.org (Postfix, from userid 605) id 4E99484DD9; Wed, 8 Jul 2020 11:25:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CC71784DA6 for ; Wed, 8 Jul 2020 11:25:21 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id fv9OIlq5oAly for ; Wed, 8 Jul 2020 11:25:21 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 40E2184D61 for ; Wed, 8 Jul 2020 11:25:21 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3DF03FB28; Wed, 8 Jul 2020 11:25:21 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_159420752147590" MIME-Version: 1.0 Date: Wed, 8 Jul 2020 11:25:21 +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: <20200708112521.3DF03FB28@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. --_----------=_159420752147590 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Wed Jul 8 11:25:21 UTC 2020 Modified Files: pkgsrc/devel: Makefile Added Files: pkgsrc/devel/lua-ansicolors: DESCR Makefile PLIST distinfo Log Message: devel: Add lua-ansicolors ansicolors is a simple Lua function for printing to the console in color To generate a diff of this commit: cvs rdiff -u -r1.3156 -r1.3157 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/lua-ansicolors/DESCR \ pkgsrc/devel/lua-ansicolors/Makefile pkgsrc/devel/lua-ansicolors/PLIST \ pkgsrc/devel/lua-ansicolors/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_159420752147590 Content-Disposition: inline Content-Length: 2775 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.3156 pkgsrc/devel/Makefile:1.3157 --- pkgsrc/devel/Makefile:1.3156 Mon Jul 6 15:28:22 2020 +++ pkgsrc/devel/Makefile Wed Jul 8 11:25:20 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3156 2020/07/06 15:28:22 schmonz Exp $ +# $NetBSD: Makefile,v 1.3157 2020/07/08 11:25:20 nia Exp $ # COMMENT= Development utilities @@ -847,6 +847,7 @@ SUBDIR+= lokalize SUBDIR+= ltsa SUBDIR+= lua-BitOp SUBDIR+= lua-alt-getopt +SUBDIR+= lua-ansicolors SUBDIR+= lua-argparse SUBDIR+= lua-basexx SUBDIR+= lua-binaryheap Added files: Index: pkgsrc/devel/lua-ansicolors/DESCR diff -u /dev/null pkgsrc/devel/lua-ansicolors/DESCR:1.1 --- /dev/null Wed Jul 8 11:25:21 2020 +++ pkgsrc/devel/lua-ansicolors/DESCR Wed Jul 8 11:25:21 2020 @@ -0,0 +1 @@ +ansicolors is a simple Lua function for printing to the console in color Index: pkgsrc/devel/lua-ansicolors/Makefile diff -u /dev/null pkgsrc/devel/lua-ansicolors/Makefile:1.1 --- /dev/null Wed Jul 8 11:25:21 2020 +++ pkgsrc/devel/lua-ansicolors/Makefile Wed Jul 8 11:25:21 2020 @@ -0,0 +1,25 @@ +# $NetBSD: Makefile,v 1.1 2020/07/08 11:25:21 nia Exp $ + +DISTNAME= ansicolors.lua-1.0.2 +PKGNAME= ${LUA_PKGPREFIX}-${DISTNAME:S/.lua//1} +CATEGORIES= devel lua +MASTER_SITES= ${MASTER_SITE_GITHUB:=kikito/} +GITHUB_PROJECT= ansicolors.lua +GITHUB_TAG= v${PKGVERSION_NOREV} + +MAINTAINER= nia@NetBSD.org +HOMEPAGE= https://github.com/kikito/ansicolors.lua +COMMENT= Simple Lua function for printing to the console in color +LICENSE= mit + +USE_LANGUAGES= # none +NO_BUILD= yes + +INSTALLATION_DIRS+= ${LUA_LDIR} + +do-install: + ${INSTALL_DATA} ${WRKSRC}/ansicolors.lua \ + ${DESTDIR}${PREFIX}/${LUA_LDIR}/ansicolors.lua + +.include "../../lang/lua/module.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/lua-ansicolors/PLIST diff -u /dev/null pkgsrc/devel/lua-ansicolors/PLIST:1.1 --- /dev/null Wed Jul 8 11:25:21 2020 +++ pkgsrc/devel/lua-ansicolors/PLIST Wed Jul 8 11:25:21 2020 @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1 2020/07/08 11:25:21 nia Exp $ +${LUA_LDIR}/ansicolors.lua Index: pkgsrc/devel/lua-ansicolors/distinfo diff -u /dev/null pkgsrc/devel/lua-ansicolors/distinfo:1.1 --- /dev/null Wed Jul 8 11:25:21 2020 +++ pkgsrc/devel/lua-ansicolors/distinfo Wed Jul 8 11:25:21 2020 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2020/07/08 11:25:21 nia Exp $ + +SHA1 (ansicolors.lua-1.0.2.tar.gz) = a662b742da066b0a47bfb2817a1bbe8f4eacef69 +RMD160 (ansicolors.lua-1.0.2.tar.gz) = 69c0375cd7bbf3de778fba39bcbf4ae429a291f1 +SHA512 (ansicolors.lua-1.0.2.tar.gz) = d7052fc63ec09076c0fa940f506fa06ebd210cf590f35310a21c80062cbf062b6d2607c3f89b8dbb39377793e25ea11f471101913e620a7566957e7ed7efbb04 +Size (ansicolors.lua-1.0.2.tar.gz) = 3471 bytes --_----------=_159420752147590--