From owner-svn-ports-head@freebsd.org Sun Sep 10 13:43:11 2017 Return-Path: Delivered-To: svn-ports-head@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 07D2DE11D63; Sun, 10 Sep 2017 13:43:11 +0000 (UTC) (envelope-from tobik@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 CB03F74CA2; Sun, 10 Sep 2017 13:43:10 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v8ADhAms032408; Sun, 10 Sep 2017 13:43:10 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8ADh9gF032405; Sun, 10 Sep 2017 13:43:09 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201709101343.v8ADh9gF032405@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sun, 10 Sep 2017 13:43:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449572 - head/lang/tcbasic X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/lang/tcbasic X-SVN-Commit-Revision: 449572 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Sep 2017 13:43:11 -0000 Author: tobik Date: Sun Sep 10 13:43:09 2017 New Revision: 449572 URL: https://svnweb.freebsd.org/changeset/ports/449572 Log: lang/tcbasic: Update to 2.2.0 Changes: https://github.com/tcort/tcbasic/releases/tag/v2.2.0 PR: 222192 Submitted by: Thomas Cort (maintainer) Modified: head/lang/tcbasic/Makefile head/lang/tcbasic/distinfo head/lang/tcbasic/pkg-descr Modified: head/lang/tcbasic/Makefile ============================================================================== --- head/lang/tcbasic/Makefile Sun Sep 10 13:19:34 2017 (r449571) +++ head/lang/tcbasic/Makefile Sun Sep 10 13:43:09 2017 (r449572) @@ -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}/ Modified: head/lang/tcbasic/distinfo ============================================================================== --- head/lang/tcbasic/distinfo Sun Sep 10 13:19:34 2017 (r449571) +++ head/lang/tcbasic/distinfo Sun Sep 10 13:43:09 2017 (r449572) @@ -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 Modified: head/lang/tcbasic/pkg-descr ============================================================================== --- head/lang/tcbasic/pkg-descr Sun Sep 10 13:19:34 2017 (r449571) +++ head/lang/tcbasic/pkg-descr Sun Sep 10 13:43:09 2017 (r449572) @@ -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