From koobs.freebsd@gmail.com  Thu Apr 25 05:30:20 2013
Return-Path: <koobs.freebsd@gmail.com>
Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115])
	by hub.freebsd.org (Postfix) with ESMTP id 1B11E333;
	Thu, 25 Apr 2013 05:30:20 +0000 (UTC)
	(envelope-from koobs.freebsd@gmail.com)
Received: from mail-pa0-f47.google.com (mail-pa0-f47.google.com [209.85.220.47])
	by mx1.freebsd.org (Postfix) with ESMTP id E94CE1F9F;
	Thu, 25 Apr 2013 05:30:19 +0000 (UTC)
Received: by mail-pa0-f47.google.com with SMTP id bj1so1643605pad.20
        for <multiple recipients>; Wed, 24 Apr 2013 22:30:19 -0700 (PDT)
Received: from freebsd-RELENG_9-amd64.elysium (ppp59-167-128-11.static.internode.on.net. [59.167.128.11])
        by mx.google.com with ESMTPSA id z8sm5850726pbt.23.2013.04.24.22.30.16
        for <multiple recipients>
        (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128);
        Wed, 24 Apr 2013 22:30:18 -0700 (PDT)
Received: by freebsd-RELENG_9-amd64.elysium (Postfix, from userid 1001)
	id 7963739FFA; Thu, 25 Apr 2013 15:30:13 +1000 (EST)
Message-Id: <20130425053013.7963739FFA@freebsd-RELENG_9-amd64.elysium>
Date: Thu, 25 Apr 2013 15:30:13 +1000 (EST)
From: Kubilay Kocak <koobs.freebsd@gmail.com>
To: FreeBSD-gnats-submit@freebsd.org
Cc: osa@FreeBSD.org
Subject: [PATCH] databases/redis: Update to 2.6.12
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         178124
>Category:       ports
>Synopsis:       [PATCH] databases/redis: Update to 2.6.12
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    osa
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Apr 25 05:40:00 UTC 2013
>Closed-Date:    Sat May 04 07:27:52 UTC 2013
>Last-Modified:  Sat May 04 07:27:52 UTC 2013
>Originator:     Kubilay Kocak
>Release:        FreeBSD 9.1-STABLE amd64
>Organization:
>Environment:
System: FreeBSD freebsd-RELENG_9-amd64.elysium 9.1-STABLE FreeBSD 9.1-STABLE #0 r249542: Sun Apr 21 21:01:52 EST
>Description:
- Update to 2.6.12
- Replace test: target with regression-test:

<ChangeLog>
UPGRADE URGENCY: MODERATE, nothing very critical but a few non trivial bugs.

* [BUGFIX]   redis-cli --bigkeys: don't crash with empty DB.
* [BUGFIX]   stop-writes-on-bgsave-error now works in redis.conf
* [BUGFIX]   Don't crash at startup if RDB is there but can't be opened.
* [BUGFIX]   Initial value for master_link_down_since_seconds is now huge.
* [BUGFIX]   Allow SELECT while loading the DB.
* [BUGFIX]   Don't replicate/AOF an empty MULTI/EXEC if the transaction
             is empty or containing just read-only commands.
