forked from pool/libmemcached
Accepting request 113688 from home:tabraham1:branches:devel:libraries:c_c++
update to 1.0.6 OBS-URL: https://build.opensuse.org/request/show/113688 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmemcached?expand=0&rev=23
This commit is contained in:
parent
3237bf24a4
commit
2b4385cdad
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:796aadddadb1b4b0b2604b48464c5f3dc63dcc66c8be7a0ed1893cdfe5eb6a48
|
||||
size 737179
|
3
libmemcached-1.0.6.tar.bz2
Normal file
3
libmemcached-1.0.6.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a4862f0503796d96c7e96bc5b902c9900bdb8aece78759d09d58e4711016a95d
|
||||
size 810598
|
@ -1,3 +1,21 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 13 20:54:30 UTC 2012 - tabraham@novell.com
|
||||
|
||||
- update to 1.0.6
|
||||
* Fixes for gcc 4.7, lp:961812
|
||||
* Fix for restart issue that happens under testing.
|
||||
* Fix for lp:962815.
|
||||
* Support for transparent AES encryption.
|
||||
|
||||
- changes from 1.0.5
|
||||
* Fixes for OSX.
|
||||
* Version is now parsed directly in the parser, which makes buffered
|
||||
operations now work with it..
|
||||
* memstat has been extended so that it can be used to find the version
|
||||
of the server.
|
||||
* Update documentation.
|
||||
* Fixes for compile issues on Debian and Ubuntu
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 18 04:24:39 UTC 2012 - termim@gmail.com
|
||||
|
||||
|
@ -16,18 +16,18 @@
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: libmemcached
|
||||
Summary: Libmemcached is a C and C++ client library to the memcached server
|
||||
License: BSD-3-Clause
|
||||
Group: Development/Libraries/C and C++
|
||||
Version: 1.0.4
|
||||
Version: 1.0.6
|
||||
Release: 0
|
||||
# http://download.tangent.org/libmemcached-%{version}.tar.gz
|
||||
Url: https://launchpad.net/libmemcached/1.0/%{version}/+download/libmemcached-%{version}.tar.gz
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
# List of additional build dependencies
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: libevent-devel
|
||||
BuildRequires: memcached
|
||||
BuildRequires: pkgconfig
|
||||
%if 0%{?suse_version} > 1020
|
||||
@ -40,11 +40,11 @@ Libmemcached is a C and C++ client library to the memcached server
|
||||
memory usage, thread safe, and provide full access to server side
|
||||
methods.
|
||||
|
||||
%package -n libmemcached9
|
||||
%package -n libmemcached10
|
||||
Summary: Libmemcached is a C and C++ client library to the memcached server
|
||||
Group: System/Libraries
|
||||
|
||||
%description -n libmemcached9
|
||||
%description -n libmemcached10
|
||||
Libmemcached is a C and C++ client library to the memcached server
|
||||
(http://danga.com/memcached). It has been designed to be light on
|
||||
memory usage, thread safe, and provide full access to server side
|
||||
@ -68,7 +68,7 @@ Summary: Libmemcached is a C and C++ client library to the memcached serv
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: %{name} = %{version}
|
||||
Requires: glibc-devel
|
||||
Requires: libmemcached9 = %{version}
|
||||
Requires: libmemcached10 = %{version}
|
||||
Requires: libmemcachedutil2 = %{version}
|
||||
|
||||
%description devel
|
||||
@ -92,12 +92,12 @@ make %{?_smp_mflags}
|
||||
%fdupes -s %{buildroot}%{_mandir}
|
||||
%endif
|
||||
|
||||
#%check
|
||||
#%__make check
|
||||
#%%check
|
||||
#%%__make check
|
||||
|
||||
%post -n libmemcached9 -p /sbin/ldconfig
|
||||
%post -n libmemcached10 -p /sbin/ldconfig
|
||||
|
||||
%postun -n libmemcached9 -p /sbin/ldconfig
|
||||
%postun -n libmemcached10 -p /sbin/ldconfig
|
||||
|
||||
%post -n libmemcachedutil2 -p /sbin/ldconfig
|
||||
|
||||
@ -120,15 +120,15 @@ make %{?_smp_mflags}
|
||||
%{_bindir}/memtouch
|
||||
%doc %{_mandir}/man1/mem*.1*
|
||||
|
||||
%files -n libmemcached9
|
||||
%files -n libmemcached10
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libmemcached.so.9
|
||||
%{_libdir}/libmemcached.so.9.*.*
|
||||
%{_libdir}/libmemcached.so.10
|
||||
%{_libdir}/libmemcached.so.10.*.*
|
||||
|
||||
%files -n libmemcachedutil2
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libhashkit.so.1
|
||||
%{_libdir}/libhashkit.so.1.*.*
|
||||
%{_libdir}/libhashkit.so.2
|
||||
%{_libdir}/libhashkit.so.2.*.*
|
||||
%{_libdir}/libmemcachedutil.so.2
|
||||
%{_libdir}/libmemcachedutil.so.2.*.*
|
||||
%{_libdir}/libmemcachedprotocol.so.0
|
||||
|
Loading…
Reference in New Issue
Block a user