Index: head/lang/tcbasic/Makefile =================================================================== --- head/lang/tcbasic/Makefile (revision 449571) +++ head/lang/tcbasic/Makefile (revision 449572) @@ -1,17 +1,17 @@ # $FreeBSD$ PORTNAME= tcbasic -PORTVERSION= 2.1.0 +PORTVERSION= 2.2.0 CATEGORIES= lang MASTER_SITES= https://github.com/tcort/${PORTNAME}/releases/download/v${PORTVERSION}/ MAINTAINER= linuxgeek@gmail.com COMMENT= Small BASIC Interpreter written in C LICENSE= GPLv3 GNU_CONFIGURE= yes PLIST_FILES= bin/tcbasic man/man1/tcbasic.1.gz .include Index: head/lang/tcbasic/distinfo =================================================================== --- head/lang/tcbasic/distinfo (revision 449571) +++ head/lang/tcbasic/distinfo (revision 449572) @@ -1,2 +1,3 @@ -SHA256 (tcbasic-2.1.0.tar.gz) = 00b1535237cb7fdea30acbed063cca3b82df221ce5d1b69104ae4dbc7d7ea194 -SIZE (tcbasic-2.1.0.tar.gz) = 119570 +TIMESTAMP = 1505046706 +SHA256 (tcbasic-2.2.0.tar.gz) = 0fd87000f5c192ead1d02a2169e46eb6316660e89113ab3e901426e585a0054b +SIZE (tcbasic-2.2.0.tar.gz) = 135017 Index: head/lang/tcbasic/pkg-descr =================================================================== --- head/lang/tcbasic/pkg-descr (revision 449571) +++ head/lang/tcbasic/pkg-descr (revision 449572) @@ -1,13 +1,11 @@ -tcbasic implements a small subset of BASIC known as Tiny BASIC. -It provides the following statements and commands: INPUT, PRINT, -LET, GOTO, GOSUB, RETURN, IF, END, CLEAR, LIST, RUN, and STOP. -Integer and floating point arithmetic is supported, and strings -may be PRINTed. The following built-in functions are provided: -SIN, COS, TAN, COT, ATN, EXP, LOG, ABS, SQR, RND. +tcbasic implements a small subset of BASIC known as Tiny BASIC +with added support for floating point numbers and many of the +built-in mathematical functions in Dartmouth BASIC. It supports +basic I/O, flow control, subroutines, and debug tracing. The small size of the language make it easy to learn and master while providing all of the building blocks needed to develop many interesting programs. tcbasic runs on a variety of platforms and aims to be as portable as possible. WWW: https://github.com/tcort/tcbasic