diff options
author | osa <osa@FreeBSD.org> | 2012-05-28 15:23:16 +0800 |
---|---|---|
committer | osa <osa@FreeBSD.org> | 2012-05-28 15:23:16 +0800 |
commit | 62156f3810a72ea323e77eb681bf45a370d56c92 (patch) | |
tree | 1f20909a15598c6fe56d491910f9b856fb91b043 /databases | |
parent | 281ce787bca18e7015b980f0e7e826e92d4a8369 (diff) | |
download | freebsd-ports-gnome-62156f3810a72ea323e77eb681bf45a370d56c92.tar.gz freebsd-ports-gnome-62156f3810a72ea323e77eb681bf45a370d56c92.tar.zst freebsd-ports-gnome-62156f3810a72ea323e77eb681bf45a370d56c92.zip |
Update from 2.4.13 to 2.4.14.
<ChangeLog>
UPGRADE URGENCY: high, many non trivial bugs fixed in this release.
* [BUGFIX] Fixed issue #518 (Redis 99% CPU when master down).
* [BUGFIX] Fixed issue #516 (ZINTERSTORE mixing sets and zsets).
* [BUGFIX] Fixed a bug in install_server.sh when using chkconfig
* [BUGFIX] Fixes to --test-memory implementation.
* [BUGFIX] Allow PREFIX to be overridden in Makefile.
* [BUGFIX] The test is now more reliable on slow computers.
* redis-cli --pipe mode, see http://redis.io/topics/mass-insert
* Much better expired keys collection algorithm that makes the server much
more responsive when a lot of keys are expiring at the same time.
</ChangeLog>
Diffstat (limited to 'databases')
-rw-r--r-- | databases/redis/Makefile | 2 | ||||
-rw-r--r-- | databases/redis/distinfo | 4 | ||||
-rw-r--r-- | databases/redis/files/patch-src::Makefile | 8 |
3 files changed, 7 insertions, 7 deletions
diff --git a/databases/redis/Makefile b/databases/redis/Makefile index 74cec13e51a1..26261fd888eb 100644 --- a/databases/redis/Makefile +++ b/databases/redis/Makefile @@ -6,7 +6,7 @@ # PORTNAME= redis -PORTVERSION= 2.4.13 +PORTVERSION= 2.4.14 CATEGORIES= databases MASTER_SITES= GOOGLE_CODE diff --git a/databases/redis/distinfo b/databases/redis/distinfo index 8b85858f569c..b2f7d6ade05f 100644 --- a/databases/redis/distinfo +++ b/databases/redis/distinfo @@ -1,2 +1,2 @@ -SHA256 (redis-2.4.13.tar.gz) = b6e057b6b5cd5946f8b46b2427401400686ed4f6c4af446eb1f0ec170d3f87be -SIZE (redis-2.4.13.tar.gz) = 625464 +SHA256 (redis-2.4.14.tar.gz) = 4f26ae8cad0f9143ef30b9bb9565a1618570654eb86ee911c20966971660cc7e +SIZE (redis-2.4.14.tar.gz) = 627494 diff --git a/databases/redis/files/patch-src::Makefile b/databases/redis/files/patch-src::Makefile index 65498ca25b83..fe18bb78aaba 100644 --- a/databases/redis/files/patch-src::Makefile +++ b/databases/redis/files/patch-src::Makefile @@ -1,5 +1,5 @@ ---- src/Makefile.orig 2011-11-28 14:22:08.000000000 +0400 -+++ src/Makefile 2011-11-30 16:33:17.000000000 +0400 +--- src/Makefile.orig 2012-05-28 11:14:39.000000000 +0400 ++++ src/Makefile 2012-05-28 11:15:45.000000000 +0400 @@ -28,6 +28,9 @@ CFLAGS?=-std=c99 -pedantic $(OPTIMIZATION) -Wall -W -D__EXTENSIONS__ -D_XPG6 CCLINK?=-ldl -lnsl -lsocket -lm -lpthread @@ -17,8 +17,8 @@ -CCOPT= $(CFLAGS) $(ARCH) $(PROF) +CCOPT= $(CFLAGS) $(PROF) --PREFIX= /usr/local +-PREFIX?=/usr/local +PREFIX:= ${PREFIX} INSTALL_BIN= $(PREFIX)/bin - INSTALL= cp -p + INSTALL= cp -pf |