Date: Fri, 12 Dec 2014 04:27:34 +0000 (UTC) From: "Sergey A. Osokin" <osa@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374568 - in head/databases/redis: . files Message-ID: <201412120427.sBC4RY3g088861@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: osa Date: Fri Dec 12 04:27:33 2014 New Revision: 374568 URL: https://svnweb.freebsd.org/changeset/ports/374568 QAT: https://qat.redports.org/buildarchive/r374568/ Log: Upgrade from 2.8.17 to 2.8.18. <ChangeLog> --[ Redis 2.8.18 ] Release date: 4 Dec 2014 # UPGRADE URGENCY: LOW for both Redis and Sentinel. This release mostly adds new features to Redis, and contains non critical fixes. * [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) </ChangeLog> Added: head/databases/redis/files/patch-deps-linenoise-Makefile (contents, props changed) Modified: head/databases/redis/Makefile head/databases/redis/distinfo head/databases/redis/files/extra-patch-src-Makefile.lua head/databases/redis/files/extra-patch-src-Makefile.luajit head/databases/redis/files/patch-deps-Makefile Modified: head/databases/redis/Makefile ============================================================================== --- head/databases/redis/Makefile Fri Dec 12 02:27:56 2014 (r374567) +++ head/databases/redis/Makefile Fri Dec 12 04:27:33 2014 (r374568) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 2.8.17 +DISTVERSION= 2.8.18 CATEGORIES= databases MASTER_SITES= http://download.redis.io/releases/ @@ -76,7 +76,7 @@ PLIST_SUB+= REDIS_USER=${USERS} \ .if ${PORT_OPTIONS:MLUAJIT} || ${PORT_OPTIONS:MLUA} post-patch: - @cd ${WRKSRC}/deps/lua/src && ${CP} lua_* strbuf.* ${WRKSRC}/src/ + @cd ${WRKSRC}/deps/lua/src && ${CP} fpconv.* lua_* strbuf.* ${WRKSRC}/src/ .endif post-build: Modified: head/databases/redis/distinfo ============================================================================== --- head/databases/redis/distinfo Fri Dec 12 02:27:56 2014 (r374567) +++ head/databases/redis/distinfo Fri Dec 12 04:27:33 2014 (r374568) @@ -1,2 +1,2 @@ -SHA256 (redis-2.8.17.tar.gz) = 53c7cc639571729fa57d7baa7f81aec1d5886f86bac9c66f6ad06dbdaee236a7 -SIZE (redis-2.8.17.tar.gz) = 1234543 +SHA256 (redis-2.8.18.tar.gz) = aa86eab586e4133728396273b671efae35dd70bdcc746e4e3f986e7600d0050d +SIZE (redis-2.8.18.tar.gz) = 1254077 Modified: head/databases/redis/files/extra-patch-src-Makefile.lua ============================================================================== --- head/databases/redis/files/extra-patch-src-Makefile.lua Fri Dec 12 02:27:56 2014 (r374567) +++ head/databases/redis/files/extra-patch-src-Makefile.lua Fri Dec 12 04:27:33 2014 (r374568) @@ -32,7 +32,7 @@ REDIS_SERVER_NAME=redis-server REDIS_SENTINEL_NAME=redis-sentinel REDIS_SERVER_OBJ=adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o ziplist.o release.o networking.o util.o object.o db.o replication.o rdb.o t_string.o t_list.o t_set.o t_zset.o t_hash.o config.o aof.o pubsub.o multi.o debug.o sort.o intset.o syncio.o migrate.o endianconv.o slowlog.o scripting.o bio.o rio.o rand.o memtest.o crc64.o bitops.o sentinel.o notify.o setproctitle.o hyperloglog.o latency.o sparkline.o -+REDIS_SERVER_OBJ+= lua_cjson.o lua_cmsgpack.o lua_struct.o strbuf.o ++REDIS_SERVER_OBJ+= lua_bit.o lua_cjson.o lua_cmsgpack.o lua_struct.o strbuf.o fpconv.o REDIS_CLI_NAME=redis-cli REDIS_CLI_OBJ=anet.o sds.o adlist.o redis-cli.o zmalloc.o release.o anet.o ae.o crc64.o REDIS_BENCHMARK_NAME=redis-benchmark Modified: head/databases/redis/files/extra-patch-src-Makefile.luajit ============================================================================== --- head/databases/redis/files/extra-patch-src-Makefile.luajit Fri Dec 12 02:27:56 2014 (r374567) +++ head/databases/redis/files/extra-patch-src-Makefile.luajit Fri Dec 12 04:27:33 2014 (r374568) @@ -32,7 +32,7 @@ REDIS_SERVER_NAME=redis-server REDIS_SENTINEL_NAME=redis-sentinel REDIS_SERVER_OBJ=adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o ziplist.o release.o networking.o util.o object.o db.o replication.o rdb.o t_string.o t_list.o t_set.o t_zset.o t_hash.o config.o aof.o pubsub.o multi.o debug.o sort.o intset.o syncio.o migrate.o endianconv.o slowlog.o scripting.o bio.o rio.o rand.o memtest.o crc64.o bitops.o sentinel.o notify.o setproctitle.o hyperloglog.o latency.o sparkline.o -+REDIS_SERVER_OBJ+= lua_cjson.o lua_cmsgpack.o lua_struct.o strbuf.o ++REDIS_SERVER_OBJ+= lua_bit.o lua_cjson.o lua_cmsgpack.o lua_struct.o strbuf.o fpconv.o REDIS_CLI_NAME=redis-cli REDIS_CLI_OBJ=anet.o sds.o adlist.o redis-cli.o zmalloc.o release.o anet.o ae.o crc64.o REDIS_BENCHMARK_NAME=redis-benchmark Modified: head/databases/redis/files/patch-deps-Makefile ============================================================================== --- head/databases/redis/files/patch-deps-Makefile Fri Dec 12 02:27:56 2014 (r374567) +++ head/databases/redis/files/patch-deps-Makefile Fri Dec 12 04:27:33 2014 (r374568) @@ -4,8 +4,8 @@ LUA_CFLAGS= -D__C99FEATURES__=1 endif --LUA_CFLAGS+= -O2 -Wall -DLUA_ANSI $(CFLAGS) -+LUA_CFLAGS+= -Wall -DLUA_ANSI $(CFLAGS) +-LUA_CFLAGS+= -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL $(CFLAGS) ++LUA_CFLAGS+= -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL $(CFLAGS) LUA_LDFLAGS+= $(LDFLAGS) # lua's Makefile defines AR="ar rcu", which is unusual, and makes it more # challenging to cross-compile lua (and redis). These defines make it easier Added: head/databases/redis/files/patch-deps-linenoise-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/redis/files/patch-deps-linenoise-Makefile Fri Dec 12 04:27:33 2014 (r374568) @@ -0,0 +1,15 @@ +--- deps/linenoise/Makefile.orig 2014-12-12 07:06:18.000000000 +0300 ++++ deps/linenoise/Makefile 2014-12-12 07:06:36.000000000 +0300 +@@ -1,10 +1,10 @@ + STD= + WARN= -Wall +-OPT= -Os ++#OPT= -Os + + R_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) + R_LDFLAGS= $(LDFLAGS) +-DEBUG= -g ++#DEBUG= -g + + R_CC=$(CC) $(R_CFLAGS) + R_LD=$(CC) $(R_LDFLAGS)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412120427.sBC4RY3g088861>