From owner-svn-ports-head@FreeBSD.ORG Wed Sep 17 00:49:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7E63D6EA for ; Wed, 17 Sep 2014 00:49:53 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D96765C for ; Wed, 17 Sep 2014 00:49:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.9/8.14.9) with ESMTP id s8H0nrt7070779 for ; Wed, 17 Sep 2014 00:49:53 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s8H0nrdw070778 for svn-ports-head@freebsd.org; Wed, 17 Sep 2014 00:49:53 GMT (envelope-from bdrewery) Received: (qmail 33866 invoked from network); 16 Sep 2014 19:49:51 -0500 Received: from unknown (HELO roundcube.xk42.net) (10.10.5.5) by sweb.xzibition.com with SMTP; 16 Sep 2014 19:49:51 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 16 Sep 2014 19:49:50 -0500 From: Bryan Drewery To: "Sergey A. Osokin" Subject: Re: svn commit: r368298 - head/databases/redis Organization: FreeBSD In-Reply-To: <20140916212556.GE92961@FreeBSD.org> References: <201409160820.s8G8KqlW023235@svn.freebsd.org> <5418970A.70900@FreeBSD.org> <20140916212556.GE92961@FreeBSD.org> Message-ID: <2c38e0719c512294734b0bf63e276d99@shatow.net> X-Sender: bdrewery@FreeBSD.org User-Agent: Roundcube Webmail/1.0.1 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Sep 2014 00:49:53 -0000 On 2014-09-16 16:25, Sergey A. Osokin wrote: > Hi Bryan, > > Unfortunately no 8.4 here, sorry. This fixes it: http://people.freebsd.org/~bdrewery/patches/redis-8.patch 8.4 does not have support for TCP_KEEPIDLE, TCP_KEEPINTVL or TCP_KEEPCNT. > > -- > Sergey A. Osokin > osa@FreeBSD.org > > On Tue, Sep 16, 2014 at 03:01:14PM -0500, Bryan Drewery wrote: >> Fails to build for me on 8.4: >> > cc -L/usr/local/lib -pthread -lm -lexecinfo -fstack-protector -o redis-server 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 ../deps/hiredis/libhiredis.a ../deps/lua/src/liblua.a -lm >> > cc: ../deps/hiredis/libhiredis.a: No such file or directory >> > cc: ../deps/lua/src/liblua.a: No such file or directory >> > gmake[1]: *** [redis-server] Error 1 >> > gmake[1]: Leaving directory `/wrkdirs/usr/ports/databases/redis/work/redis-2.8.15/src' >> > gmake: *** [all] Error 2 >> > *** Error code 1 >> >> >> >> >> On 9/16/2014 3:20 AM, Sergey A. Osokin wrote: >> > Author: osa >> > Date: Tue Sep 16 08:20:52 2014 >> > New Revision: 368298 >> > URL: http://svnweb.freebsd.org/changeset/ports/368298 >> > QAT: https://qat.redports.org/buildarchive/r368298/ >> > >> > Log: >> > Upgrade from 2.8.14 to 2.8.15. >> > >> > >> > >> > --[ Redis 2.8.15 ] Release date: 12 Sep 2014 >> > >> > # UPGRADE URGENCY: LOW for Redis, HIGH for Sentinel. >> > >> > * [FIX] Sentinel critical bug fixed: the absolute majority was computed in a >> > wrong way because of a programming error. Now the implementation does >> > what the specification says and the majority to authorize a failover >> > (that should not be confused with the ODOWN quorum) is the majority of >> > *all* the Sentinels ever seen for a given master, regardless of their >> > current state. >> > * [FIX] GETRANGE test no longer fails for 32 bit builds (Matt Stancliff). >> > * [FIX] Limit SCAN latency when the hash table is in an odd state (very few >> > populted buckets because rehashing is in progress). (Xiaost and >> > Salvatore Sanfilippo) >> > >> > * [NEW] Redis is now able to load truncated AOF files without requiring a >> > redis-check-aof utility run. The default now is to load truncated >> > (but apparently not corrupted) AOFs, you can change this in redis.conf. >> > (Salvatore Sanfilippo). >> > * [NEW] Sentinel: ability to announce itself with an arbitrary IP/port to work >> > in the context of natted networks. However this is probably still >> > not enough since there is no equivalent mechanism for slaves listed >> > in the master INFO output. (Dara Kong and Salvatore Sanfilippo) >> > >> > >> > >> > Modified: >> > head/databases/redis/Makefile >> > head/databases/redis/distinfo >> > >> > Modified: head/databases/redis/Makefile >> > ============================================================================== >> > --- head/databases/redis/Makefile Tue Sep 16 07:18:31 2014 (r368297) >> > +++ head/databases/redis/Makefile Tue Sep 16 08:20:52 2014 (r368298) >> > @@ -2,7 +2,7 @@ >> > # $FreeBSD$ >> > >> > PORTNAME= redis >> > -DISTVERSION= 2.8.14 >> > +DISTVERSION= 2.8.15 >> > CATEGORIES= databases >> > MASTER_SITES= http://download.redis.io/releases/ >> > >> > >> > Modified: head/databases/redis/distinfo >> > ============================================================================== >> > --- head/databases/redis/distinfo Tue Sep 16 07:18:31 2014 (r368297) >> > +++ head/databases/redis/distinfo Tue Sep 16 08:20:52 2014 (r368298) >> > @@ -1,2 +1,2 @@ >> > -SHA256 (redis-2.8.14.tar.gz) = 593e4a882f81913373923389a8d49b39f230d69c9a1be50f883cdbecf7381763 >> > -SIZE (redis-2.8.14.tar.gz) = 1231617 >> > +SHA256 (redis-2.8.15.tar.gz) = 2bc8cacf2b9a22fe7fd0cc8d794db7f6ea6d919083482184df86d40e5e3de38f >> > +SIZE (redis-2.8.15.tar.gz) = 1233621 >> > >> >> >> -- >> Regards, >> Bryan Drewery >> -- Regards, Bryan Drewery