From owner-svn-ports-all@freebsd.org Mon Mar 12 20:43:17 2018 Return-Path: Delivered-To: svn-ports-all@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 173E5F46DB8; Mon, 12 Mar 2018 20:43:17 +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 B6106710B0; Mon, 12 Mar 2018 20:43:16 +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 B123010A6F; Mon, 12 Mar 2018 20:43:16 +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 w2CKhGMW009909; Mon, 12 Mar 2018 20:43:16 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2CKhGgd009905; Mon, 12 Mar 2018 20:43:16 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201803122043.w2CKhGgd009905@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 12 Mar 2018 20:43:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464297 - in head/devel: . rubygem-tty-reader X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . rubygem-tty-reader X-SVN-Commit-Revision: 464297 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Mar 2018 20:43:17 -0000 Author: sunpoet Date: Mon Mar 12 20:43:16 2018 New Revision: 464297 URL: https://svnweb.freebsd.org/changeset/ports/464297 Log: Add rubygem-tty-reader 0.2.0 TTY::Reader provides independent reader component for TTY toolkit. It is a pure Ruby library that provides a set of methods for processing keyboard input in character, line and multiline modes. In addition it maintains history of entered input with an ability to recall and re-edit those inputs and register to listen for keystroke events. WWW: https://piotrmurach.github.io/tty/ WWW: https://github.com/piotrmurach/tty-reader Added: head/devel/rubygem-tty-reader/ head/devel/rubygem-tty-reader/Makefile (contents, props changed) head/devel/rubygem-tty-reader/distinfo (contents, props changed) head/devel/rubygem-tty-reader/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Mar 12 20:42:58 2018 (r464296) +++ head/devel/Makefile Mon Mar 12 20:43:16 2018 (r464297) @@ -5855,6 +5855,7 @@ SUBDIR += rubygem-tty-pager SUBDIR += rubygem-tty-platform SUBDIR += rubygem-tty-progressbar + SUBDIR += rubygem-tty-reader SUBDIR += rubygem-tty-screen SUBDIR += rubygem-tty-tree SUBDIR += rubygem-tty-which Added: head/devel/rubygem-tty-reader/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-tty-reader/Makefile Mon Mar 12 20:43:16 2018 (r464297) @@ -0,0 +1,23 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= tty-reader +PORTVERSION= 0.2.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Methods for processing keyboard input + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-tty-cursor>=0.5.0:devel/rubygem-tty-cursor \ + rubygem-tty-screen>=0.6.4:devel/rubygem-tty-screen \ + rubygem-wisper>=2.0.0:devel/rubygem-wisper + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +.include Added: head/devel/rubygem-tty-reader/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-tty-reader/distinfo Mon Mar 12 20:43:16 2018 (r464297) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520791522 +SHA256 (rubygem/tty-reader-0.2.0.gem) = 895d35b6c1e0a2fa8711b48968ae78a4023a770875960060f31055a3af9b57fd +SIZE (rubygem/tty-reader-0.2.0.gem) = 20992 Added: head/devel/rubygem-tty-reader/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-tty-reader/pkg-descr Mon Mar 12 20:43:16 2018 (r464297) @@ -0,0 +1,8 @@ +TTY::Reader provides independent reader component for TTY toolkit. It is a pure +Ruby library that provides a set of methods for processing keyboard input in +character, line and multiline modes. In addition it maintains history of entered +input with an ability to recall and re-edit those inputs and register to listen +for keystroke events. + +WWW: https://piotrmurach.github.io/tty/ +WWW: https://github.com/piotrmurach/tty-reader