<ChangeLog>
UPGRADE URGENCY: MODERATE, this release contains many non-critical fixes
and many small improvements.
* [BUGFIX] redis-cli --rdb, fixed when the server sends newlines to ping.
* [BUGFIX] redis-cli, minor fixes on connection handling, prompt.
* [BUGFIX] Slow log: don't log EXEC, just executed commands.
* [BUGFIX] On failed shutdown don't try again and again compulsively.
* [BUGFIX] Fix build on sunos without backtrace().
* [BUGFIX] UNSUBSCRIBE and PUNSUBSCRIBE: always provide a reply (see 742e580)
* [BUGFIX] Lua struct library was broken, upgraded.
* [BUGFIX] Fix a bug in srandmemberWithCountCommand() with count argument.
* [BUGFIX] Test: disable clients timeout to prevent issues on slow systems.
* [BUGFIX] Sentinel: don't advertise the promoted slave as master too early.
* [IMPROVED] Whitelist SIGUSR1, see http://redis.io/topics/signals.
* [IMPROVED] Simpler to understand redis-cli --bigkeys output.
* [IMPROVED] Test now works with tclsh > 8.5.
* [IMPROVED] Added option to turn of the Nagle algorithm in slave socket.
* [IMPROVED] Optionally use SO_KEEPALIVE to detect dead peers.
</ChangeLog>
Changes:
from ucommon 6.0.2 to 6.0.3
- fixes for older gnutls releases
from ucommon 6.0.1 to 6.0.2
- digest stream operators
- auto memory erasing keystring and keyrandom template
- common code shared for secure library
- some fixes for gnutls support
from ucommon 6.0.0 to 6.0.1
- fixes for gnutls support
- elimination of gcrypt in gnutls
from ucommon 5.5.1 to 6.0.0
- new version 6 api
- fixed string + concat operation
- made StringPager proper base class by naming conventions
- new device access mode and name checking for fsys
- fbuf refocused on process pipe and device access
- more consistent abi naming conventions
- depreciated methods removed
- access base classes now consistent with protocols
- reorg of datetime classes
- allocation and access fault handling
from ucommon 5.5.0 to 5.5.1
- regex checks also for lib, mingw support
- pedantic cleanup of mingw
- anaselli fix for applog and pipes
This release improves the overall look and feel of the program. Scrollbar
color can now be customized and a Clearlooks theme has been added. Many
bugs and some regressions were fixed. Brazilian and czsech translations
were also updated.
rather than /var/db/ports/ja-mecab-ipadic
- Revert change of pkg-descr in r310466 except Author: line since it is
description of MeCab rather than that of IPA dictonary for MeCab
- Update MASTER_SITES and WWW URL
PR: ports/175536 (based on)
Submitted by: Yasuhiro KIMURA <yasu_AT_utahime_DOT_org>
wine-gecko is the "stable" port while wine-gecko-devel is the "unstable" port
that absorbs the updates to the distfiles.
Approved by: bdrewery (mentor)
project for wrapping POSIX APIs for C++. Where possible, things are
implemented inline so that there is minimal to no cost above and beyond using
the good old C APIs.
WWW: https://github.com/rescrv/po6
PR: ports/174794
Submitted by: Gvozdikov Veniamin <g.veniamin@googlemail.com>
input bits thoroughly but are not suitable for cryptography. See
"Hash Quality," below, for details on how CityHash was tested and so on.
Functions by CityHash:
- CityHash32() returns a 32-bit hash.
- CityHash64() and similar return a 64-bit hash.
- CityHash128() and similar return a 128-bit hash and are tuned for
strings of at least a few hundred bytes. Depending on your compiler
and hardware, it's likely faster than CityHash64() on sufficiently long
strings. It's slower than necessary on shorter strings, but we expect
that case to be relatively unimportant.
- CityHashCrc128() and similar are variants of CityHash128() that depend
on _mm_crc32_u64(), an intrinsic that compiles to a CRC32 instruction
on some CPUs. However, none of the functions we provide are CRCs.
- CityHashCrc256() is a variant of CityHashCrc128() that also depends
on _mm_crc32_u64(). It returns a 256-bit hash.
All members of the CityHash family were designed with heavy reliance
on previous work by Austin Appleby, Bob Jenkins, and others.
For example, CityHash32 has many similarities with Murmur3a.
WWW: http://code.google.com/p/cityhash/
PR: ports/174793
Submitted by: Gvozdikov Veniamin <g.veniamin@googlemail.com>
Included tools:
### download-gemist
Can download a single episode from the episode URL.
### download-gemist-guide
This fetches information from a program page. You can use it download multiple
videos.
WWW: http://code.arp242.net/download-gemist
PR: ports/173567
Submitted by: Martin Tournoij <martin@arp242.net>