From owner-svn-ports-all@freebsd.org Sat Sep 1 15:43:32 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 A3DE3FF2E36; Sat, 1 Sep 2018 15:43:32 +0000 (UTC) (envelope-from yuri@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 5CFD370FB6; Sat, 1 Sep 2018 15:43:32 +0000 (UTC) (envelope-from yuri@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 56B8E473F; Sat, 1 Sep 2018 15:43:32 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w81FhWPl020746; Sat, 1 Sep 2018 15:43:32 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w81FhVh3020742; Sat, 1 Sep 2018 15:43:31 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201809011543.w81FhVh3020742@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 1 Sep 2018 15:43:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478708 - in head/devel: . rtichoke X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . rtichoke X-SVN-Commit-Revision: 478708 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.27 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: Sat, 01 Sep 2018 15:43:32 -0000 Author: yuri Date: Sat Sep 1 15:43:31 2018 New Revision: 478708 URL: https://svnweb.freebsd.org/changeset/ports/478708 Log: New port: devel/rtichoke: 21st century R console Added: head/devel/rtichoke/ head/devel/rtichoke/Makefile (contents, props changed) head/devel/rtichoke/distinfo (contents, props changed) head/devel/rtichoke/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Sep 1 15:41:43 2018 (r478707) +++ head/devel/Makefile Sat Sep 1 15:43:31 2018 (r478708) @@ -5421,6 +5421,7 @@ SUBDIR += rpm-spec-mode.el SUBDIR += rsvndump SUBDIR += rth + SUBDIR += rtichoke SUBDIR += ruby-bsearch SUBDIR += ruby-build SUBDIR += ruby-gems Added: head/devel/rtichoke/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rtichoke/Makefile Sat Sep 1 15:43:31 2018 (r478708) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= rtichoke +DISTVERSION= 0.2.12 +CATEGORIES= devel math python +MASTER_SITES= CHEESESHOP + +MAINTAINER= yuri@FreeBSD.org +COMMENT= 21st century R console + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lineedit>=0.1.1:devel/py-lineedit@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}rapi>=0.1.2:math/py-rapi@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils noflavors autoplist +NO_ARCH= yes + +.include Added: head/devel/rtichoke/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rtichoke/distinfo Sat Sep 1 15:43:31 2018 (r478708) @@ -0,0 +1,3 @@ +TIMESTAMP = 1535816159 +SHA256 (rtichoke-0.2.12.tar.gz) = fe227414708414f65d62a633a3dc00d0fe2f16bc8b9e42b84a5a8376d68a7fa7 +SIZE (rtichoke-0.2.12.tar.gz) = 21304 Added: head/devel/rtichoke/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rtichoke/pkg-descr Sat Sep 1 15:43:31 2018 (r478708) @@ -0,0 +1,11 @@ +rtichoke is an improved console for the R program with multiline editing and +rich syntax highlight and more... + +Under the hood, rtichoke is built on top of the python library prompt-toolkit. +One would consider rtichoke as a ipython clone for R, though its layout and +keybinds are actually more similar to those of julia. + +rtichoke is still under active developement, users should use it at their own +risks. + +WWW: https://github.com/randy3k/rtichok