Next | Query returned 16 messages, browsing 11 to 20 | previous

History of commit frequency

CVS Commit History:


   2021-02-01 11:38:24 by Frederic Cambus | Files touched by this commit (5) | Package updated
Log message:
jimtcl: update to 0.80.

Jim Tcl version 0.80:
---------------------

Bugs fixed in version 0.80

    return -level 0 -code xxx now returns the correct result
    regexp - fix an issue with failed optional group
    oo - fix an issue when no class variables are given
    oo - fix super invocation with multiple inheritance levels
    tailcall - fix to avoid growing the C stack frame
    regsub -all with \A now works correctly
    scan - fix an issue with chars vs bytes in utf-8 mode
    aio - fix eventloop and eof for ssl connections
    lsearch -regexp - fix the case where the pattern begins with a dash
    lsearch -command - handle the case with too few args
    Disallow renaming a local proc with upcall to avoid inconsistent behaviour

Features and improvements added in version 0.80

    Dictionaries now preserve insertion order
    string map and string compare now support embedded nulls
    string match and other glob matches now support embedded nulls
    Variable and proc names now support embedded nulls
    Interactive mode now prints results containing embedded nulls
    Generate a build warning if system is non-Y2038 compliant
    package names added as an alias for package list
    file rootname, file dirname are now more consistent with Tcl
    aio - add Server Name Indication (SNI) ssl support
    aio - add socket pty support
    The 0d radix prefix is now supported for decimal (base 10)
    String comparison operators lt, gt, le and ge are now supported
    dict getwithdefault (and the alias dict getdef) are now supported
    Build has coverage support, and test coverage is now over 90%
    Performance improvements in a number of areas

Jim Tcl version 0.79:
---------------------

Bugs fixed in version 0.79

    aio - Fix closing stdin in bootstrap jimsh
    clock scan - Unspecified fields use the current date/time
    Fix linenoise assertion failure on Windows
    file - Improved support for trailing slashes in pathnames
    regexp, regsub - Various fixes in UTF-8 mode
    $(...) syntax now properly returns non-error codes

Features added in version 0.78

    file - Add mtimeus for microsecond resolution
    file - Add missing split subcommand
    lreplace - Implement TIP #505
    aio - Add dgram unix socket support
    aio - Add support for lock -wait
    aio copyto - Significantly improve performance
    aio tty - Allow setting echo
    signal - Add block for blocking signals with SIG_IGN
    Add built-in JSON support with the json extension
    Improve performance when indexing UTF-8 strings

Other changes

    Documentation updates to improve consistency, remove obsolete commands, add \ 
some missing commands
    exec no longer forces SIGPIPE disposition to SIG_DFL
    Update autosetup to v0.6.9 with optimised insert/delete

Jim Tcl version 0.78:
---------------------

Bugs fixed in version 0.78

    local - Fix crash when local command is deleted
    history - When creating ~/.jim_history, set permissions to 0600 for security
    exec - Fix windows exec with empty or unset env
    exec - Fix check for | and |&
    jim.c - Fix Object leak in zlib support
    signal - Restore default signal handling on interp exit
    dict - Fix [dict values] with duplicate values
    Fix ‘/’ command, divide by zero
    expr - Replace expression engine to fix a number of problems
    zlib - Various fixes
    lsort -unique - Fix case with no duplicates
    aio tempname - Fix a crash when the template is invalid
    Tcl compatibility - Error on extra characters after close brace
    eventloop - Return from callback is not an error
    oo - Fix methods for superclasses
    Various refcount and edge case fixes found by fuzz testing

Features added in version 0.78

    Add support for utf-8 wide characters
    aio - Add tty for termios settings
    aio - Add sockopt for broadcast, tcp_nodelay, etc.
    utf-8 - Update UnicodeData.txt to 9.0.0
    jimsh - Add support for jimsh -
    jimsh - Scriptable command-line completion support via tcl::autocomplete
    history - Add autocompletion support history completion <cmd>
    Add support for -commands to many commands
    Add pkg-config support - jimtcl.pc
    clock - Add -gmt option to format and scan
    tree - Allow nodes to be deleted
    defer, $jim::defer - Allow scripts to run on proc exit
    eventloop - Support sub-millisecond timer resolution
    Support lambda even if references are disabled
    Performance - Improve a number of common cases through caching
    signal, exec, wait, pid, pipe - Many improvements
    build - Support --silent-rules, and enable by default
    regexp - Implement class shorthand escapes in brackets
    linenoise (jimsh) - Add ^Z (SUSP) support
    linenoise (jismh) - Update to support multiline mode

