mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
- Update to 05_20140105
Changes: * The library des.s7i with DES (Data Encryption Standard) cipher support has been added. * The library tls.s7i has been improved to support block ciphers and encoding with DES. * The functions blockSize and decode have been added to cipher.s7i and arc4.s7i. * The the functions str, rotLeft and rotRight and the operators radix, RADIX, ~ and ><:= have been added to bin32.s7i. * Support to write bin32 values has been added to bin32.s7i. * The new library unicode.s7i, with functions to convert between Unicode encodings, has been added. * The functions utf16beToStri, utf16leToStri, utf7ToStri and replaceUtf16SurrogatePairs have been improved and moved from charsets.s7i to unicode.s7i. The functions striToUtf8 and utf8ToStri have been moved from string.s7i to unicode.s7i. The functions striToUtf16be and striToUtf16le have been added to unicode.s7i. * The actions FLT_MINUS, INT_MINUS and BIG_MINUS have been renamed to FLT_NEGATE, INT_NEGATE and BIG_NEGATE respectively. * The library gethttps.s7i has been improved to accept links to HTTP. * The operator symbols ~ and ><:= have been added to syntax.s7i. * Checks for -, mdiv, << and >> have been added to chkbig.sd7. * The compiler (s7c) has been improved to do more optimizations for the actions BIG_DIV, BIG_LSHIFT, BIG_RSHIFT, BIG_MDIV, BIG_MULT, BIG_NEGATE and CHR_CLIT. * The function charLiteral has been added to the compiler. * The compiler has been improved to avoid the generation of long lines for bigInteger literals. * The function bigMinus has been renamed bigNegate and the function bigNegateTemp has been added to big_gmp.c and big_rtl.c. * A check for the keyword 'restrict' has been added to chkccomp.c. * The function chrCLitToBuffer has been added to chr_rtl.c. * Interpreter, compiler and runtime library have been improved to support the action INT_XOR_ASSIGN. * The functions utf8_char (literal.c), utf8_to_stri (striutl.c), utf8_bytes_missing (striutl.c), strUtf8ToStri (str_rtl.c) and ut8Getc (in ut8_rtl.c) have been improved to check for ranges of characters instead of bit patterns. This improves the performance of UTF-8 conversions by up to 6%. * The functions freeArgVector and genArgVector have been added to cmd_unx.c.
This commit is contained in:
parent
958ee7e6c5
commit
e7716bd0d4
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=339157
@ -2,7 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= seed7
|
||||
DISTVERSION= 05_20131124
|
||||
DISTVERSION= 05_20140105
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/
|
||||
DISTNAME= ${PORTNAME}_${DISTVERSION}
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (seed7_05_20131124.tgz) = 9d1f63cd58313dc8aa02afcd356c0ab8a50c3f6d95c8529dda9115b62a132830
|
||||
SIZE (seed7_05_20131124.tgz) = 1990629
|
||||
SHA256 (seed7_05_20140105.tgz) = 24383c1537d36b669b57494666fbf2199b9bfbdc6f2e2134def4aa23769e332e
|
||||
SIZE (seed7_05_20140105.tgz) = 2002939
|
||||
|
@ -9,6 +9,7 @@ lib/seed7/lib/arc4.s7i
|
||||
lib/seed7/lib/asn1.s7i
|
||||
lib/seed7/lib/cc_conf.s7i
|
||||
lib/seed7/lib/cipher.s7i
|
||||
lib/seed7/lib/des.s7i
|
||||
lib/seed7/lib/gethttps.s7i
|
||||
lib/seed7/lib/hmac.s7i
|
||||
lib/seed7/lib/pkcs1.s7i
|
||||
@ -92,6 +93,7 @@ lib/seed7/lib/pic32.s7i
|
||||
lib/seed7/lib/pixmap_file.s7i
|
||||
lib/seed7/lib/pixmapfont.s7i
|
||||
lib/seed7/lib/poll.s7i
|
||||
lib/seed7/lib/process.s7i
|
||||
lib/seed7/lib/progs.s7i
|
||||
lib/seed7/lib/propertyfile.s7i
|
||||
lib/seed7/lib/rational.s7i
|
||||
@ -128,6 +130,7 @@ lib/seed7/lib/tar.s7i
|
||||
lib/seed7/lib/tee.s7i
|
||||
lib/seed7/lib/text.s7i
|
||||
lib/seed7/lib/time.s7i
|
||||
lib/seed7/lib/unicode.s7i
|
||||
lib/seed7/lib/upper.s7i
|
||||
lib/seed7/lib/utf16.s7i
|
||||
lib/seed7/lib/utf8.s7i
|
||||
|
Loading…
Reference in New Issue
Block a user