pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/chicken5



Module Name:    pkgsrc
Committed By:   ryoon
Date:           Tue Jul  2 13:22:41 UTC 2019

Modified Files:
        pkgsrc/lang/chicken5: Makefile PLIST distinfo

Log Message:
Update to 5.1.0

Changelog:
5.1.0

- Core libraries
  - Symbols ending or starting with a colon are now always pipe-quoted
    when written by `write` to ensure they can be read back with a
    different keyword-style setting.
  - Read-write invariance of special symbols starting with #! other
    than #!key, #!rest or #!optional is now preserved (#1572).
  - When using (set-file-position!) on a port, its EOF status will now
    be reset.
  - In (chicken file posix), the values of perm/irgrp, perm/iwgrp,
    perm/ixgrp, perm/iroth, perm/iwoth and perm/ixoth are now correctly
    defined (they were all for "usr"; #1602, thanks to Eric Hoffman).
  - In (chicken file posix), `file-truncate` now accepts also accepts
    port objects, for consistency with other file procedures.
    All such procedures from (chicken file posix) now have the correct
    types in types.db (fixes #1609, thanks to Robert Jensen).
  - Add the system-config-directory and system-cache-directory procedures
    in the chicken.platform module. These procedures follow the XDG
    specification and also give sensible results on Windows.
  - Fix get-environment from (chicken process-context) to raise an
    error when passed #f instead of segfaulting.
  - Qualified symbols (##foo#bar style) are no longer encoded by a
    byte prefix inside the symbol name.  This ensures read-write
    invariance of symbols which start with a low-byte character
    (fixes #1077, except for keywords, which start with NUL bytes).
  - Fix a missing export (list->s64vector) in SRFI-4.

- Runtime system
  - Keywords are now distinct types; they are not a subtype of symbols.
  - Use arc4random on FreeBSD (thanks to Tobias Kortkamp and gahr)
  - Removed the unused, undocumented (and incorrect!) C functions
    C_delete_symbol_table and C_set_symbol_table.
  - Continuations which discard additional values beyond the first no
    longer accept multiple values via direct invocation after being
    captured through `call/cc`, only via `values` (revert of #1390,
    due to #1601)
  - SRFI-4 vector predicates, reference, set and length procedures
    should now be faster in tight loops as they're inlineable (#757).
  - Keywords are now interned in a separate keyword table, not in the
    standard symbol table.  This brings full read-write invariance
    for symbols (they can now also start with NUL bytes).  Keywords
    no longer have plists.  Fixes #1576.
  - Increased the "binary compatibility version" to 11.

- Compiler
  - Restored optimized implementations of =, +, -, /, * and quotient in
    fixnum-arithmetic mode (fixes #1604 mostly; thanks to "chickendan").
  - Added an optimization pass for reducing the amount of boxing of
    intermediate floating point values, enabled by the "-lfa2" compiler
    option.
  - The "lfa2" pass is now enabled at optimization levels 2 or higher.

- Module system
  - When you try to import the module you are currently defining into
    itself, an error will be raised. This prevents an infinite loop in
    the compiler when later trying to import that same module (fixes
    #1506, thanks to Kristian Lein-Mathisen).

- Foreign function interface
  - Improved hygiene in FFI macro expansions, which means you don't
     have to import "scheme" or "(chicken base)" for them to work.

- Type system
  - It is now possible to quote free variables in type declarations,
     which acts as shorthand for `forall' (thanks to "megane")

- Tools
  - csi now uses (system-config-directory) to find csirc and falls back to
    $HOME/.csirc when needed.
  - chicken-install now uses (system-config-directory) to find a user
    defined setup.defaults file ; it also uses (system-cache-directory)
    for its egg cache directory when the CHICKEN_EGG_CACHE environment
    variable is not defined.

- Egg specifications
  - Allows "cond-expand" and "error" forms in egg specification files.
  - Add "c-object" and "object" properties to link separately compiled
     C objects into CHICKEN code.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/chicken5/Makefile \
    pkgsrc/lang/chicken5/PLIST pkgsrc/lang/chicken5/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/chicken5/Makefile
diff -u pkgsrc/lang/chicken5/Makefile:1.1 pkgsrc/lang/chicken5/Makefile:1.2
--- pkgsrc/lang/chicken5/Makefile:1.1   Fri Dec 21 12:35:38 2018
+++ pkgsrc/lang/chicken5/Makefile       Tue Jul  2 13:22:40 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1 2018/12/21 12:35:38 leot Exp $
+# $NetBSD: Makefile,v 1.2 2019/07/02 13:22:40 ryoon Exp $
 
-DISTNAME=      chicken-5.0.0
+DISTNAME=      chicken-5.1.0
 CATEGORIES=    lang
 MASTER_SITES=  http://code.call-cc.org/releases/${PKGVERSION_NOREV}/
 
Index: pkgsrc/lang/chicken5/PLIST
diff -u pkgsrc/lang/chicken5/PLIST:1.1 pkgsrc/lang/chicken5/PLIST:1.2
--- pkgsrc/lang/chicken5/PLIST:1.1      Fri Dec 21 12:35:38 2018
+++ pkgsrc/lang/chicken5/PLIST  Tue Jul  2 13:22:40 2019
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2018/12/21 12:35:38 leot Exp $
+@comment $NetBSD: PLIST,v 1.2 2019/07/02 13:22:40 ryoon Exp $
 bin/chicken
 bin/chicken-do
 bin/chicken-install
@@ -10,53 +10,53 @@ bin/csi
 bin/feathers
 include/chicken/chicken-config.h
 include/chicken/chicken.h
-lib/chicken/9/chicken.base.import.so
-lib/chicken/9/chicken.bitwise.import.so
-lib/chicken/9/chicken.blob.import.so
-lib/chicken/9/chicken.compiler.user-pass.import.so
-lib/chicken/9/chicken.condition.import.so
-lib/chicken/9/chicken.continuation.import.so
-lib/chicken/9/chicken.csi.import.so
-lib/chicken/9/chicken.errno.import.so
-lib/chicken/9/chicken.eval.import.so
-lib/chicken/9/chicken.file.import.so
-lib/chicken/9/chicken.file.posix.import.so
-lib/chicken/9/chicken.fixnum.import.so
-lib/chicken/9/chicken.flonum.import.so
-lib/chicken/9/chicken.foreign.import.so
-lib/chicken/9/chicken.format.import.so
-lib/chicken/9/chicken.gc.import.so
-lib/chicken/9/chicken.internal.import.so
-lib/chicken/9/chicken.io.import.so
-lib/chicken/9/chicken.irregex.import.so
-lib/chicken/9/chicken.keyword.import.so
-lib/chicken/9/chicken.load.import.so
-lib/chicken/9/chicken.locative.import.so
-lib/chicken/9/chicken.memory.import.so
-lib/chicken/9/chicken.memory.representation.import.so
-lib/chicken/9/chicken.pathname.import.so
-lib/chicken/9/chicken.platform.import.so
-lib/chicken/9/chicken.plist.import.so
-lib/chicken/9/chicken.port.import.so
-lib/chicken/9/chicken.pretty-print.import.so
-lib/chicken/9/chicken.process-context.import.so
-lib/chicken/9/chicken.process-context.posix.import.so
-lib/chicken/9/chicken.process.import.so
-lib/chicken/9/chicken.process.signal.import.so
-lib/chicken/9/chicken.random.import.so
-lib/chicken/9/chicken.read-syntax.import.so
-lib/chicken/9/chicken.repl.import.so
-lib/chicken/9/chicken.sort.import.so
-lib/chicken/9/chicken.string.import.so
-lib/chicken/9/chicken.syntax.import.so
-lib/chicken/9/chicken.tcp.import.so
-lib/chicken/9/chicken.time.import.so
-lib/chicken/9/chicken.time.posix.import.so
-lib/chicken/9/srfi-4.import.so
-lib/chicken/9/types.db
+lib/chicken/11/chicken.base.import.so
+lib/chicken/11/chicken.bitwise.import.so
+lib/chicken/11/chicken.blob.import.so
+lib/chicken/11/chicken.compiler.user-pass.import.so
+lib/chicken/11/chicken.condition.import.so
+lib/chicken/11/chicken.continuation.import.so
+lib/chicken/11/chicken.csi.import.so
+lib/chicken/11/chicken.errno.import.so
+lib/chicken/11/chicken.eval.import.so
+lib/chicken/11/chicken.file.import.so
+lib/chicken/11/chicken.file.posix.import.so
+lib/chicken/11/chicken.fixnum.import.so
+lib/chicken/11/chicken.flonum.import.so
+lib/chicken/11/chicken.foreign.import.so
+lib/chicken/11/chicken.format.import.so
+lib/chicken/11/chicken.gc.import.so
+lib/chicken/11/chicken.internal.import.so
+lib/chicken/11/chicken.io.import.so
+lib/chicken/11/chicken.irregex.import.so
+lib/chicken/11/chicken.keyword.import.so
+lib/chicken/11/chicken.load.import.so
+lib/chicken/11/chicken.locative.import.so
+lib/chicken/11/chicken.memory.import.so
+lib/chicken/11/chicken.memory.representation.import.so
+lib/chicken/11/chicken.pathname.import.so
+lib/chicken/11/chicken.platform.import.so
+lib/chicken/11/chicken.plist.import.so
+lib/chicken/11/chicken.port.import.so
+lib/chicken/11/chicken.pretty-print.import.so
+lib/chicken/11/chicken.process-context.import.so
+lib/chicken/11/chicken.process-context.posix.import.so
+lib/chicken/11/chicken.process.import.so
+lib/chicken/11/chicken.process.signal.import.so
+lib/chicken/11/chicken.random.import.so
+lib/chicken/11/chicken.read-syntax.import.so
+lib/chicken/11/chicken.repl.import.so
+lib/chicken/11/chicken.sort.import.so
+lib/chicken/11/chicken.string.import.so
+lib/chicken/11/chicken.syntax.import.so
+lib/chicken/11/chicken.tcp.import.so
+lib/chicken/11/chicken.time.import.so
+lib/chicken/11/chicken.time.posix.import.so
+lib/chicken/11/srfi-4.import.so
+lib/chicken/11/types.db
 lib/libchicken.a
 lib/libchicken.so
-lib/libchicken.so.9
+lib/libchicken.so.11
 man/man1/chicken-do.1
 man/man1/chicken-install.1
 man/man1/chicken-profile.1
Index: pkgsrc/lang/chicken5/distinfo
diff -u pkgsrc/lang/chicken5/distinfo:1.1 pkgsrc/lang/chicken5/distinfo:1.2
--- pkgsrc/lang/chicken5/distinfo:1.1   Fri Dec 21 12:35:38 2018
+++ pkgsrc/lang/chicken5/distinfo       Tue Jul  2 13:22:40 2019
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.1 2018/12/21 12:35:38 leot Exp $
+$NetBSD: distinfo,v 1.2 2019/07/02 13:22:40 ryoon Exp $
 
-SHA1 (chicken-5.0.0.tar.gz) = 59e71cdee95ecfa2f7d8713c2bf7fbff54c48d32
-RMD160 (chicken-5.0.0.tar.gz) = d0b3ea5ccf7e2d0884eff4adeb9af7b9666e21cf
-SHA512 (chicken-5.0.0.tar.gz) = 615fe9141a3564873f4190d6c373ec13438785a75440fc871c486fb8112849179821e3e1d07d2a1ee2a7f51f54742ba6cb8523b007e45baaef3d722af950ba93
-Size (chicken-5.0.0.tar.gz) = 4003976 bytes
+SHA1 (chicken-5.1.0.tar.gz) = ac5abdf82168d5d86f00a79f75f7a73dc0c717ab
+RMD160 (chicken-5.1.0.tar.gz) = e12a746e1dffd5cd2c16cbb0e33540f818879b38
+SHA512 (chicken-5.1.0.tar.gz) = 56bfe918e4c4069f15f845350bf334df7580f3b6e53c1edc4abbeafdb57cfc86cb6ce426c9b9e739ca415e830e538a76b27de16ec04643eae8d45ea82c9ed3f3
+Size (chicken-5.1.0.tar.gz) = 4071169 bytes
 SHA1 (patch-tests_runtests.sh) = c2bcee720a56cc399c6acdb1e002dbcd82ea272e



Home | Main Index | Thread Index | Old Index