forked from pool/libmemcached
Accepting request 130843 from devel:libraries:c_c++
- update to 1.0.10 * --disable-assert has been removed from configure, and --enable-assert has been added in its place. * Compiling fixes for Clang on OSX Mountain Lion. - 1.0.9 Wed Jul 4 22:46:19 EDT 2012 * Faster close on socket. * Instance allocation is now seperated from server interface. This should allow for a better preservation of ABI compliance from now on. * Fix close on exec bug. * Numerous other bug fixes. - 1.0.8 Tue May 22 15:06:04 EDT 2012 * Added support for setting options via ENV variable LIBMEMCACHED * Fix corner case on last used result. OBS-URL: https://build.opensuse.org/request/show/130843 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libmemcached?expand=0&rev=12
This commit is contained in:
commit
dd1c65b08c
3
libmemcached-1.0.10.tar.gz
Normal file
3
libmemcached-1.0.10.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0bbb5e310b3d175dfbde99a463ba4474aa22b4ad88ffea2afe76c868d6e1290b
|
||||
size 1102988
|
11
libmemcached-1.0.10.tar.gz.asc
Normal file
11
libmemcached-1.0.10.tar.gz.asc
Normal file
@ -0,0 +1,11 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1.4.12 (GNU/Linux)
|
||||
|
||||
iQEcBAABAgAGBQJQF/JSAAoJEItO41/aJIgTYIIH/3nZbv9o6pQe8cJTpUvUAFQ6
|
||||
Hs6UHHErfhMnk5yl/2ywcWRMNlOvcmXckIsb9mE06St1wWar8ifH11AOfuD4aOry
|
||||
dSG+nJE+6XZGwBSMH7vRxgfZvz1Zw0R+TBGd2CtzDylSzMavNxZ0moGL/BFYyB4z
|
||||
ReJkG5CvqEMzpwsmkCt4m0OBOykKkF1Ems6+RAjrasawEfMahugyfP4Yb15yhcYO
|
||||
OGc/1LkRgJie79PFueeMrVT9eYF5NhDQQ8KwBBSc18YSKsYxSaTFhpqTrLDD8RxE
|
||||
rMThSULiDJAHF+IkL4olmn11Th43K57UyhY8Z/mSd+F21nGJE4RLmmJAOgbEjtg=
|
||||
=vHry
|
||||
-----END PGP SIGNATURE-----
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3efa86c9733eaad55d7119cb16769424e2aa6c22b3392e8f973946fce6678d81
|
||||
size 1077060
|
@ -1,3 +1,21 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 13 22:43:19 UTC 2012 - chris@computersalat.de
|
||||
|
||||
- update to 1.0.10
|
||||
* --disable-assert has been removed from configure, and
|
||||
--enable-assert has been added in its place.
|
||||
* Compiling fixes for Clang on OSX Mountain Lion.
|
||||
- 1.0.9 Wed Jul 4 22:46:19 EDT 2012
|
||||
* Faster close on socket.
|
||||
* Instance allocation is now seperated from server interface. This
|
||||
should allow for a better preservation of ABI compliance from now
|
||||
on.
|
||||
* Fix close on exec bug.
|
||||
* Numerous other bug fixes.
|
||||
- 1.0.8 Tue May 22 15:06:04 EDT 2012
|
||||
* Added support for setting options via ENV variable LIBMEMCACHED
|
||||
* Fix corner case on last used result.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 30 07:43:54 UTC 2012 - idonmez@suse.com
|
||||
|
||||
|
@ -17,13 +17,15 @@
|
||||
|
||||
|
||||
Name: libmemcached
|
||||
Summary: Libmemcached is a C and C++ client library to the memcached server
|
||||
%define libsoname %{name}11
|
||||
Summary: A C and C++ client library to the memcached server
|
||||
License: BSD-3-Clause
|
||||
Group: Development/Libraries/C and C++
|
||||
Version: 1.0.7
|
||||
Version: 1.0.10
|
||||
Release: 0
|
||||
Url: http://libmemcached.org
|
||||
Source: https://launchpad.net/libmemcached/1.0/%{version}/+download/libmemcached-%{version}.tar.gz
|
||||
Source0: https://launchpad.net/libmemcached/1.0/%{version}/+download/libmemcached-%{version}.tar.gz
|
||||
Source1: https://launchpad.net/libmemcached/1.0/%{version}/+download/libmemcached-%{version}.tar.gz.asc
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
# List of additional build dependencies
|
||||
BuildRequires: gcc-c++
|
||||
@ -40,11 +42,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 libmemcached10
|
||||
%package -n %{libsoname}
|
||||
Summary: Libmemcached is a C and C++ client library to the memcached server
|
||||
Group: System/Libraries
|
||||
|
||||
%description -n libmemcached10
|
||||
%description -n %{libsoname}
|
||||
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
|
||||
@ -66,9 +68,9 @@ libmemcached.
|
||||
%package devel
|
||||
Summary: Libmemcached is a C and C++ client library to the memcached server
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: %{libsoname} = %{version}
|
||||
Requires: %{name} = %{version}
|
||||
Requires: glibc-devel
|
||||
Requires: libmemcached10 = %{version}
|
||||
Requires: libmemcachedutil2 = %{version}
|
||||
|
||||
%description devel
|
||||
@ -95,9 +97,9 @@ make %{?_smp_mflags}
|
||||
#%check
|
||||
#make check
|
||||
|
||||
%post -n libmemcached10 -p /sbin/ldconfig
|
||||
%post -n %{libsoname} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libmemcached10 -p /sbin/ldconfig
|
||||
%postun -n %{libsoname} -p /sbin/ldconfig
|
||||
|
||||
%post -n libmemcachedutil2 -p /sbin/ldconfig
|
||||
|
||||
@ -120,10 +122,9 @@ make %{?_smp_mflags}
|
||||
%{_bindir}/memtouch
|
||||
%doc %{_mandir}/man1/mem*.1*
|
||||
|
||||
%files -n libmemcached10
|
||||
%files -n %{libsoname}
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libmemcached.so.10
|
||||
%{_libdir}/libmemcached.so.10.*.*
|
||||
%{_libdir}/%{name}.so.*
|
||||
|
||||
%files -n libmemcachedutil2
|
||||
%defattr(-,root,root)
|
||||
@ -136,21 +137,21 @@ make %{?_smp_mflags}
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%dir %{_includedir}/libmemcached
|
||||
%dir %{_includedir}/libmemcached-1.0
|
||||
%dir %{_includedir}/%{name}
|
||||
%dir %{_includedir}/%{name}-1.0
|
||||
%dir %{_includedir}/libhashkit
|
||||
%dir %{_includedir}/libhashkit-1.0
|
||||
%dir %{_includedir}/libmemcachedprotocol-0.0
|
||||
%dir %{_includedir}/libmemcachedutil-1.0
|
||||
%{_includedir}/libhashkit/*
|
||||
%{_includedir}/libhashkit-1.0/*
|
||||
%{_includedir}/libmemcached/*
|
||||
%{_includedir}/libmemcached-1.0/*
|
||||
%{_includedir}/%{name}/*
|
||||
%{_includedir}/%{name}-1.0/*
|
||||
%{_includedir}/libmemcachedprotocol-0.0/*
|
||||
%{_includedir}/libmemcachedutil-1.0/*
|
||||
%{_libdir}/pkgconfig/libmemcached.pc
|
||||
%{_libdir}/libhashkit.so
|
||||
%{_libdir}/libmemcached.so
|
||||
%{_libdir}/%{name}.so
|
||||
%{_libdir}/libmemcachedutil.so
|
||||
%{_libdir}/libmemcachedprotocol.so
|
||||
%doc %{_mandir}/man3/*.3*
|
||||
|
Loading…
Reference in New Issue
Block a user