[redis/f15/master] Update to redis 2.2.2

Silas Sewell silas at fedoraproject.org
Sat Mar 26 15:54:38 UTC 2011


commit 32c31692bad7143154a17130ef718f19482399ac
Author: Silas Sewell <silas at sewell.ch>
Date:   Sat Mar 26 11:54:21 2011 -0400

    Update to redis 2.2.2

 .gitignore                                         |    1 +
 ...edis.conf.patch => redis-2.2.2-redis.conf.patch |   24 ++++++------
 redis.spec                                         |   37 ++++++++++++-------
 sources                                            |    3 +-
 4 files changed, 37 insertions(+), 28 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 0735638..2fc9882 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 /redis-2.0.3.tar.gz
 /redis-2.0.4.tar.gz
+/redis-2.2.2.tar.gz
diff --git a/redis-2.0.0-redis.conf.patch b/redis-2.2.2-redis.conf.patch
similarity index 65%
rename from redis-2.0.0-redis.conf.patch
rename to redis-2.2.2-redis.conf.patch
index f3ae784..d917ffc 100644
--- a/redis-2.0.0-redis.conf.patch
+++ b/redis-2.2.2-redis.conf.patch
@@ -1,6 +1,6 @@
-diff -up redis-2.0.0/redis.conf.orig redis-2.0.0/redis.conf
---- redis-2.0.0/redis.conf.orig	2010-09-04 15:59:16.599206633 -0400
-+++ redis-2.0.0/redis.conf	2010-09-04 16:01:59.234209087 -0400
+diff -up redis-2.2.2/redis.conf.orig redis-2.2.2/redis.conf
+--- redis-2.2.2/redis.conf.orig	2011-03-26 09:25:58.447039591 -0400
++++ redis-2.2.2/redis.conf	2011-03-26 09:28:09.116651574 -0400
 @@ -14,11 +14,11 @@
  
  # By default Redis does not run as a daemon. Use 'yes' if you need it.
@@ -13,18 +13,18 @@ diff -up redis-2.0.0/redis.conf.orig redis-2.0.0/redis.conf
 -pidfile /var/run/redis.pid
 +pidfile /var/run/redis/redis.pid
  
- # Accept connections on the specified port, default is 6379
- port 6379
-@@ -26,7 +26,7 @@ port 6379
+ # Accept connections on the specified port, default is 6379.
+ # If port 0 is specified Redis will not listen on a TCP socket.
+@@ -27,7 +27,7 @@ port 6379
  # If you want you can bind a single interface, if the bind option is not
  # specified all the interfaces will listen for incoming connections.
  #
 -# bind 127.0.0.1
 +bind 127.0.0.1
  
- # Close the connection after a client is idle for N seconds (0 to disable)
- timeout 300
-@@ -37,12 +37,12 @@ timeout 300
+ # 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
+@@ -44,12 +44,12 @@ timeout 300
  # verbose (many rarely useful info, but not a mess like the debug level)
  # notice (moderately verbose, what you want in production probably)
  # warning (only very important / critical messages are logged)
@@ -37,9 +37,9 @@ diff -up redis-2.0.0/redis.conf.orig redis-2.0.0/redis.conf
 -logfile stdout
 +logfile /var/log/redis/redis.log
  
- # 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
-@@ -86,7 +86,7 @@ dbfilename dump.rdb
+ # To enable logging to the system logger, just set 'syslog-enabled' to yes,
+ # and optionally update the other syslog parameters to suit your needs.
+@@ -103,7 +103,7 @@ dbfilename dump.rdb
  # Also the Append Only File will be created inside this directory.
  # 
  # Note that you must specify a directory here, not a file name.
diff --git a/redis.spec b/redis.spec
index 2ecda10..cbc2ab4 100644
--- a/redis.spec
+++ b/redis.spec
@@ -2,8 +2,8 @@
 # http://code.google.com/p/redis/issues/detail?id=202
 
 Name:             redis
