aboutsummaryrefslogtreecommitdiff
path: root/lang/tcbasic
diff options
context:
space:
mode:
authorTobias Kortkamp <tobik@FreeBSD.org>2017-09-10 13:43:09 +0000
committerTobias Kortkamp <tobik@FreeBSD.org>2017-09-10 13:43:09 +0000
commit492175c49e43dd3da5d31b477bb1845952d43663 (patch)
treeb297c9a3f2d70a60184eb78af1f8a14b6fe3bca6 /lang/tcbasic
parent1ab3fe74aebcf49def6a00be2ac16cd1fd5cf6ca (diff)
downloadports-492175c49e43dd3da5d31b477bb1845952d43663.tar.gz
ports-492175c49e43dd3da5d31b477bb1845952d43663.zip
lang/tcbasic: Update to 2.2.0
Changes: https://github.com/tcort/tcbasic/releases/tag/v2.2.0 PR: 222192 Submitted by: Thomas Cort <linuxgeek@gmail.com> (maintainer)
Notes
Notes: svn path=/head/; revision=449572
Diffstat (limited to 'lang/tcbasic')
-rw-r--r--lang/tcbasic/Makefile2
-rw-r--r--lang/tcbasic/distinfo5
-rw-r--r--lang/tcbasic/pkg-descr10
3 files changed, 8 insertions, 9 deletions
diff --git a/lang/tcbasic/Makefile b/lang/tcbasic/Makefile
index 573ae2030f31..c2839567172b 100644
--- a/lang/tcbasic/Makefile
+++ b/lang/tcbasic/Makefile
@@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= tcbasic
-PORTVERSION= 2.1.0
+PORTVERSION= 2.2.0
CATEGORIES= lang
MASTER_SITES= https://github.com/tcort/${PORTNAME}/releases/download/v${PORTVERSION}/
diff --git a/lang/tcbasic/distinfo b/lang/tcbasic/distinfo
index 654202d1701c..f02a611fdb45 100644
--- a/lang/tcbasic/distinfo
+++ b/lang/tcbasic/distinfo
@@ -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
diff --git a/lang/tcbasic/pkg-descr b/lang/tcbasic/pkg-descr
index 62e0ec44767d..42a63f360c98 100644
--- a/lang/tcbasic/pkg-descr
+++ b/lang/tcbasic/pkg-descr
@@ -1,9 +1,7 @@
-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