diff options
author | Pietro Cerutti <gahr@FreeBSD.org> | 2016-08-29 12:26:43 +0000 |
---|---|---|
committer | Pietro Cerutti <gahr@FreeBSD.org> | 2016-08-29 12:26:43 +0000 |
commit | 7cbf0d78411a7703b5c7fd5768559b34689c4023 (patch) | |
tree | b9f17280407d64928a48ac1e488cfc961473e103 | |
parent | 2f6b3a0746268b03d57bf27a6a5bf85c4755cf47 (diff) | |
download | ports-7cbf0d78411a7703b5c7fd5768559b34689c4023.tar.gz ports-7cbf0d78411a7703b5c7fd5768559b34689c4023.zip |
lang/seed7: update to 05_20160731
- The bas7.sd7 (basic interpreter) example program has been improved.
Support for CVD, CVDMBF, CVS, CVSMBF, HPLOT, MKD$, MKDMBF$, MKS$,
MKSMBF$, PLOT, SCREEN, SHARED and VARPTR$ has been improved.
Creating Cga, Ega and Vga images from arrays has been improved to
work also for float and double arrays.
- The functions bin32, compare, hashCode, float2Bits, bits2Float,
float2MbfBits and mbfBits2Float have been added to bin32.s7i. The
functions fourBytesLeToBin32 and fourBytesBeToBin32 have been
removed (The new function bin32 can be used instead).
- The functions bin64, compare, hashCode, float2Bits, bits2Float,
float2MbfBits and mbfBits2Float have been added to bin64.s7i. The
functions eightBytesLeToBin64 and eightBytesBeToBin64 have been
removed (The new function bin64 can be used instead).
- The program chkbin.sd7 has been added. This program checks the
correctness of the functions float2Bits, bits2Float, float2MbfBits,
mbfBits2Float, str, radix and RADIX.
- Checks for the function decompose have been added to chkflt.sd7.
- The compiler has been improved optimize expressions where several
terms are added or subtracted. It is possible to combine adjacent
constant terms at compile time. This simplifies overflow checks.
- The compiler has been improved to store NaN values as bin64
literals.
- The calc7 example program has been improved to support bin32 and
bin64 functions.
- The function decompose and the type floatElements have been added
to the library float.s7i. The function decompose splits a float into
a normalized fraction and an integral exponent for 2. The result
of decompose uses the type floatElements.
- The function integer (it converts a string to an integer) has been
added to integer.s7i.
- In the library seed7_05.s7i the undocumented function xalloc has
been replaced by the function create.
- The functions uintCmp and uintCmpGeneric have been added to
int_rtl.c.
- The configuration value FREXP_INFINITY_NAN_OKAY has been added to
cc_conf.s7i.
- The primitive action FLT_A2TAN has been renamed to FLT_ATAN2 in
interpreter, compiler and runtime library.
- Documentation comments have been improved in bitdata.s7i, arrlib.c,
binlib.c, bstlib.c, bst_rtl.c, fillib.c, kbdlib.c, literal.c.
- Interpreter and compiler have been improved to support the primitiv
actions BIN_CMP, FLT_BITS2DOUBLE, FLT_BITS2SINGLE, FLT_DECOMPOSE,
FLT_DOUBLE2BITS and FLT_SINGLE2BITS.
- The program chkccomp.c has been improved to define
FREXP_INFINITY_NAN_OKAY and to work for PostgreSQL version 9.5.
Notes
Notes:
svn path=/head/; revision=421054
-rw-r--r-- | lang/seed7/Makefile | 2 | ||||
-rw-r--r-- | lang/seed7/distinfo | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lang/seed7/Makefile b/lang/seed7/Makefile index 522bccdf40b1..53995ecdcf6d 100644 --- a/lang/seed7/Makefile +++ b/lang/seed7/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= seed7 -DISTVERSION= 05_20160630 +DISTVERSION= 05_20160731 CATEGORIES= lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/ DISTNAME= ${PORTNAME}_${DISTVERSION} diff --git a/lang/seed7/distinfo b/lang/seed7/distinfo index aaac12125412..562e47359312 100644 --- a/lang/seed7/distinfo +++ b/lang/seed7/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1467367883 -SHA256 (seed7_05_20160630.tgz) = fecbaf660f5d436783152b9aa8a1aed377bdec3b1aa3dd70eb0c5a96b9706e14 -SIZE (seed7_05_20160630.tgz) = 2639753 +TIMESTAMP = 1472472177 +SHA256 (seed7_05_20160731.tgz) = f76938a8fe08a5e037d89b3541a5f9bf2175515b87e73624188e14c5ad6fe806 +SIZE (seed7_05_20160731.tgz) = 2656738 |