Bugfix update to redis-2.8.5

This commit is contained in:
dcoppa 2014-02-04 12:20:46 +00:00
parent 7309d7f457
commit 30b154a04d
5 changed files with 19 additions and 19 deletions

View File

@ -1,7 +1,7 @@
# $OpenBSD: Makefile,v 1.61 2014/01/15 07:08:13 dcoppa Exp $
# $OpenBSD: Makefile,v 1.62 2014/02/04 12:20:46 dcoppa Exp $
COMMENT = persistent key-value database
DISTNAME = redis-2.8.4
DISTNAME = redis-2.8.5
CATEGORIES = databases
HOMEPAGE = http://redis.io/

View File

@ -1,2 +1,2 @@
SHA256 (redis-2.8.4.tar.gz) = a2YCMhU2QBuLRqoF7FCRQVBraJtCBnVoX/4UeuCMDIY=
SIZE (redis-2.8.4.tar.gz) = 1048914
SHA256 (redis-2.8.5.tar.gz) = J0G/Zwk+OOwjSU8IgnlBYPAenzSjeaLd+Ci2QmABXTs=
SIZE (redis-2.8.5.tar.gz) = 1050480

View File

@ -1,6 +1,6 @@
$OpenBSD: patch-redis_conf,v 1.10 2014/01/15 07:08:13 dcoppa Exp $
--- redis.conf.orig Mon Jan 13 17:09:58 2014
+++ redis.conf Tue Jan 14 17:07:32 2014
$OpenBSD: patch-redis_conf,v 1.11 2014/02/04 12:20:46 dcoppa Exp $
--- redis.conf.orig Tue Feb 4 11:17:21 2014
+++ redis.conf Tue Feb 4 13:06:36 2014
@@ -33,12 +33,13 @@
################################ GENERAL #####################################
@ -20,7 +20,7 @@ $OpenBSD: patch-redis_conf,v 1.10 2014/01/15 07:08:13 dcoppa Exp $
# Accept connections on the specified port, default is 6379.
# If port 0 is specified Redis will not listen on a TCP socket.
@@ -52,7 +53,7 @@ port 6379
@@ -61,7 +62,7 @@ tcp-backlog 511
# Examples:
#
# bind 192.168.1.100 10.0.0.1
@ -29,7 +29,7 @@ $OpenBSD: patch-redis_conf,v 1.10 2014/01/15 07:08:13 dcoppa Exp $
# Specify the path for the Unix socket that will be used to listen for
# incoming connections. There is no default, so Redis will not listen
@@ -91,17 +92,17 @@ loglevel notice
@@ -100,17 +101,17 @@ 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
@ -51,7 +51,7 @@ $OpenBSD: patch-redis_conf,v 1.10 2014/01/15 07:08:13 dcoppa Exp $
# Set the number of databases. The default database is DB 0, you can select
# a different one on a per-connection basis using SELECT <dbid> where
@@ -175,7 +176,7 @@ dbfilename dump.rdb
@@ -184,7 +185,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.
@ -60,7 +60,7 @@ $OpenBSD: patch-redis_conf,v 1.10 2014/01/15 07:08:13 dcoppa Exp $
################################# REPLICATION #################################
@@ -327,7 +328,7 @@ slave-priority 100
@@ -336,7 +337,7 @@ slave-priority 100
# 150k passwords per second against a good box. This means that you should
# use a very strong password otherwise it will be very easy to break.
#

View File

@ -1,10 +1,10 @@
$OpenBSD: patch-src_config_c,v 1.1 2014/01/15 07:08:13 dcoppa Exp $
$OpenBSD: patch-src_config_c,v 1.2 2014/02/04 12:20:46 dcoppa Exp $
On OpenBSD, time_t is long long
--- src/config.c.orig Wed Jan 15 07:34:26 2014
+++ src/config.c Wed Jan 15 07:36:32 2014
@@ -1412,8 +1412,8 @@ void rewriteConfigSaveOption(struct rewriteConfigState
--- src/config.c.orig Tue Feb 4 11:17:21 2014
+++ src/config.c Tue Feb 4 13:06:36 2014
@@ -1418,8 +1418,8 @@ void rewriteConfigSaveOption(struct rewriteConfigState
* config line with "save" will be detected as orphaned and deleted,
* resulting into no RDB persistence as expected. */
for (j = 0; j < server.saveparamslen; j++) {

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-src_redis_h,v 1.1 2013/11/29 08:32:24 dcoppa Exp $
--- src/redis.h.orig Wed Nov 27 15:18:39 2013
+++ src/redis.h Wed Nov 27 15:19:12 2013
@@ -96,7 +96,7 @@
$OpenBSD: patch-src_redis_h,v 1.2 2014/02/04 12:20:46 dcoppa Exp $
--- src/redis.h.orig Tue Feb 4 11:17:21 2014
+++ src/redis.h Tue Feb 4 13:06:37 2014
@@ -97,7 +97,7 @@
#define REDIS_DEFAULT_REPL_BACKLOG_TIME_LIMIT (60*60) /* 1 hour */
#define REDIS_REPL_BACKLOG_MIN_SIZE (1024*16) /* 16k */
#define REDIS_BGSAVE_RETRY_DELAY 5 /* Wait a few secs before trying again. */