Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Aug 2021 08:53:14 GMT
From:      Pietro Cerutti <gahr@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 48cf44f476db - main - lang/seed7: update to 06_20210807
Message-ID:  <202108090853.1798rE6J088992@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by gahr:

URL: https://cgit.FreeBSD.org/ports/commit/?id=48cf44f476db6ab563626186ee3b7d2da43609b3

commit 48cf44f476db6ab563626186ee3b7d2da43609b3
Author:     Pietro Cerutti <gahr@FreeBSD.org>
AuthorDate: 2021-08-09 08:51:36 +0000
Commit:     Pietro Cerutti <gahr@FreeBSD.org>
CommitDate: 2021-08-09 08:53:12 +0000

    lang/seed7: update to 06_20210807
    
    20210807:
    - The bmp.s7i library has been improved. Now the function readBmp()
      works also for historical versions of the BMP format.
    - The function readIco() has been added to the library ico.s7i.
    - In msgdigest.s7i the run-time of the functions md4(), md5(),
      ripemd160(), sha1(), sha224() and sha256() has been reduced by 4%
      and the run-time of sha384() and sha512() has been reduced by 62%
      and 67% respectively (measured with gcc and valgrind).
    - The example program pv7.sd7 (Picture Viewer) has been improved to
      support the ICO graphic format. Additionally the window title is
      now changed also at the start and the end of the picture sequence.
    - The library gif.s7i has been improved to work also for the empty
      GIF image.
    - Functions to convert a bin64 or bin32 to a string of bytes with a
      given length have been added to bin64.s7i and bin32.s7i. To get
      the bytes of a bin64 or bin32 value use e.g.: bytes(number, BE, 4)
      The functions bin32AsFourBytesBe, bin32AsFourBytesLe,
      bin64AsEightBytesBe and bin64AsEightBytesLe are deprecated now.
    - In bytedata.s7i the functions int16AsTwoBytesBe,
      int32AsFourBytesBe, int64AsEightBytesBe, int16AsTwoBytesLe,
      int32AsFourBytesLe, int64AsEightBytesLe, bigAsEightBytesLe and
      bigAsEightBytesBe are deprecated now. The functions from the
      bytes(number, SIGNED, LE, 4) family can be used instead.
    - Calls of the deprecated functions have been replaced with the
      new function bytes(), which converts an integer to a string of
      bytes with a given length. The changes have been done in aes.s7i,
      blowfish.s7i, bmp.s7i, des.s7i, encoding.s7i, gzip.s7i, hmac.s7i,
      ico.s7i, msgdigest.s7i, rpm.s7i, tls.s7i, zip.s7i, bas7.sd7 and
      s7c.sd7.
    - Interpreter and compiler have been improved to support the actions
      BIN_N_BYTES_BE and BIN_N_BYTES_LE.
    - The compiler (s7c.sd7) has been improved to generate optimized
      code for the actions INT_N_BYTES_BE_UNSIGNED,
      INT_N_BYTES_LE_UNSIGNED, BIN_N_BYTES_BE and BIN_N_BYTES_LE.
    - In zip.s7i an error in the function setMTime() has been fixed and
      the function close() has been improved to leave the actual ZIP
      file open.
    - Tests for the bytes() function have been added to chkint.sd7 and
      chkbig.sd7. These tests make sure that the compiler optimizations
      of the bytes() function work correctly.
    - The functions uintNBytesBe() and uintNBytesLe() have been added to
      int_rtl.c.
    - The functions bin_n_bytes_be() and bin_n_bytes_le() have been added
      to binlib.c.
    - Documentation comments have been improved in drwlib.c, intlib.c
      and int_rtl.c.
    - The documentation of primitive actions in the manual has been
      improved.
    - A debug printf() has been removed from the function socGets() in
      soc_rtl.c.
---
 lang/seed7/Makefile | 2 +-
 lang/seed7/distinfo | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/lang/seed7/Makefile b/lang/seed7/Makefile
index 815dd8aaf085..eeda2072da16 100644
--- a/lang/seed7/Makefile
+++ b/lang/seed7/Makefile
@@ -1,7 +1,7 @@
 # Created by: gahr
 
 PORTNAME=	seed7
-DISTVERSION=	05_20210627
+DISTVERSION=	05_20210807
 PORTREVISION=	0
 CATEGORIES=	lang
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/
diff --git a/lang/seed7/distinfo b/lang/seed7/distinfo
index 53fa22601a60..eab49adf9a30 100644
--- a/lang/seed7/distinfo
+++ b/lang/seed7/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1624868974
-SHA256 (seed7_05_20210627.tgz) = 8e7ad8d340266c2bea84c29d9e3f923751922075001fc30d94a3d87b431b48c3
-SIZE (seed7_05_20210627.tgz) = 3588156
+TIMESTAMP = 1628493447
+SHA256 (seed7_05_20210807.tgz) = baad500d577b6f1a347d00f0471405f8bf0b9eabeb7fff080fc5c863a7c540dd
+SIZE (seed7_05_20210807.tgz) = 3609571



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202108090853.1798rE6J088992>