Other changes

    signal - Remove the signal command from child interpreters
    os.wait is now wait
    aio ssl now upgrades the current channel rather than creating a new channel
    Update autosetup to v0.6.8
   2017-09-16 21:27:31 by Thomas Klausner | Files touched by this commit (372)
Log message:
Reset maintainer
   2016-10-31 02:15:12 by Kamil Rytarowski | Files touched by this commit (5)
Log message:
Backport upstream patches to fix backtrace(3) detection on NetBSD

Bump PKGREVISION to 1.
   2016-10-25 21:03:05 by Kamil Rytarowski | Files touched by this commit (3)
Log message:
Update jimtcl from 0.76 to 0.77

Local changes:
 - add test target
 - build and install optional modules (right now: oo, tree, binary,
   readline, rlprompt, mk, tclprefix, sqlite3, zlib, win32)
 - install shared library
 - simplify usage of the GitHub framework
 - use --docdir instead of the SUBST framework

Upstream changelog
==================
CHANGES SINCE VERSION 0.76

This release contains some bug fixes plus a number of additional features. A \ 
summary is below. See git for the full changelog.

Thanks to everyone who contributed to this release.

Bugs fixed in version 0.77

    exec - better handline of pipeline abnormal termination
    exec - fix append redirection on Windows
    regsub - fix substitution with trailing backslash
    expr - improved mathfunc handling and pow/**
    chained tailcalls were not always being run

Features added in version 0.77

    Add support for configure --docdir=...
    Add support for jimsh --help
    Add support for booleans in string is and expressions (true, false, on, off, \ 
yes, no)
    aio - add sync, openssl bindings, posix locking
    expr - add support for atan2, hypot and fmod
    regexp, regsub:
        Add support for \D, \W and \S
        Add partial support for \A, \Z
        Add support for all character classes: [[::blank:]], [[::xdigit::]], etc.
    Update included sqlite3 to v3.14.1
    Add $tcl_platform(engine)
    Add basic (optional) zlib support
    Add interp child interprester support
    oo:
        Add support for constructor, runs on new object creation
        Add support for unknown method
    Add Travis and AppVeyor continuous integration support
    Use pkg-config in configure to find packages if possibe

Steve Bennett (steveb@workware.net.au)

  -- http://jim.tcl.tk/fossil/doc/www/www/news/
   2015-11-03 23:50:46 by Alistair G. Crooks | Files touched by this commit (194)
Log message:
Add SHA512 digests for distfiles for lang category

Problems found with existing digests:
	Package nhc98 distfile nhc98src-1.22.tar.gz
	a8adc8f22371998ee0657bc0e01058a57d876abc [recorded]
	81975fcb5f1dda5efeaabc30ce8c6dceae55e591 [calculated]

Problems found locating distfiles:
	Package gcc-aux: missing distfile ada-bootstrap.i386.dragonfly.36A.tar.bz2
	Package gcc-aux: missing distfile ada-bootstrap.i386.freebsd.84.tar.bz2
	Package gcc-aux: missing distfile ada-bootstrap.x86_64.dragonfly.36A.tar.bz2
	Package gcc-aux: missing distfile ada-bootstrap.x86_64.freebsd.84.tar.bz2
	Package gcc-aux: missing distfile ada-bootstrap.x86_64.solaris.511.tar.bz2
	Package gcc5-aux: missing distfile ada-bootstrap.i386.dragonfly.36A.tar.bz2
	Package gcc5-aux: missing distfile ada-bootstrap.i386.freebsd.84.tar.bz2
	Package gcc5-aux: missing distfile ada-bootstrap.x86_64.dragonfly.36A.tar.bz2
	Package gcc5-aux: missing distfile ada-bootstrap.x86_64.freebsd.84.tar.bz2
	Package gcc5-aux: missing distfile ada-bootstrap.x86_64.solaris.511.tar.bz2
	Package ghc7: missing distfile ghc-7.6.3-boot-i386-unknown-freebsd.tar.xz
	Package icc11: missing distfile l_cproc_p_11.1.080.tgz
	Package jini: missing distfile jini-1_2_1_001-src.zip
	Package oo2c: missing distfile oo2c_32-2.0.11.tar.bz2
	Package openjdk7: missing distfile \ 
openjdk7/bootstrap-jdk-1.7.76-freebsd-10-amd64-20150301.tar.xz
	Package openjdk7: missing distfile \ 
openjdk7/bootstrap-jdk-1.7.76-netbsd-5-i386-20150301.tar.xz
	Package openjdk7: missing distfile \ 
openjdk7/bootstrap-jdk-1.7.76-netbsd-6-i386-20150301.tar.xz
	Package openjdk7: missing distfile \ 
openjdk7/bootstrap-jdk-1.7.76-netbsd-7-earmv6hf-20150306.tar.xz
	Package openjdk7: missing distfile \ 
openjdk7/bootstrap-jdk-1.7.76-netbsd-7-sparc64-20150301.tar.xz
	Package openjdk7: missing distfile \ 
openjdk7/bootstrap-jdk7u60-bin-dragonfly-3.8-amd64-20140719.tar.bz2
	Package openjdk8: missing distfile \ 
openjdk7/bootstrap-jdk-1.7.76-freebsd-10-amd64-20150301.tar.xz
	Package openjdk8: missing distfile \ 
openjdk7/bootstrap-jdk-1.7.76-netbsd-5-i386-20150301.tar.xz
	Package openjdk8: missing distfile \ 
openjdk7/bootstrap-jdk-1.7.76-netbsd-6-i386-20150301.tar.xz
	Package openjdk8: missing distfile \ 
openjdk7/bootstrap-jdk-1.7.76-netbsd-7-earmv6hf-20150306.tar.xz
	Package openjdk8: missing distfile \ 
openjdk7/bootstrap-jdk-1.7.76-netbsd-7-sparc64-20150301.tar.xz
	Package openjdk8: missing distfile \ 
openjdk7/bootstrap-jdk7u60-bin-dragonfly-3.8-amd64-20140719.tar.bz2
	Package oracle-jdk8: missing distfile jdk-8u60-linux-i586.tar.gz
	Package oracle-jdk8: missing distfile jdk-8u60-solaris-x64.tar.gz
	Package oracle-jre8: missing distfile jre-8u60-linux-i586.tar.gz
	Package oracle-jre8: missing distfile jre-8u60-solaris-x64.tar.gz
	Package sun-jdk6: missing distfile jdk-6u45-linux-i586.bin
	Package sun-jdk6: missing distfile jdk-6u45-solaris-i586.sh
	Package sun-jdk7: missing distfile jdk-7u72-linux-i586.tar.gz
	Package sun-jdk7: missing distfile jdk-7u72-solaris-i586.tar.gz
	Package sun-jre6: missing distfile jce_policy-6.zip
	Package sun-jre6: missing distfile jre-6u45-linux-x64.bin
	Package sun-jre6: missing distfile jre-6u45-solaris-x64.sh
	Package sun-jre7: missing distfile jre-7u72-linux-i586.tar.gz
	Package sun-jre7: missing distfile jre-7u72-solaris-i586.tar.gz

Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden).  All existing
SHA1 digests retained for now as an audit trail.
   2015-04-04 14:54:07 by Blue Rats | Files touched by this commit (4)
Log message:
Import jimtcl-0.76 as lang/jimtcl.

Jim is an opensource small-footprint implementation of the Tcl programming
language. It implements a large subset of Tcl and adds new features like
references with garbage collection, closures, built-in Object Oriented
Programming system, Functional Programming commands, first-class arrays and UTF-
8 support. All this with a binary size of about 100-200kB (depending upon
selected options).

The Jim core is very stable. Jim passes over 3000 unit tests and many Tcl
programs run unmodified. Jim is highly modular with the possiblity to configure
many components as loadable modules, or omitted entirely. A number of extensions
are included with Jim which may be built as loadable modules.

Next | Query returned 16 messages, browsing 11 to 20 | previous