Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 21 Aug 2013 18:22:32 +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: r325164 - in head/databases/redis: . files
Message-ID:  <201308211822.r7LIMWsp006379@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: osa
Date: Wed Aug 21 18:22:31 2013
New Revision: 325164
URL: http://svnweb.freebsd.org/changeset/ports/325164

Log:
  Upgrade from 2.6.14 to 2.6.15.
  Add support for lang/lua, disabled by default.
  
  <ChangeLog>
  
  UPGRADE URGENCY: MODERATE, upgrade ASAP only if you experience issues related to
                   the expired keys collection algorithm, or if you use the
                   ZUNIONSTORE command.
  
  * [FIX] Improved expired keys collection algorithm. Even under heavy load keys
          to be expired can't accumulate because of lack of CPU time.
  * [FIX] Fixed Issue #1240, ZUNIONSTORE could lead to wrong result.
  * [NEW] redis-benchmark improvements.
  * [NEW] dict.c API wrong usage detection.
  
  WARNING: redis-benchmark released with 2.6.15 features non backward compatible
           change in the way the random arguments are specified, use the --help
           option for more information.
  
  </ChangeLog>

Added:
  head/databases/redis/files/extra-patch-src-Makefile.lua
     - copied, changed from r322913, head/databases/redis/files/extra-patch-src-Makefile
  head/databases/redis/files/extra-patch-src-Makefile.luajit
     - copied unchanged from r322913, head/databases/redis/files/extra-patch-src-Makefile
Deleted:
  head/databases/redis/files/extra-patch-src-Makefile
Modified:
  head/databases/redis/Makefile
  head/databases/redis/distinfo

Modified: head/databases/redis/Makefile
==============================================================================
--- head/databases/redis/Makefile	Wed Aug 21 17:42:57 2013	(r325163)
+++ head/databases/redis/Makefile	Wed Aug 21 18:22:31 2013	(r325164)
@@ -2,9 +2,9 @@
 # $FreeBSD$
 
 PORTNAME=	redis
-DISTVERSION=	2.6.14
+DISTVERSION=	2.6.15
 CATEGORIES=	databases
-MASTER_SITES=	GOOGLE_CODE
+MASTER_SITES=	http://download.redis.io/releases/
 
 MAINTAINER=	osa@FreeBSD.org
 COMMENT=	A persistent key-value database with built-in net interface
@@ -13,15 +13,26 @@ LICENSE=	BSD
 
 LIB_DEPENDS=	execinfo:${PORTSDIR}/devel/libexecinfo
 
-OPTIONS_DEFINE=	LUAJIT TESTS
+OPTIONS_DEFINE=	TESTS
+OPTIONS_RADIO=	EXTLUA
+OPTIONS_RADIO_EXTLUA=	LUA LUAJIT
+
+LUA_DESC=	Use lang/lua instead of builtin lua
 LUAJIT_DESC=	Use lang/luajit instead of builtin lua
 TESTS_DESC=	Install lang/tcl for redis unit tests
 
 .include <bsd.port.options.mk>
 
+.if ${PORT_OPTIONS:MLUA}
+USE_LUA?=	5.1
+EXTRA_PATCHES+=	${PATCHDIR}/extra-patch-src-Makefile.lua
+CFLAGS+=	-fPIC
+LDFLAGS+=	-Wl,-E
+.endif
+
 .if ${PORT_OPTIONS:MLUAJIT}
 LIB_DEPENDS+=	luajit-5.1:${PORTSDIR}/lang/luajit
-EXTRA_PATCHES+=	${PATCHDIR}/extra-patch-src-Makefile
+EXTRA_PATCHES+=	${PATCHDIR}/extra-patch-src-Makefile.luajit
 CFLAGS+=	-fPIC
 LDFLAGS+=	-Wl,-E
 .endif
@@ -63,7 +74,7 @@ PLIST_SUB+=	REDIS_USER=${USERS} \
 	REDIS_DBDIR=${REDIS_DBDIR} \
 	REDIS_RUNDIR=${REDIS_RUNDIR}
 
-.if ${PORT_OPTIONS:MLUAJIT}
+.if ${PORT_OPTIONS:MLUAJIT} || ${PORT_OPTIONS:MLUA}
 post-patch:
 	@cd ${WRKSRC}/deps/lua/src && ${CP} lua_* strbuf.* ${WRKSRC}/src/
 .endif

