Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id B1A727A0EB for ; Mon, 11 Jul 2016 05:22:00 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 5D8DD85EA0; Mon, 11 Jul 2016 05:22:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E222185E96 for ; Mon, 11 Jul 2016 05:21:59 +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 jWMbmy5Tn6Bs for ; Mon, 11 Jul 2016 05:21:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 550E585DFD for ; Mon, 11 Jul 2016 05:21:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4FD87FBB5; Mon, 11 Jul 2016 05:21:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_146821451987100" MIME-Version: 1.0 Date: Mon, 11 Jul 2016 05:21:59 +0000 From: "Alistair G. Crooks" Subject: CVS commit: pkgsrc/editors To: pkgsrc-changes@NetBSD.org Reply-To: agc@netbsd.org X-Mailer: log_accum Message-Id: <20160711052159.4FD87FBB5@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_146821451987100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: agc Date: Mon Jul 11 05:21:59 UTC 2016 Modified Files: pkgsrc/editors: Makefile Added Files: pkgsrc/editors/kilo: DESCR Makefile PLIST distinfo Log Message: Add the kilo editor to the packages collection. Kilo is a small text editor in less than 1K lines of code (counted with cloc). Usage: kilo Keys: CTRL-S: Save CTRL-Q: Quit CTRL-F: Find string in file (ESC to exit search, arrows to navigate) Kilo does not depend on any library (not even curses). It uses fairly standard VT100 (and similar terminals) escape sequences. The project is in alpha stage and was written in just a few hours taking code from my other two projects, load81 and linenoise. People are encouraged to use it as a starting point to write other editors or command line interfaces that are more advanced than the usual REPL style CLI. Kilo was written by Salvatore Sanfilippo aka antirez and is released under the BSD 2 clause license. To generate a diff of this commit: cvs rdiff -u -r1.175 -r1.176 pkgsrc/editors/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/editors/kilo/DESCR pkgsrc/editors/kilo/Makefile \ pkgsrc/editors/kilo/PLIST pkgsrc/editors/kilo/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_146821451987100 Content-Disposition: inline Content-Length: 3220 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/editors/Makefile diff -u pkgsrc/editors/Makefile:1.175 pkgsrc/editors/Makefile:1.176 --- pkgsrc/editors/Makefile:1.175 Thu Jun 16 02:29:27 2016 +++ pkgsrc/editors/Makefile Mon Jul 11 05:21:59 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.175 2016/06/16 02:29:27 kamil Exp $ +# $NetBSD: Makefile,v 1.176 2016/07/11 05:21:59 agc Exp $ # COMMENT= Editors @@ -67,6 +67,7 @@ SUBDIR+= kate SUBDIR+= kdissert SUBDIR+= kile SUBDIR+= kile-kde3 +SUBDIR+= kilo SUBDIR+= leafpad SUBDIR+= leim20 SUBDIR+= leim21 Added files: Index: pkgsrc/editors/kilo/DESCR diff -u /dev/null pkgsrc/editors/kilo/DESCR:1.1 --- /dev/null Mon Jul 11 05:21:59 2016 +++ pkgsrc/editors/kilo/DESCR Mon Jul 11 05:21:59 2016 @@ -0,0 +1,21 @@ +Kilo is a small text editor in less than 1K lines of code (counted with cloc). + +Usage: kilo + +Keys: + +CTRL-S: Save +CTRL-Q: Quit +CTRL-F: Find string in file (ESC to exit search, arrows to navigate) + +Kilo does not depend on any library (not even curses). It uses fairly +standard VT100 (and similar terminals) escape sequences. The project +is in alpha stage and was written in just a few hours taking code from +my other two projects, load81 and linenoise. + +People are encouraged to use it as a starting point to write other +editors or command line interfaces that are more advanced than the +usual REPL style CLI. + +Kilo was written by Salvatore Sanfilippo aka antirez and is released +under the BSD 2 clause license. Index: pkgsrc/editors/kilo/Makefile diff -u /dev/null pkgsrc/editors/kilo/Makefile:1.1 --- /dev/null Mon Jul 11 05:21:59 2016 +++ pkgsrc/editors/kilo/Makefile Mon Jul 11 05:21:59 2016 @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1 2016/07/11 05:21:59 agc Exp $ + +DISTNAME= kilo-20160710 +CATEGORIES= editors +MASTER_SITES= ${MASTER_SITE_GITHUB:=antirez/} +GITHUB_TAG= 62b099af00b542bdb08471058d527af258a349cf + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://troydhanson.github.io/uthash/ +COMMENT= Small text editor in less than 1K LOC +LICENSE= 2-clause-bsd + +AUTO_MKDIRS= yes + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/kilo ${DESTDIR}${PREFIX}/bin + +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/editors/kilo/PLIST diff -u /dev/null pkgsrc/editors/kilo/PLIST:1.1 --- /dev/null Mon Jul 11 05:21:59 2016 +++ pkgsrc/editors/kilo/PLIST Mon Jul 11 05:21:59 2016 @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1 2016/07/11 05:21:59 agc Exp $ +bin/kilo Index: pkgsrc/editors/kilo/distinfo diff -u /dev/null pkgsrc/editors/kilo/distinfo:1.1 --- /dev/null Mon Jul 11 05:21:59 2016 +++ pkgsrc/editors/kilo/distinfo Mon Jul 11 05:21:59 2016 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2016/07/11 05:21:59 agc Exp $ + +SHA1 (kilo-20160710-62b099af00b542bdb08471058d527af258a349cf.tar.gz) = 3244535773429b1c4a2f56400ea6a3e7b8b4bd7e +RMD160 (kilo-20160710-62b099af00b542bdb08471058d527af258a349cf.tar.gz) = 4422c9e00d2686e1936624835239d1aa251636fa +SHA512 (kilo-20160710-62b099af00b542bdb08471058d527af258a349cf.tar.gz) = 37af5e2bed4abec63ee44413853b25cc35a467cb68b8c30c7e5eea0d8108023a61c1023e2bac9b05f90707007d90a746950baf14d016d3ce260f3e84471b09df +Size (kilo-20160710-62b099af00b542bdb08471058d527af258a349cf.tar.gz) = 12949 bytes --_----------=_146821451987100--