From owner-svn-ports-head@freebsd.org Mon Jan 8 10:40:54 2018 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 3F0D6E631E8; Mon, 8 Jan 2018 10:40:54 +0000 (UTC) (envelope-from gahr@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 1B0D974E6E; Mon, 8 Jan 2018 10:40:54 +0000 (UTC) (envelope-from gahr@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 650DB2E923; Mon, 8 Jan 2018 10:40:53 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w08AerHU004655; Mon, 8 Jan 2018 10:40:53 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w08AeruN004653; Mon, 8 Jan 2018 10:40:53 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201801081040.w08AeruN004653@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Mon, 8 Jan 2018 10:40:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458403 - head/lang/seed7 X-SVN-Group: ports-head X-SVN-Commit-Author: gahr X-SVN-Commit-Paths: head/lang/seed7 X-SVN-Commit-Revision: 458403 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.25 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: Mon, 08 Jan 2018 10:40:54 -0000 Author: gahr Date: Mon Jan 8 10:40:52 2018 New Revision: 458403 URL: https://svnweb.freebsd.org/changeset/ports/458403 Log: lang/seed7: update to 05_20180107 20180107 - Interpreter and compiler have been improved to allow support for case statements with hashsets in the when parts. This allows e.g. case statements with string, bigInteger, type and other expressions. - Several discrepancies between s7 and s7c have been fixed. Many thanks go to "tipd bmp" who sent a example programs to show the discrepancies. Thanks also for finding a bug in the manual. - The following type conversion functions from integer have been introduced: bigInteger(), bigRational(), bitset(), boolean(), char(), float(), rational() and complex(). This fits to the existing conversion functions bin32() and bin64(). - The files bigrat.s7i, filesys.s7i, int_act.s7i, s7c.sd7, chkdb.sd7, dnafight.sd7, printpi1.sd7, printpi2.sd7 and savehd7.sd7 have been adjusted to use bigInteger() instead of the conv operator to convert an integer to a bigInteger. - The function bigRational, which converts a string to a bigRational number, has been added to bigrat.s7i. - The function rational, which converts a string to a rational number, has been added to rational.s7i. - In rational.s7i the operator 'parse' has been improved to convert a string with a decimal number to a rational number. - The functions float2Bits and bits2Float in bin32.s7i and bin64.s7i are deprecated and will be removed in a future version. The functions bin32(), bin64() and float() can be used instead to convert between float and bits in IEEE 754 representation. - The programs bas7.sd7 and chkbin.sd7 have been changed to use the functions bin32(), bin64() and float() instead of float2Bits and bits2Float. - Definitions of the operators |:= and &:= have been added to hashsetof.s7i. - The library seed7_05.s7i has been improved to support case statements which consist just of an otherwise part. - The program chkprc.sd7 has been improved to check integer and char case statements with otherwise part. - The program chkprc.sd7 has been improved to check string, bigInteger and float case statements with and without otherwise part. - The program chkbig.sd7 has been improved to check the bigInteger() conversion function. - The program chkflt.sd7 has been improved to check the float() conversion function. - Interpreter and compiler have been improved to support the actions BIG_ICONV1, BIG_ICONV3, BLN_ICONV1, BLN_ICONV3, CHR_ICONV1, CHR_ICONV3, FLT_ICONV1, FLT_ICONV3, SET_ICONV1, SET_ICONV3 and REF_ALLOC_VAR. - The handling of CONSTENUMOBJECT and VARENUMOBJECT objects in s7c.sd7 has been improved. - The functions initCaseLabelsOfWhen, initCaseLabelsOfCase and initCaseLabels have been added to s7c.sd7. Modified: head/lang/seed7/Makefile head/lang/seed7/distinfo Modified: head/lang/seed7/Makefile ============================================================================== --- head/lang/seed7/Makefile Mon Jan 8 10:38:20 2018 (r458402) +++ head/lang/seed7/Makefile Mon Jan 8 10:40:52 2018 (r458403) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= seed7 -DISTVERSION= 05_20170915 +DISTVERSION= 05_20180107 CATEGORIES= lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/ DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/lang/seed7/distinfo ============================================================================== --- head/lang/seed7/distinfo Mon Jan 8 10:38:20 2018 (r458402) +++ head/lang/seed7/distinfo Mon Jan 8 10:40:52 2018 (r458403) @@ -1,3 +1,3 @@ -TIMESTAMP = 1509104455 -SHA256 (seed7_05_20170915.tgz) = dadf1502572fae95d780c88f25910d6ea47ae63d29bcede8660445ccda470496 -SIZE (seed7_05_20170915.tgz) = 2768711 +TIMESTAMP = 1515406547 +SHA256 (seed7_05_20180107.tgz) = 4fcd35bdab1f0178822dbe21a91cc10ae5b24cecd5e71b776882ccaffb97540c +SIZE (seed7_05_20180107.tgz) = 2780835