2010-02-24 23:49:48 +01:00
|
|
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
#
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
# norootforbuild
|
|
|
|
|
|
|
|
Name: redis
|
|
|
|
Version: 1.2.2
|
|
|
|
Release: 1
|
|
|
|
Url: http://code.google.com/p/redis/
|
|
|
|
License: BSD License
|
|
|
|
Group: Productivity/Databases/Servers
|
|
|
|
Summary: Persistent key-value database with built-in net interface
|
|
|
|
Source: http://redis.googlecode.com/files/%{name}-%{version}.tar.gz
|
|
|
|
Patch0: %{name}-initscript.patch
|
|
|
|
# for init script
|
|
|
|
Requires: netcat-openbsd
|
2010-03-05 01:14:55 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2010-02-24 23:49:48 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
Redis is an advanced key-value store. It is similar to memcached but the dataset
|
|
|
|
is not volatile, and values can be strings, exactly like in memcached,
|
|
|
|
but also lists, sets, and ordered sets. All this data types can be manipulated
|
|
|
|
with atomic operations to push/pop elements, add/remove elements, perform server
|
|
|
|
side union, intersection, difference between sets, and so forth. Redis supports
|
|
|
|
different kind of sorting abilities.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
%patch0
|
|
|
|
mv doc html
|
|
|
|
|
|
|
|
%build
|
|
|
|
make %{?jobs:-j%jobs}
|
|
|
|
|
|
|
|
%install
|
|
|
|
install -D -m 0755 redis-benchmark $RPM_BUILD_ROOT%{_bindir}/redis-benchmark
|
|
|
|
install -D -m 0755 redis-cli $RPM_BUILD_ROOT%{_bindir}/redis-cli
|
|
|
|
install -D -m 0755 redis-server $RPM_BUILD_ROOT%{_sbindir}/redis-server
|
|
|
|
install -D -m 0755 utils/redis_init_script $RPM_BUILD_ROOT%{_sysconfdir}/init.d/redis
|
|
|
|
ln -s %{_sysconfdir}/init.d/redis $RPM_BUILD_ROOT%{_sbindir}/rcredis
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/redis
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc 00-RELEASENOTES BETATESTING.txt BUGS COPYING Changelog README TODO html
|
|
|
|
%{_bindir}/redis-benchmark
|
|
|
|
%{_bindir}/redis-cli
|
|
|
|
%{_sbindir}/redis-server
|
|
|
|
%{_sbindir}/rcredis
|
|
|
|
%{_sysconfdir}/init.d/redis
|
|
|
|
%dir %{_sysconfdir}/redis
|
|
|
|
|
|
|
|
%changelog
|