From owner-svn-ports-head@FreeBSD.ORG Mon Nov 11 10:50:47 2013 Return-Path: Delivered-To: svn-ports-head@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 ESMTP id 3481C98; Mon, 11 Nov 2013 10:50:47 +0000 (UTC) (envelope-from gahr@FreeBSD.org) 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 20E4E2B31; Mon, 11 Nov 2013 10:50:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rABAokvU007037; Mon, 11 Nov 2013 10:50:46 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rABAokDE007034; Mon, 11 Nov 2013 10:50:46 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201311111050.rABAokDE007034@svn.freebsd.org> From: Pietro Cerutti Date: Mon, 11 Nov 2013 10:50:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333482 - 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-head@freebsd.org X-Mailman-Version: 2.1.14 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, 11 Nov 2013 10:50:47 -0000 Author: gahr Date: Mon Nov 11 10:50:46 2013 New Revision: 333482 URL: http://svnweb.freebsd.org/changeset/ports/333482 Log: - Update to 05_20131110 Changes: * Compiler and runtime library have been improved to work on Sparc 64-bit machines under OpenBSD. Thanks go to Brian Callahan, for his support and for providing access to his Sparc 64-bit machine. * The FAQ explanation concerning portability has been improved. * The new library cc_conf.s7i has been added. This library manages configuration values for C compiler and runtime. * The compiler has been improved to use the library cc_conf.s7i. * The chapter about the defines used in version.h has been improved in src/read_me.txt. * The type rtlGenerictype has been renamed to generictype in the files of the runtime library. Now compiler and runtime library both use the name generictype. * The function checkForLimitedStringLiteralLength, a check for trigraph sequences and checks for the presence of getrlimit() and siglongjmp() have been added to chkccomp.c. * The function setupStack has been added to cmd_rtl.c. This function tries to raise the stack limit to STACK_SIZE. * Usages of USE_SIGSETJMP have been renamed to HAS_SIGSETJMP. * The table key_code has been improved in kbd_inf.c and kbd_poll.c. Now the erase char of the terminal interface (VERASE) is always returned as backspace (KEY_BS respectively '\8\'). This improves the behavior under Cygwin. * The function utf8_init has been changed in kbd_inf.c and kbd_poll.c to assume UTF-8 mode when no locale environment variable is set. * The function msgDigest in msgdigest.s7i has been changed to use in-parameters. * The function configValue has been moved from osfiles.s7i to cc_conf.s7i. * The macro REALLOC_STRI_SIZE_SMALLER has been added to heaputl.h. Several usages of REALLOC_STRI_SIZE_OK in the runtime library have been changed to usages of REALLOC_STRI_SIZE_SMALLER. * The compiler has been improved to initialize boolean and enumeration elements of structs with the values value.boolvalue respectively value.enumvalue. This is necessary to work correctly on big-endian systems. * Interpreter and compiler have been improved to support the actions ACT_EQ and ACT_NE. Modified: head/lang/seed7/Makefile head/lang/seed7/distinfo head/lang/seed7/pkg-plist Modified: head/lang/seed7/Makefile ============================================================================== --- head/lang/seed7/Makefile Mon Nov 11 09:23:25 2013 (r333481) +++ head/lang/seed7/Makefile Mon Nov 11 10:50:46 2013 (r333482) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= seed7 -DISTVERSION= 05_20131027 +DISTVERSION= 05_20131110 CATEGORIES= lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/ DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/lang/seed7/distinfo ============================================================================== --- head/lang/seed7/distinfo Mon Nov 11 09:23:25 2013 (r333481) +++ head/lang/seed7/distinfo Mon Nov 11 10:50:46 2013 (r333482) @@ -1,2 +1,2 @@ -SHA256 (seed7_05_20131027.tgz) = baf733aa155ba1377e7605cfd0b2bc5fb114003045a23761576affc3b04a714e -SIZE (seed7_05_20131027.tgz) = 1981052 +SHA256 (seed7_05_20131110.tgz) = 4f54c768e88c1ff9649cc4dd4044ed2bcf0dc14774feac01a2a039f6d3a4fa7a +SIZE (seed7_05_20131110.tgz) = 1990251 Modified: head/lang/seed7/pkg-plist ============================================================================== --- head/lang/seed7/pkg-plist Mon Nov 11 09:23:25 2013 (r333481) +++ head/lang/seed7/pkg-plist Mon Nov 11 10:50:46 2013 (r333482) @@ -7,6 +7,7 @@ lib/seed7/bin/s7_draw.a lib/seed7/bin/seed7_05.a lib/seed7/lib/arc4.s7i lib/seed7/lib/asn1.s7i +lib/seed7/lib/cc_conf.s7i lib/seed7/lib/cipher.s7i lib/seed7/lib/gethttps.s7i lib/seed7/lib/hmac.s7i