* [BUGFIX]   EXPIRE should not be able to resurrect keys (see issue #1026).
* [IMPROVED] Extended SET back ported from Redis 2.8 / unstable
             See http://redis.io/commands/set for more information.
* [IMPROVED] Test suite improved.

https://raw.github.com/antirez/redis/2.6/00-RELEASENOTES
</Changelog>

<QA>
portlint: WARN: Makefile: LIB_DEPENDS don't specify the ABI version number
porttest: OK (GCC & Clang)
testport: OK (poudriere, all versions/archs)
unittest: \o/ All tests passed without errors!
</QA>

Port maintainer (osa@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.99_7 (mode: change, diff: ports)
>How-To-Repeat:
>Fix:

--- redis-2.6.12.patch begins here ---
diff -ruN /usr/ports/databases/redis/Makefile ./Makefile
--- /usr/ports/databases/redis/Makefile	2013-03-13 05:31:48.000000000 +1100
+++ ./Makefile	2013-04-25 14:13:09.601964054 +1000
@@ -1,8 +1,8 @@
 # Created by: Sergey Skvortsov <skv@protey.ru>
-# $FreeBSD: databases/redis/Makefile 313995 2013-03-12 18:31:48Z osa $
+# $FreeBSD: head/databases/redis/Makefile 313995 2013-03-12 18:31:48Z osa $
 
 PORTNAME=	redis
-DISTVERSION=	2.6.11
+DISTVERSION=	2.6.12
 CATEGORIES=	databases
 MASTER_SITES=	GOOGLE_CODE
 
@@ -82,9 +82,7 @@
 	[ -d ${d} ] || ${MKDIR} ${d} && ${CHOWN} ${USERS}:${GROUPS} ${d}
 .endfor
 
-test: build
+regression-test: build
 	@cd ${WRKSRC} && ${TCLSH} tests/test_helper.tcl
 
-regression-test: test
-
 .include <bsd.port.mk>
diff -ruN /usr/ports/databases/redis/distinfo ./distinfo
--- /usr/ports/databases/redis/distinfo	2013-03-13 05:31:48.000000000 +1100
+++ ./distinfo	2013-03-30 03:58:30.032554340 +1100
@@ -1,2 +1,2 @@
-SHA256 (redis-2.6.11.tar.gz) = b0644669849a130659cf8dd48965cf116e4fe64a5bb86a239ea078d7464b6968
-SIZE (redis-2.6.11.tar.gz) = 993744
+SHA256 (redis-2.6.12.tar.gz) = 268582de99798d5069c2a0cad80632d7251ddede8f1b7133f3bc3d05c60b4c12
+SIZE (redis-2.6.12.tar.gz) = 997227
diff -ruN /usr/ports/databases/redis/files/redis.in ./files/redis.in
--- /usr/ports/databases/redis/files/redis.in	2012-10-30 03:44:40.000000000 +1100
+++ ./files/redis.in	2013-01-19 12:28:01.542291634 +1100
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $FreeBSD: databases/redis/files/redis.in 306622 2012-10-29 16:44:40Z osa $
+# $FreeBSD: head/databases/redis/files/redis.in 306622 2012-10-29 16:44:40Z osa $
 #
 
 # PROVIDE: redis
--- redis-2.6.12.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->osa 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Thu Apr 25 05:40:19 UTC 2013 
Responsible-Changed-Why:  
Over to maintainer (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=178124 

From: Kubilay Kocak <koobs.freebsd@gmail.com>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/178124: [PATCH] databases/redis: Update to 2.6.12
Date: Wed, 01 May 2013 00:23:06 +1000

 This is a multi-part message in MIME format.
 --------------030600060706090407070205
 Content-Type: text/plain; charset=ISO-8859-1
 Content-Transfer-Encoding: 7bit
 
 Updated patch for freshly released 2.6.13 stable version:
 
 ---------------------------------------
 databases/redis: Update to 2.6.13
 
 - Replace test: target with regression-test:
 
 <ChangeLog>
 
 UPGRADE URGENCY: MODERATE
 
 Nothing very critical but upgrading is suggested if you experienced:
 
    1) Strange issues with Lua scripting.
    2) Not reconfigured reappearing master using Sentinel.
    3) Server continuously trying to save on save error.
 
    This version of Redis may also help with AOF and slow / busy
    disks and latency issues.
 
 * [FIX] Throttle BGSAVE attempt on saving error.
 * [FIX] redis-cli: raise error on bad command line switch.
 * [FIX] Redis/Jemalloc Gitignore were too aggressive.
 * [FIX] Test: fix RDB test checking file permissions.
 * [FIX] Sentinel: always redirect on master->slave transition.
 * [FIX] Lua updated to version 5.1.5. Fixes rare scripting issues.
 * [NEW] AOF: improved latency figures with slow/busy disks.
 * [NEW] Sentinel: turn old master into a slave when it comes back.
 * [NEW] More explicit panic message on out of memory.
 * [NEW] redis-cli: --latency-history mode implemented.
 
 Full Changelog: https://raw.github.com/antirez/redis/2.6/00-RELEASENOTES
 
 </ChangeLog>
 ---------------------------------------
 
 <QA>
 
 portlint: WARN: LIB_DEPENDS don't specify the ABI version number
 porttest: OK (stable/9 amd64 clang)
 testport: OK (poudriere, all versions/archs)
 unittest: \o/ All tests passed without errors!
 
 </QA>
 
 --------------030600060706090407070205
 Content-Type: text/plain; charset=windows-1252;
  name="25-redis-2.6.13.patch"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: attachment;
  filename="25-redis-2.6.13.patch"
 
 Index: Makefile
 ===================================================================
 --- Makefile	(revision 316930)
 +++ Makefile	(working copy)
 @@ -2,7 +2,7 @@
  # $FreeBSD$
  
  PORTNAME=	redis
 -DISTVERSION=	2.6.11
 +DISTVERSION=	2.6.13
  CATEGORIES=	databases
  MASTER_SITES=	GOOGLE_CODE
  
 @@ -82,9 +82,7 @@
  	[ -d ${d} ] || ${MKDIR} ${d} && ${CHOWN} ${USERS}:${GROUPS} ${d}
  .endfor
  
 -test: build
 +regression-test: build
  	@cd ${WRKSRC} && ${TCLSH} tests/test_helper.tcl
  
 -regression-test: test
 -
  .include <bsd.port.mk>
 Index: distinfo
 ===================================================================
 --- distinfo	(revision 316930)
 +++ distinfo	(working copy)
 @@ -1,2 +1,2 @@
 -SHA256 (redis-2.6.11.tar.gz) = b0644669849a130659cf8dd48965cf116e4fe64a5bb86a239ea078d7464b6968
 -SIZE (redis-2.6.11.tar.gz) = 993744
 +SHA256 (redis-2.6.13.tar.gz) = 3b9439636c58ca06bee538a0f7298e02a33fcf98b8fa845c0b0cf8567751e948
 +SIZE (redis-2.6.13.tar.gz) = 994331
 
 --------------030600060706090407070205--

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/178124: commit references a PR
Date: Fri,  3 May 2013 17:38:33 +0000 (UTC)

 Author: osa
 Date: Fri May  3 17:38:24 2013
 New Revision: 317224
 URL: http://svnweb.freebsd.org/changeset/ports/317224
 
 Log:
   Update from 2.6.11 to 2.6.13.
   
   PR:	178124
   
   <ChangeLog>
   
   [ Redis 2.6.13 ]
   
   UPGRADE URGENCY: MODERATE, nothing very critical but upgrading
   is suggested if you experienced:
   
   1) Strange issues with Lua scripting.
   2) Not reconfigured reappearing master using Sentinel.
   3) Server continusly trying to save on save error.
   
   This version of Redis may also help with AOF and slow / busy
   disks and latency issues.
   
   * [FIX] Throttle BGSAVE attempt on saving error.
   * [FIX] redis-cli: raise error on bad command line switch.
   * [FIX] Redis/Jemalloc Gitignore were too aggressive.
   * [FIX] Test: fix RDB test checking file permissions.
   * [FIX] Sentinel: always redirect on master->slave transition.
   * [FIX] Lua updated to version 5.1.5. Fixes rare scripting issues.
   * [NEW] AOF: improved latency figures with slow/busy disks.
   * [NEW] Sentinel: turn old master into a slave when it comes back.
   * [NEW] More explicit panic message on out of memory.
   * [NEW] redis-cli: --latency-history mode implemented.
   
   [ Redis 2.6.12 ]
   
   UPGRADE URGENCY: MODERATE, nothing very critical but a few non trivial bugs.
   
   * [BUGFIX]   redis-cli --bigkeys: don't crash with empty DB.
   * [BUGFIX]   stop-writes-on-bgsave-error now works in redis.conf
   * [BUGFIX]   Don't crash at startup if RDB is there but can't be opened.
   * [BUGFIX]   Initial value for master_link_down_since_seconds is now huge.
   * [BUGFIX]   Allow SELECT while loading the DB.
   * [BUGFIX]   Don't replicate/AOF an empty MULTI/EXEC if the transaction
                is empty or containing just read-only commands.
   * [BUGFIX]   EXPIRE should not be able to resurrect keys (see issue #1026).
   * [IMPROVED] Extended SET back ported from Redis 2.8 / unstable
                See http://redis.io/commands/set for more information.
   * [IMPROVED] Test suite improved.
   
   </ChangeLog>
 
 Modified:
   head/databases/redis-devel/Makefile
   head/databases/redis-devel/distinfo
   head/databases/redis/Makefile
   head/databases/redis/distinfo
 
 Modified: head/databases/redis-devel/Makefile
 ==============================================================================
 --- head/databases/redis-devel/Makefile	Fri May  3 17:37:13 2013	(r317223)
 +++ head/databases/redis-devel/Makefile	Fri May  3 17:38:24 2013	(r317224)
 @@ -2,7 +2,7 @@
  # $FreeBSD$
  
  PORTNAME=	redis
 -DISTVERSION=	2.6.11
 +DISTVERSION=	2.6.13
  CATEGORIES=	databases
  MASTER_SITES=	GOOGLE_CODE
  PKGNAMESUFFIX=	-devel
 @@ -83,9 +83,7 @@ post-install:
  	[ -d ${d} ] || ${MKDIR} ${d} && ${CHOWN} ${USERS}:${GROUPS} ${d}
  .endfor
  
 -test: build
 +regression-test: build
  	@cd ${WRKSRC} && ${TCLSH} tests/test_helper.tcl
  
 -regression-test: test
 -
  .include <bsd.port.mk>
 
 Modified: head/databases/redis-devel/distinfo
 ==============================================================================
 --- head/databases/redis-devel/distinfo	Fri May  3 17:37:13 2013	(r317223)
 +++ head/databases/redis-devel/distinfo	Fri May  3 17:38:24 2013	(r317224)
 @@ -1,2 +1,2 @@
 -SHA256 (redis-2.6.11.tar.gz) = b0644669849a130659cf8dd48965cf116e4fe64a5bb86a239ea078d7464b6968
 -SIZE (redis-2.6.11.tar.gz) = 993744
 +SHA256 (redis-2.6.13.tar.gz) = 3b9439636c58ca06bee538a0f7298e02a33fcf98b8fa845c0b0cf8567751e948
 +SIZE (redis-2.6.13.tar.gz) = 994331
 
 Modified: head/databases/redis/Makefile
 ==============================================================================
 --- head/databases/redis/Makefile	Fri May  3 17:37:13 2013	(r317223)
 +++ head/databases/redis/Makefile	Fri May  3 17:38:24 2013	(r317224)
 @@ -2,7 +2,7 @@
  # $FreeBSD$
  
  PORTNAME=	redis
 -DISTVERSION=	2.6.11
 +DISTVERSION=	2.6.13
  CATEGORIES=	databases
  MASTER_SITES=	GOOGLE_CODE
  
 @@ -82,9 +82,7 @@ post-install:
  	[ -d ${d} ] || ${MKDIR} ${d} && ${CHOWN} ${USERS}:${GROUPS} ${d}
  .endfor
  
 -test: build
 +regression-test: build
  	@cd ${WRKSRC} && ${TCLSH} tests/test_helper.tcl
  
 -regression-test: test
 -
  .include <bsd.port.mk>
 
 Modified: head/databases/redis/distinfo
 ==============================================================================
 --- head/databases/redis/distinfo	Fri May  3 17:37:13 2013	(r317223)
 +++ head/databases/redis/distinfo	Fri May  3 17:38:24 2013	(r317224)
 @@ -1,2 +1,2 @@
 -SHA256 (redis-2.6.11.tar.gz) = b0644669849a130659cf8dd48965cf116e4fe64a5bb86a239ea078d7464b6968
 -SIZE (redis-2.6.11.tar.gz) = 993744
 +SHA256 (redis-2.6.13.tar.gz) = 3b9439636c58ca06bee538a0f7298e02a33fcf98b8fa845c0b0cf8567751e948
 +SIZE (redis-2.6.13.tar.gz) = 994331
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: open->closed 
State-Changed-By: osa 
State-Changed-When: Sat May 4 07:27:32 UTC 2013 
State-Changed-Why:  
Update to 2.6.13 committed, thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=178124 
>Unformatted:
