diff options
author | gahr <gahr@FreeBSD.org> | 2014-01-09 00:48:25 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2014-01-09 00:48:25 +0800 |
commit | 9ecd900ff766555f5a3739d62ce5fae6c799a816 (patch) | |
tree | ebace4fde327824e8771f10c02a0b424551dcdf4 /lang/seed7 | |
parent | 1d36fca41cf15d96001bb53ff082579b56679ead (diff) | |
download | freebsd-ports-gnome-9ecd900ff766555f5a3739d62ce5fae6c799a816.tar.gz freebsd-ports-gnome-9ecd900ff766555f5a3739d62ce5fae6c799a816.tar.zst freebsd-ports-gnome-9ecd900ff766555f5a3739d62ce5fae6c799a816.zip |
- 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.
Diffstat (limited to 'lang/seed7')
-rw-r--r-- | lang/seed7/Makefile | 2 | ||||
-rw-r--r-- | lang/seed7/distinfo | 4 | ||||
-rw-r--r-- | lang/seed7/pkg-plist | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/lang/seed7/Makefile b/lang/seed7/Makefile index 4702fb932a4b..cead19cf660f 100644 --- a/lang/seed7/Makefile +++ b/lang/seed7/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= seed7 -DISTVERSION= 05_20131124 +DISTVERSION= 05_20140105 CATEGORIES= lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/ DISTNAME= ${PORTNAME}_${DISTVERSION} diff --git a/lang/seed7/distinfo b/lang/seed7/distinfo index 082d24d06395..bbc94fbd7456 100644 --- a/lang/seed7/distinfo +++ b/lang/seed7/distinfo @@ -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 diff --git a/lang/seed7/pkg-plist b/lang/seed7/pkg-plist index 9d173e2166a6..56713bd05548 100644 --- a/lang/seed7/pkg-plist +++ b/lang/seed7/pkg-plist @@ -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 |