svn commit: r412725 - head/lang/seed7

Pietro Cerutti gahr at FreeBSD.org
Fri Apr 8 09:16:12 UTC 2016


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


More information about the svn-ports-all mailing list