From owner-svn-ports-all@FreeBSD.ORG Mon Mar 17 12:47:38 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AFF2F955; Mon, 17 Mar 2014 12:47:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 827A3EED; Mon, 17 Mar 2014 12:47:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2HClcOa047865; Mon, 17 Mar 2014 12:47:38 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2HClcZ4047863; Mon, 17 Mar 2014 12:47:38 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201403171247.s2HClcZ4047863@svn.freebsd.org> From: Pietro Cerutti Date: Mon, 17 Mar 2014 12:47:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r348466 - head/lang/seed7 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Mar 2014 12:47:38 -0000 Author: gahr Date: Mon Mar 17 12:47:37 2014 New Revision: 348466 URL: http://svnweb.freebsd.org/changeset/ports/348466 QAT: https://qat.redports.org/buildarchive/r348466/ Log: - Update to 05_20140316 Changes: * The documentation file doc/install.txt has been improved to describe the command 'make install'. * The chapter about the foreign function interface in the manual has been improved. * In striutl.h the macros os_stri_alloc and os_stri_free have been improved to use a stack like allocation. Allocations done with os_stri_alloc must be freed with os_stri_free in the reverse order of their creation. The new macros reduce the runtime of stri_to_os_stri and cp_to_os_path to 66% of the old time. This reduces the time used by operating system calls. E.g.: The CPU time used by the program sydir7 is reduced to 83% of the old time. * The targets 'install' and 'uninstall' have been added to makefile, mk_linux.mak, mk_osx.mak, mk_clang.mak, mk_cygw.mak, mk_mingw.mak, mk_msys.mak, mk_nmake.mak, mk_msvc.mak, mk_bcc32.mak and mk_bccv5.mak. * The program setwpath.c has been added. This program sets the search path (PATH variable) under Windows. * The obsolete target 'hi' has been removed from the makefiles. * The functions initEmulatedCwd, cmdSetenv (both in cmd_rtl.c), setEmulatedCwd (in striutl.c) and freeArgVector (in cmd_unx.c) have been adjusted to work with the stack like allocation of os_stri_alloc and os_stri_free. * The functions heapAllocOsStri and heapFreeOsStri have been added to striutl.c. * Usages of MAX_SYMLINK_PATH_LENGTH in cmd_rtl.c have been replaced with MAX_OS_STRI_LEN. Modified: head/lang/seed7/Makefile head/lang/seed7/distinfo Modified: head/lang/seed7/Makefile ============================================================================== --- head/lang/seed7/Makefile Mon Mar 17 12:17:15 2014 (r348465) +++ head/lang/seed7/Makefile Mon Mar 17 12:47:37 2014 (r348466) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= seed7 -DISTVERSION= 05_20140302 +DISTVERSION= 05_20140316 CATEGORIES= lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/ DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/lang/seed7/distinfo ============================================================================== --- head/lang/seed7/distinfo Mon Mar 17 12:17:15 2014 (r348465) +++ head/lang/seed7/distinfo Mon Mar 17 12:47:37 2014 (r348466) @@ -1,2 +1,2 @@ -SHA256 (seed7_05_20140302.tgz) = 9a9942f6b43c278d87d73ddc82c1b3589c377cc8559eeed350fe62ee1f44ca3a -SIZE (seed7_05_20140302.tgz) = 2053357 +SHA256 (seed7_05_20140316.tgz) = ca243399a329d724db6d438f489c7a15215a51286fa0cf8693f255a625e62350 +SIZE (seed7_05_20140316.tgz) = 2057935