From owner-svn-ports-head@freebsd.org Mon Aug 19 11:35:53 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 9B14AC2B33; Mon, 19 Aug 2019 11:35:53 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46BsLd3bp2z3CGx; Mon, 19 Aug 2019 11:35:53 +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 5903D19FB1; Mon, 19 Aug 2019 11:35: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 x7JBZrwV063093; Mon, 19 Aug 2019 11:35:53 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7JBZquj063091; Mon, 19 Aug 2019 11:35:52 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201908191135.x7JBZquj063091@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Mon, 19 Aug 2019 11:35:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r509273 - head/lang/seed7 X-SVN-Group: ports-head X-SVN-Commit-Author: gahr X-SVN-Commit-Paths: head/lang/seed7 X-SVN-Commit-Revision: 509273 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.29 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, 19 Aug 2019 11:35:53 -0000 Author: gahr Date: Mon Aug 19 11:35:52 2019 New Revision: 509273 URL: https://svnweb.freebsd.org/changeset/ports/509273 Log: lang/seed7: update to 05_20190818 20190818: - Interpreter and compiler have been improved to work correct, when a derived struct overrides an element of the parent struct. Many thanks go to Zachary Menzies, for reporting this error and for providing a test program. - In the FAQ the explanation, why Seed7 uses UTF-32, has been improved. An explanation of the database abstraction layer, which provides an database independent API, has also been added to the FAQ. - In the manual the chapter about the deprecated function removeAnyFile() has been replaced by a chapter about the function removeTree(). - The program db7.sd7 (Database Inspector) has been improved quote a table name from the catalog when doing a select. - The program sql7.sd7 has been improved to allow the execution of SQL statements from a file. The function getSqlStatement has been added, which reads a semicolon terminated SQL statement from a file. - The library tar.s7i has been improved to accept extended headers with meta data (PAX format) also when a tar file is opened as file system with openTar(). The function readMinimumOfHead has been improved to do this. - A code page for JIS X 0201 encoding has been added to charsets.s7i. - The program err.sd7 has been improved to contain test cases, where UTF-16 surrogate characters and non Unicode characters are written as Seed7 string escape sequences. - In sql_oci.c the function sqlOpenOci() has been improved to allow opening a database with host name, port and database name. This way a database can be opened without an entry in tnsnames.ora. The type connectDataRecord and the function setupConnectData() have been added to sql_oci.c. - The functions sqlOpenMy (in sql_my.c) and sqlOpenPost (in sql_post.c) have been improved to allow opening a database with host name, port and database name. Now host, port and dbName are parameters. Before the functions split the parameter dbName into host and database name. Specifying a port was not possible. - In sql_odbc.c the function sqlOpenOdbc() has been improved to allow opening a database with ODBC driver name, server name and database name. This way a database can be opened without specifying a data source in the ODBC Data Source Administrator (in the Control Panel). The type connectDataRecord and the functions getRegularName(), wstriSearchCh(), wstriSearch(), connectToServer(), connectToDriver() and driverConnect() have been added to sql_odbc.c. A definition of SQL_NEED_DATA has been added to db_odbc.h. - In sql_rtl.c the function sqlErrMessage() has been improved to allow database error messages encoded in UTF-8. - The function sqlOpen() has been removed from sql_rtl.c. - The function width() has been added to string.s7i and seed7_05.s7i. This function computes the sum of the character widths in a string. A character width can be 0 (for control characters), 1 (for normal printable characters) and 2 (for fullwidth characters, e.g. KANJI). - The library console.s7i has been improved to use the function Modified: head/lang/seed7/Makefile head/lang/seed7/distinfo Modified: head/lang/seed7/Makefile ============================================================================== --- head/lang/seed7/Makefile Mon Aug 19 11:10:59 2019 (r509272) +++ head/lang/seed7/Makefile Mon Aug 19 11:35:52 2019 (r509273) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= seed7 -DISTVERSION= 05_20190714 -PORTREVISION= 1 +DISTVERSION= 05_20190818 +PORTREVISION= 0 CATEGORIES= lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/ DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/lang/seed7/distinfo ============================================================================== --- head/lang/seed7/distinfo Mon Aug 19 11:10:59 2019 (r509272) +++ head/lang/seed7/distinfo Mon Aug 19 11:35:52 2019 (r509273) @@ -1,3 +1,3 @@ -TIMESTAMP = 1563966420 -SHA256 (seed7_05_20190714.tgz) = 937ad20de5bfdb95a81445064e6b0555f477efe156ed506ec163f0f38e653a60 -SIZE (seed7_05_20190714.tgz) = 3072079 +TIMESTAMP = 1566205173 +SHA256 (seed7_05_20190818.tgz) = f718015d599ec5445b7e0bacb1290614cb51baad1a95e1211478d2fc17ef325c +SIZE (seed7_05_20190818.tgz) = 3083539