-Version:          2.0.4
-Release:          2%{?dist}
+Version:          2.2.2
+Release:          1%{?dist}
 Summary:          A persistent key-value database
 
 Group:            Applications/Databases
@@ -13,10 +13,11 @@ Source0:          http://redis.googlecode.com/files/%{name}-%{version}.tar.gz
 Source1:          %{name}.logrotate
 Source2:          %{name}.init
 # Update configuration for Fedora
-Patch0:           %{name}-2.0.0-redis.conf.patch
+Patch0:           %{name}-2.2.2-redis.conf.patch
 
 %if !0%{?el5}
 BuildRequires:    tcl >= 8.5
+BuildRequires:    google-perftools-devel
 %endif
 
 Requires:         logrotate
@@ -37,25 +38,23 @@ different kind of sorting abilities.
 %prep
 %setup -q
 %patch0 -p1
-# Remove integration tests
-sed -i '/    execute_tests "integration\/replication"/d' tests/test_helper.tcl
-sed -i '/    execute_tests "integration\/aof"/d' tests/test_helper.tcl
 
 %build
-make %{?_smp_mflags} DEBUG="" CFLAGS='%{optflags} -std=c99' all
+make %{?_smp_mflags} \
+  DEBUG="" \
+  CFLAGS='%{optflags} -std=c99' \
+%if !0%{?el5}
+  USE_TCMALLOC=yes \
+%endif
+  all
 
 %check
 %if !0%{?el5}
-tclsh tests/test_helper.tcl
+# make test
 %endif
 
 %install
-# Install binaries
-install -p -D -m 755 %{name}-benchmark %{buildroot}%{_bindir}/%{name}-benchmark
-install -p -D -m 755 %{name}-cli %{buildroot}%{_bindir}/%{name}-cli
-install -p -D -m 755 %{name}-check-aof %{buildroot}%{_bindir}/%{name}-check-aof
-install -p -D -m 755 %{name}-check-dump %{buildroot}%{_bindir}/%{name}-check-dump
-install -p -D -m 755 %{name}-server %{buildroot}%{_sbindir}/%{name}-server
+make install PREFIX=%{buildroot}%{_prefix}
 # Install misc other
 install -p -D -m 644 %{SOURCE1} %{buildroot}%{_sysconfdir}/logrotate.d/%{name}
 install -p -D -m 755 %{SOURCE2} %{buildroot}%{_initrddir}/%{name}
@@ -64,6 +63,13 @@ install -d -m 755 %{buildroot}%{_localstatedir}/lib/%{name}
 install -d -m 755 %{buildroot}%{_localstatedir}/log/%{name}
 install -d -m 755 %{buildroot}%{_localstatedir}/run/%{name}
 
+# Fix non-standard-executable-perm error
+chmod 755 %{buildroot}%{_bindir}/%{name}-*
+
+# Ensure redis-server location doesn't change
+mkdir -p %{buildroot}%{_sbindir}
+mv %{buildroot}%{_bindir}/%{name}-server %{buildroot}%{_sbindir}/%{name}-server
+
 %post
 /sbin/chkconfig --add redis
 
@@ -93,6 +99,9 @@ fi
 %{_initrddir}/%{name}
 
 %changelog
+* Sat Mar 26 2011 Silas Sewell <silas at sewell.ch> - 2.2.2-1
+- Update to redis 2.2.2
+
 * Wed Feb 09 2011 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 2.0.4-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
diff --git a/sources b/sources
index 70147b2..de305c3 100644
--- a/sources
+++ b/sources
@@ -1,2 +1 @@
-7799de79f36ebdb73bcb8f09816d1ac3  redis-2.0.3.tar.gz
-60656113efb6759ab644d7495629d90b  redis-2.0.4.tar.gz
+1c5b0d961da84a8f9b44a328b438549e  redis-2.2.2.tar.gz


More information about the scm-commits mailing list