diff options
author | gahr <gahr@FreeBSD.org> | 2017-01-03 01:47:52 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2017-01-03 01:47:52 +0800 |
commit | 095cfc682494cb7ba60cf80adc6954411c4c026a (patch) | |
tree | 1aa0f9705d02b83d65348f6d0324fc89ade38927 | |
parent | f676b291bad7b7e56c11548d4d1f78f227869bf0 (diff) | |
download | freebsd-ports-gnome-095cfc682494cb7ba60cf80adc6954411c4c026a.tar.gz freebsd-ports-gnome-095cfc682494cb7ba60cf80adc6954411c4c026a.tar.zst freebsd-ports-gnome-095cfc682494cb7ba60cf80adc6954411c4c026a.zip |
lang/seed7: update to 05_20161231
20161231:
- The function toArray has been added to the libraries bitset.s7i,
bitsetof.s7i and hashsetof.s7i. This function creates an array
with all values from a given set.
- Experimental functions to access TAR and ZIP archives as file system
have been added to tar.s7i and zip.s7i. This is work in progress, so
the API might change.
- The compiler has been improved to work correctly with a C++ compiler
backend (Now it uses strRaiseError insead of intRaiseError) for the
code generated for BIN_RADIX and INT_RADIX.
- The compiler has been improved to use sigaction(), when available
(HAS_SIGACTION is TRUE).
- The compiler has been improved to reactivate the signal handler,
when necessary (SIGNAL_RESETS_HANDLER is TRUE).
- Testcases for the parse function with whitespace and control
characters have been added to chkbig.sd7.
- in big_gmp.c the functions bigParse and bigParseBased have been
improved, to raise RANGE_ERROR when whitespace characters are in the
string.
- The configuration values HAS_SIGACTION and SIGNAL_RESETS_HANDLER
have been added to cc_conf.s7i.
- The program chkccomp.c has been improved to define
SIGNAL_RESETS_HANDLER.
- The function checkMoveDirectory has been removed from chkccomp.c.
- In several files the literal 8 has been replaced by CHAR_BIT, when 8
refers to the number of bits is a char.
- Several integer literals have been replaced by defined constants.
- Documentation comments have been added or improved in bitset.s7i,
bitsetof.s7i, hashsetof.s7i, cc_conf.s7i, ftp.s7i, tar.s7i, zip.s7i,
arrlib.c, arr_rtl.c, big_rtl.c, conlib.c, dll_unx.c, dll_win.c,
fillib.c, fil_rtl.c, heaputl.c, hshlib.c, hsh_rtl.c, numlit.c,
numutl.c, pcs_unx.c, pcs_win.c, pol_dos.c, pollib.c, pol_sel.c,
pol_unx.c, sctlib.c, setlib.c, set_rtl.c, str_rtl.c and typlib.c.
20161204:
- A description, how compiler optimizations can reduce the potential
of integer overflow, has been added to the manual.
- Documentation comments have been improved in cc_conf.s7i,
integer.s7i, int_rtl.c, stat_win.c and tim_win.c.
- The compiler has been improved to optimize expressions, where
several terms are added or subtracted in combination with the
functions succ or pred. It is possible to combine adjacent constant
terms at compile time. This simplifies overflow checks.
- The compiler has been improved to optionally generate programs,
that trace function calls. This is activated with the option -tf.
- Checks have been added to chkint.sd7, where several terms are added
in combination with the functions succ or pred.
- The functions wstati64Ext (in stat_win.c) and alternate_utime (in
tim_win.c) have been improved to avoid the strange time adjustments
of windows for Daylight Saving Time: For the same file different
times are retrieved respectively set in summer and winter. Now the
times do not depend on the time when they are retrieved or set.
- In stat_win.c a check for wildcards in a path has been removed from
wstati64Ext.
- The performance of dirRead in dir_rtl.c has been improved by 10%
(measured with gcc and valgrind). A smarter check for the
directories . and .. reduces the CPU time used.
- In cmd_rtl.c the functions remove_dir and copy_dir have been
improved with a smarter check for the directories . and .. to
reduce the CPU time used.
- The function getSearchPath in cmd_rtl.c has been improved to work
correctly, when there is no environment variable named PATH.
- Definitions of macros to check the st_mode field of struct stat
(e.g. S_ISDIR, S_ISREG, etc.) have been moved from fil_rtl.h to
stat_drv.h.
- The program chkccomp.c has been improved to work correct, when
C compiler options are separated by linefeeds (\n). In this case the
linefeeds are replaced by spaces. The linefeeds are used in
cc_conf.s7i to allow the definition of SYSTEM_DB_LIBS as an array of
database libraries.
- In sudo.c the call of ShellExecute() has been replaced by a call of
ShellExecuteA().
- A definition of FMT_T, a printf format for time_t values, has been
added to common.h.
- The makefile mk_clangw.mak has been improved to use the library
extension ".lib".
- Calls of logFunction and logError have been added or improved in
cmd_rtl.c, cmd_win.c, gkb_win.c, flt_rtl.c, int_rtl.c, pcslib.c,
reflib.c, rfllib.c, stat_win.c and tim_win.c.
- In dir_rtl.c the function readVolumeName has been improved to
consider only directories as volumes.
- In int_rtl.c the functions uint_mult, uint2_mult and uint2_add
have been renamed to uintMult, uint2Mult and uint2Add respectively.
- In stat_win.c the functions filetime_to_unixtime and
fileattr_to_unixmode have been renamed to fileTime2UnixTime and
fileAttr2UnixMode respectively.
- In tim_win.c the function alternate_utime has been improved to
avoid calling os_utime_orig, because the utime functions of Windows
do different time adjustments for the same time in summer and
winter.
-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 3d49bfe22971..e81c2e5913b3 100644 --- a/lang/seed7/Makefile +++ b/lang/seed7/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= seed7 -DISTVERSION= 05_20161031 +DISTVERSION= 05_20161231 CATEGORIES= lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/ DISTNAME= ${PORTNAME}_${DISTVERSION} diff --git a/lang/seed7/distinfo b/lang/seed7/distinfo index 18c5efc5694d..d73f28101a8b 100644 --- a/lang/seed7/distinfo +++ b/lang/seed7/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1479903307 -SHA256 (seed7_05_20161031.tgz) = 6b338b26c689275a242cd97bf960152528dd6cf636cbd7f7a25df5b3f3b821b8 -SIZE (seed7_05_20161031.tgz) = 2672738 +TIMESTAMP = 1483374945 +SHA256 (seed7_05_20161231.tgz) = 7e2eef0ee40a68e8d94d812e1c65d33f11f180873611cb2fe53ca4ac65cb9346 +SIZE (seed7_05_20161231.tgz) = 2687625 |