From owner-svn-ports-all@freebsd.org Wed Dec 9 07:28:44 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BC5719D5D73; Wed, 9 Dec 2015 07:28:44 +0000 (UTC) (envelope-from araujo@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 mx1.freebsd.org (Postfix) with ESMTPS id 812CA1189; Wed, 9 Dec 2015 07:28:44 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB97Sh1g075827; Wed, 9 Dec 2015 07:28:43 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB97ShVC075823; Wed, 9 Dec 2015 07:28:43 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201512090728.tB97ShVC075823@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Wed, 9 Dec 2015 07:28:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403367 - in head/deskutils: . rubygem-shellplay X-SVN-Group: ports-head 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.20 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: Wed, 09 Dec 2015 07:28:44 -0000 Author: araujo Date: Wed Dec 9 07:28:43 2015 New Revision: 403367 URL: https://svnweb.freebsd.org/changeset/ports/403367 Log: CLI tool for recording and presenting step by step operations from the console. It is targeted at presentations that would simulate live coding, without the random murphy factor of it. WWW: https://github.com/mose/shellplay PR: ports/205153 Submitted by: mose Sponsored by: gandi.net Added: head/deskutils/rubygem-shellplay/ head/deskutils/rubygem-shellplay/Makefile (contents, props changed) head/deskutils/rubygem-shellplay/distinfo (contents, props changed) head/deskutils/rubygem-shellplay/pkg-descr (contents, props changed) Modified: head/deskutils/Makefile Modified: head/deskutils/Makefile ============================================================================== --- head/deskutils/Makefile Wed Dec 9 07:19:04 2015 (r403366) +++ head/deskutils/Makefile Wed Dec 9 07:28:43 2015 (r403367) @@ -213,6 +213,7 @@ SUBDIR += rolo SUBDIR += rox-memo SUBDIR += rubrica + SUBDIR += rubygem-shellplay SUBDIR += rubygem-taskjuggler SUBDIR += semantik SUBDIR += shutter Added: head/deskutils/rubygem-shellplay/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/rubygem-shellplay/Makefile Wed Dec 9 07:28:43 2015 (r403367) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= shellplay +PORTVERSION= 0.1.8 +CATEGORIES= deskutils textproc rubygems +MASTER_SITES= RG + +MAINTAINER= mose@mose.com +COMMENT= CLI tool for shell-based presentations + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-paint>=1.0.0:${PORTSDIR}/devel/rubygem-paint \ + rubygem-cliprompt>=0.1.2:${PORTSDIR}/devel/rubygem-cliprompt \ + rubygem-configstruct>=0.1.0:${PORTSDIR}/devel/rubygem-configstruct \ + rubygem-shell2html>=0.0.5:${PORTSDIR}/textproc/rubygem-shell2html + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes +PLIST_FILES= bin/shellcat bin/shellexport bin/shellplay bin/shellrecord + +.include Added: head/deskutils/rubygem-shellplay/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/rubygem-shellplay/distinfo Wed Dec 9 07:28:43 2015 (r403367) @@ -0,0 +1,2 @@ +SHA256 (rubygem/shellplay-0.1.8.gem) = e71108160a20e1a8a6456bfcf13064b889a288c96c35d43b17aae7e2ad7ccc6f +SIZE (rubygem/shellplay-0.1.8.gem) = 49152 Added: head/deskutils/rubygem-shellplay/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/rubygem-shellplay/pkg-descr Wed Dec 9 07:28:43 2015 (r403367) @@ -0,0 +1,6 @@ +CLI tool for recording and presenting step by step +operations from the console. It is targeted at +presentations that would simulate live coding, +without the random murphy factor of it. + +WWW: https://github.com/mose/shellplay