diff options
author | fhajny <fhajny@pkgsrc.org> | 2014-12-10 13:36:54 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2014-12-10 13:36:54 +0000 |
commit | 785dad9dcce51d2d20ca59e8a3f38c5b80c38d1e (patch) | |
tree | 846061b1b0fd1a8bfc6116c07f66ceaaad8b3115 /databases | |
parent | 95c9f16fc8e61a550a8150627963b3a95f5eea41 (diff) | |
download | pkgsrc-785dad9dcce51d2d20ca59e8a3f38c5b80c38d1e.tar.gz |
Update redis to 2.8.18.
* [FIX] Linenoise updated to be more VT100 compatible. (Salvatore Sanfilippo)
* [FIX] A number of typos fixed inside comments. (Various authors)
* [FIX] redis-cli no longer quits after long timeouts. (Matt Stancliff)
* [FIX] Test framework improved to detect never terminating scripts, cleanup
instances on crashes. (Salvatore Sanfilippo)
* [FIX] PFCOUNT can be used on slaves now. (Salvatore Sanfilippo)
* [FIX] ZSCAN no longer report very small scores as 0. (Matt Stancliff,
Michael Grunder, Salvatore Sanfilippo)
* [FIX] Don't show the ASCII logo if syslog is enabled. Redis is now
an Enterprise Grade product. (Salvatore Sanfilippo)
* [NEW] EXPERIMENTAL: Diskless replication, for more info check the doc at
http://redis.io/topics/replication. (Salvatore Sanfilippo).
* [NEW] Transparent Huge Pages detection and reporting in logs and
LATENCY DOCTOR output. (Salvatore Sanfilippo)
* [NEW] Many Lua scripting enhancements: Bitops API, cjson upgrade and tests,
cmsgpack upgrade. (Matt Stancliff)
* [NEW] Total and instantaneous Network bandwidth tracking in INFO.
* [NEW] DEBUG POPULATE two args form implemented (old form still works).
The second argument is the key prefix. Default is "key:" (Salvatore
Sanfilippo)
* [NEW] Check that tcp-backlog is matched by /proc/sys/net/core/somaxconn, and
warn about it if not. (Salvatore Sanfilippo)
Diffstat (limited to 'databases')
-rw-r--r-- | databases/redis/Makefile | 4 | ||||
-rw-r--r-- | databases/redis/distinfo | 10 | ||||
-rw-r--r-- | databases/redis/patches/patch-ac | 14 |
3 files changed, 14 insertions, 14 deletions
diff --git a/databases/redis/Makefile b/databases/redis/Makefile index 0603cdf56ef..5c8d79357d8 100644 --- a/databases/redis/Makefile +++ b/databases/redis/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2014/10/01 14:11:51 fhajny Exp $ +# $NetBSD: Makefile,v 1.11 2014/12/10 13:36:54 fhajny Exp $ -DISTNAME= redis-2.8.17 +DISTNAME= redis-2.8.18 CATEGORIES= databases MASTER_SITES= http://download.redis.io/releases/ diff --git a/databases/redis/distinfo b/databases/redis/distinfo index 502ff6690fb..c335bff2770 100644 --- a/databases/redis/distinfo +++ b/databases/redis/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.10 2014/10/01 14:11:51 fhajny Exp $ +$NetBSD: distinfo,v 1.11 2014/12/10 13:36:54 fhajny Exp $ -SHA1 (redis-2.8.17.tar.gz) = 913479f9d2a283bfaadd1444e17e7bab560e5d1e -RMD160 (redis-2.8.17.tar.gz) = fe5fcae795ccdde552707c0286124c8903d4cec0 -Size (redis-2.8.17.tar.gz) = 1234543 bytes +SHA1 (redis-2.8.18.tar.gz) = 129629262fea2bc60daa542f52457e65e6aa7fd5 +RMD160 (redis-2.8.18.tar.gz) = f46713539b0cb0fffff1e897fa7c37361da9e6da +Size (redis-2.8.18.tar.gz) = 1254077 bytes SHA1 (patch-ab) = e8c66139433112ca88ba90acd39ed7e4d9c45b2c -SHA1 (patch-ac) = e15bbc17138a0527c910deac7962b91db90d7358 +SHA1 (patch-ac) = a8a8affc07eac53f7056425070041089ab974b89 SHA1 (patch-deps_hiredis_fmacros.h) = 1bf148708b605ec51bb0f675d779394e32767dbd SHA1 (patch-src_object.c) = 3ada430fcdcd8524c2e53553691b1c5bffd2f3ff diff --git a/databases/redis/patches/patch-ac b/databases/redis/patches/patch-ac index b7f766af01a..406e00647e1 100644 --- a/databases/redis/patches/patch-ac +++ b/databases/redis/patches/patch-ac @@ -1,9 +1,9 @@ -$NetBSD: patch-ac,v 1.2 2014/01/02 17:26:19 fhajny Exp $ +$NetBSD: patch-ac,v 1.3 2014/12/10 13:36:54 fhajny Exp $ Sane defaults for the config file. ---- redis.conf.orig 2013-12-11 14:31:57.000000000 +0000 +--- redis.conf.orig 2014-12-04 10:36:52.000000000 +0000 +++ redis.conf -@@ -14,11 +14,11 @@ +@@ -34,11 +34,11 @@ # By default Redis does not run as a daemon. Use 'yes' if you need it. # Note that Redis will write a pid file in /var/run/redis.pid when daemonized. @@ -17,7 +17,7 @@ Sane defaults for the config file. # Accept connections on the specified port, default is 6379. # If port 0 is specified Redis will not listen on a TCP socket. -@@ -71,7 +71,7 @@ loglevel notice +@@ -100,7 +100,7 @@ loglevel notice # Specify the log file name. Also the empty string can be used to force # Redis to log on the standard output. Note that if you use standard # output for logging but daemonize, logs will be sent to /dev/null @@ -26,12 +26,12 @@ Sane defaults for the config file. # To enable logging to the system logger, just set 'syslog-enabled' to yes, # and optionally update the other syslog parameters to suit your needs. -@@ -155,7 +155,7 @@ dbfilename dump.rdb +@@ -184,7 +184,7 @@ dbfilename dump.rdb # The Append Only File will also be created inside this directory. - # + # # Note that you must specify a directory here, not a file name. -dir ./ -+dir @REDIS_DATADIR@ ++dir @REDIS_DATADIR@ ################################# REPLICATION ################################# |