Modified: head/databases/redis/distinfo
==============================================================================
--- head/databases/redis/distinfo	Wed Aug 21 17:42:57 2013	(r325163)
+++ head/databases/redis/distinfo	Wed Aug 21 18:22:31 2013	(r325164)
@@ -1,2 +1,2 @@
-SHA256 (redis-2.6.14.tar.gz) = fdf61c693e5c4908b4bb44c428d4a2b7568f05566c144c58fdf19c5cb12a9caf
-SIZE (redis-2.6.14.tar.gz) = 995036
+SHA256 (redis-2.6.15.tar.gz) = b0105c6ec526d40e90a0a0bc9d070a5602d839b930776b8ecaeb9fa32493e3bc
+SIZE (redis-2.6.15.tar.gz) = 998865

Copied and modified: head/databases/redis/files/extra-patch-src-Makefile.lua (from r322913, head/databases/redis/files/extra-patch-src-Makefile)
==============================================================================
--- head/databases/redis/files/extra-patch-src-Makefile	Sat Jul 13 11:53:07 2013	(r322913, copy source)
+++ head/databases/redis/files/extra-patch-src-Makefile.lua	Wed Aug 21 18:22:31 2013	(r325164)
@@ -22,8 +22,8 @@
    FINAL_LIBS+= ../deps/jemalloc/lib/libjemalloc.a -ldl
  endif
  
-+FINAL_CFLAGS+= -I${PREFIX}/include/luajit-2.0
-+FINAL_LIBS+= -L${PREFIX}/lib -lluajit-5.1
++FINAL_CFLAGS+= -I${PREFIX}/include/lua51
++FINAL_LIBS+= -L${PREFIX}/lib -llua-5.1
 +
  REDIS_CC=$(QUIET_CC)$(CC) $(FINAL_CFLAGS)
  REDIS_LD=$(QUIET_LINK)$(CC) $(FINAL_LDFLAGS)

Copied: head/databases/redis/files/extra-patch-src-Makefile.luajit (from r322913, head/databases/redis/files/extra-patch-src-Makefile)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/redis/files/extra-patch-src-Makefile.luajit	Wed Aug 21 18:22:31 2013	(r325164, copy of r322913, head/databases/redis/files/extra-patch-src-Makefile)
@@ -0,0 +1,47 @@
+--- src/Makefile.orig	2012-12-25 23:11:28.000000000 +0400
++++ src/Makefile	2012-12-25 23:13:53.000000000 +0400
+@@ -15,7 +15,7 @@
+ release_hdr := $(shell sh -c './mkreleasehdr.sh')
+ uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
+ OPTIMIZATION?=-O2
+-DEPENDENCY_TARGETS=hiredis linenoise lua
++DEPENDENCY_TARGETS=hiredis linenoise
+ 
+ # Default settings
+ STD= -std=c99 -pedantic
+@@ -61,7 +61,7 @@
+ endif
+ 
+ # Include paths to dependencies
+-FINAL_CFLAGS+= -I../deps/hiredis -I../deps/linenoise -I../deps/lua/src
++FINAL_CFLAGS+= -I../deps/hiredis -I../deps/linenoise
+ 
+ ifeq ($(MALLOC),tcmalloc)
+   FINAL_CFLAGS+= -DUSE_TCMALLOC
+@@ -79,6 +79,9 @@
+   FINAL_LIBS+= ../deps/jemalloc/lib/libjemalloc.a -ldl
+ endif
+ 
++FINAL_CFLAGS+= -I${PREFIX}/include/luajit-2.0
++FINAL_LIBS+= -L${PREFIX}/lib -lluajit-5.1
++
+ REDIS_CC=$(QUIET_CC)$(CC) $(FINAL_CFLAGS)
+ REDIS_LD=$(QUIET_LINK)$(CC) $(FINAL_LDFLAGS)
+ REDIS_INSTALL=$(QUIET_INSTALL)$(INSTALL)
+@@ -103,6 +106,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
++REDIS_SERVER_OBJ+= lua_cjson.o lua_cmsgpack.o lua_struct.o strbuf.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
+ REDIS_BENCHMARK_NAME= redis-benchmark
+@@ -157,7 +161,7 @@
+ 
+ # redis-server
+ $(REDIS_SERVER_NAME): $(REDIS_SERVER_OBJ)
+-	$(REDIS_LD) -o $@ $^ ../deps/hiredis/libhiredis.a ../deps/lua/src/liblua.a $(FINAL_LIBS)
++	$(REDIS_LD) -o $@ $^ ../deps/hiredis/libhiredis.a $(FINAL_LIBS)
+ 
+ # redis-sentinel
+ $(REDIS_SENTINEL_NAME): $(REDIS_SERVER_NAME)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308211822.r7LIMWsp006379>