Date: Fri, 8 Apr 2016 09:16:11 +0000 (UTC) From: Pietro Cerutti <gahr@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412725 - head/lang/seed7 Message-ID: <201604080916.u389GBxr048489@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gahr Date: Fri Apr 8 09:16:10 2016 New Revision: 412725 URL: https://svnweb.freebsd.org/changeset/ports/412725 Log: lang/seed7: update to 05_20160330 Changes: - The makefile mk_clangw.mak has been added. This makefile supports compilation under Windows with the clang compiler. - The experimental function parentDir has been added to osfiles.s7i. - The experimental function getServerCertificate has been added to tls.s7i. - The compiler (s7c) has been improved to use the function strAppendN, when two or more strings are appended to a string. - Tests for string append (operator &:= ) have been added to chkstr.sd7. - The function strAppendN has been added to str_rtl.c. - The function strCopy in str_rtl.c has been simplified. - The program chkccomp.c has been improved to write a definition of CHAR_BIT, when it is not defined in limits.h. - Several files have been changed to use CHAR_BIT instead of the literal 8. - in chkccomp.c several string literals have been changed to wide string literals (e.g. L"abc" instead of "abc"). - In several files integer literals have been replaced by contants or #define macros. - The function __mulodi4 has been added to int_rtl.c. This function is used by clang under Windows, but unfortunately is not part of the runtime library. This situation is recognized by chkccomp.c and the function __mulodi4 in int_rtl.c is used instead. Modified: head/lang/seed7/Makefile head/lang/seed7/distinfo Modified: head/lang/seed7/Makefile ============================================================================== --- head/lang/seed7/Makefile Fri Apr 8 08:53:51 2016 (r412724) +++ head/lang/seed7/Makefile Fri Apr 8 09:16:10 2016 (r412725) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= seed7 -DISTVERSION= 05_20160229 +DISTVERSION= 05_20160330 CATEGORIES= lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/ DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/lang/seed7/distinfo ============================================================================== --- head/lang/seed7/distinfo Fri Apr 8 08:53:51 2016 (r412724) +++ head/lang/seed7/distinfo Fri Apr 8 09:16:10 2016 (r412725) @@ -1,2 +1,2 @@ -SHA256 (seed7_05_20160229.tgz) = a6e78443ec25864fff236f40d0cceda3e398a8c6775a7c65e6873b98ba2be79a -SIZE (seed7_05_20160229.tgz) = 2592420 +SHA256 (seed7_05_20160330.tgz) = a06744405a4860730b33833f1d1df97ed96b82d5a86596a6f0396fb6c0f24c41 +SIZE (seed7_05_20160330.tgz) = 2601993
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201604080916.u389GBxr048489>