|
@@ -1,9 +1,9 @@
|
|
-%global with_tests %{?_with_tests:1}%{!?_with_tests:0}
|
|
|
|
|
|
+%bcond_with tests
|
|
|
|
|
|
Name: libmemcached
|
|
Name: libmemcached
|
|
Summary: Client library and command line tools for memcached server
|
|
Summary: Client library and command line tools for memcached server
|
|
-Version: 1.0.7
|
|
|
|
-Release: 2%{?_dist_release}
|
|
|
|
|
|
+Version: 1.0.17
|
|
|
|
+Release: 1%{?_dist_release}
|
|
License: BSD
|
|
License: BSD
|
|
Group: System Environment/Libraries
|
|
Group: System Environment/Libraries
|
|
URL: http://libmemcached.org/
|
|
URL: http://libmemcached.org/
|
|
@@ -14,11 +14,17 @@ URL: http://libmemcached.org/
|
|
# source tarball, and run "./strip-hsieh.sh <version>" to produce the
|
|
# source tarball, and run "./strip-hsieh.sh <version>" to produce the
|
|
# "-exhsieh" tarball.
|
|
# "-exhsieh" tarball.
|
|
Source0: libmemcached-%{version}-exhsieh.tar.gz
|
|
Source0: libmemcached-%{version}-exhsieh.tar.gz
|
|
|
|
+Source1: strip-hsieh.sh
|
|
|
|
+
|
|
|
|
+# fix https://bugs.launchpad.net/libmemcached/+bug/1220452
|
|
|
|
+Patch0: libmemcached-memcached.patch
|
|
|
|
+# fix https://bugs.launchpad.net/libmemcached/+bug/1169311
|
|
|
|
+Patch1: 0bb781d2-a19f-11e2-90e1-002481e91f22.txt
|
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
BuildRequires: cyrus-sasl-devel
|
|
BuildRequires: cyrus-sasl-devel
|
|
BuildRequires: flex bison
|
|
BuildRequires: flex bison
|
|
-%if %{with_tests}
|
|
|
|
|
|
+%if %{with tests}
|
|
BuildRequires: memcached
|
|
BuildRequires: memcached
|
|
%endif
|
|
%endif
|
|
BuildRequires: libevent-devel
|
|
BuildRequires: libevent-devel
|
|
@@ -64,6 +70,8 @@ you will need to install %{name}-devel.
|
|
|
|
|
|
%prep
|
|
%prep
|
|
%setup -q
|
|
%setup -q
|
|
|
|
+%patch0 -p1 -b .without-memcached
|
|
|
|
+%patch1 -p0 -b .compile-option
|
|
|
|
|
|
mkdir examples
|
|
mkdir examples
|
|
cp -p tests/*.{cc,h} examples/
|
|
cp -p tests/*.{cc,h} examples/
|
|
@@ -74,11 +82,17 @@ rm -f libmemcached/csl/{parser,scanner}.cc
|
|
# Temporary fix for SASL detection
|
|
# Temporary fix for SASL detection
|
|
sed -i -e s/ax_cv_sasl/ac_enable_sasl/ configure
|
|
sed -i -e s/ax_cv_sasl/ac_enable_sasl/ configure
|
|
|
|
|
|
|
|
+# fix library dependency
|
|
|
|
+# perl -pi -e 's/^(Libs:.+)$/$1 -lpthread/' ./support/libmemcached.pc.in
|
|
|
|
|
|
%build
|
|
%build
|
|
|
|
+aclocal
|
|
|
|
+autoconf
|
|
|
|
+automake --add-missing
|
|
|
|
+
|
|
# option --with-memcached=false to disable server binary check (as we don't run test)
|
|
# option --with-memcached=false to disable server binary check (as we don't run test)
|
|
%configure --disable-static \
|
|
%configure --disable-static \
|
|
-%if ! %{with_tests}
|
|
|
|
|
|
+%if ! %{with tests}
|
|
--with-memcached=false
|
|
--with-memcached=false
|
|
%endif
|
|
%endif
|
|
|
|
|
|
@@ -91,7 +105,7 @@ make install DESTDIR="%{buildroot}" AM_INSTALL_PROGRAM_FLAGS=""
|
|
|
|
|
|
|
|
|
|
%check
|
|
%check
|
|
-%if %{with_tests}
|
|
|
|
|
|
+%if %{with tests}
|
|
# test suite cannot run in mock (same port use for memcache servers on all arch)
|
|
# test suite cannot run in mock (same port use for memcache servers on all arch)
|
|
# All tests completed successfully
|
|
# All tests completed successfully
|
|
# diff output.res output.cmp fails but result depend on server version
|
|
# diff output.res output.cmp fails but result depend on server version
|
|
@@ -118,26 +132,16 @@ rm -rf %{buildroot}
|
|
%doc AUTHORS COPYING README THANKS TODO ChangeLog
|
|
%doc AUTHORS COPYING README THANKS TODO ChangeLog
|
|
%{_bindir}/mem*
|
|
%{_bindir}/mem*
|
|
%exclude %{_libdir}/lib*.la
|
|
%exclude %{_libdir}/lib*.la
|
|
-%{_libdir}/libhashkit.so.2*
|
|
|
|
-%{_libdir}/libmemcached.so.10*
|
|
|
|
-%{_libdir}/libmemcachedprotocol.so.0*
|
|
|
|
-%{_libdir}/libmemcachedutil.so.2*
|
|
|
|
|
|
+%{_libdir}/lib*.so.*
|
|
%{_mandir}/man1/mem*
|
|
%{_mandir}/man1/mem*
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
%files devel
|
|
%defattr (-,root,root,-)
|
|
%defattr (-,root,root,-)
|
|
%doc examples
|
|
%doc examples
|
|
-%{_includedir}/libmemcached
|
|
|
|
-%{_includedir}/libmemcached-1.0
|
|
|
|
-%{_includedir}/libhashkit
|
|
|
|
-%{_includedir}/libhashkit-1.0
|
|
|
|
-%{_includedir}/libmemcachedprotocol-0.0
|
|
|
|
-%{_includedir}/libmemcachedutil-1.0
|
|
|
|
-%{_libdir}/libhashkit.so
|
|
|
|
-%{_libdir}/libmemcached.so
|
|
|
|
-%{_libdir}/libmemcachedprotocol.so
|
|
|
|
-%{_libdir}/libmemcachedutil.so
|
|
|
|
|
|
+%{_datadir}/aclocal/ax_libmemcached.m4
|
|
|
|
+%{_includedir}/*
|
|
|
|
+%{_libdir}/lib*.so
|
|
%{_libdir}/pkgconfig/libmemcached.pc
|
|
%{_libdir}/pkgconfig/libmemcached.pc
|
|
%{_mandir}/man3/libmemcached*
|
|
%{_mandir}/man3/libmemcached*
|
|
%{_mandir}/man3/libhashkit*
|
|
%{_mandir}/man3/libhashkit*
|
|
@@ -146,6 +150,9 @@ rm -rf %{buildroot}
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
%changelog
|
|
|
|
+* Sat Jan 18 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.0.17-1
|
|
|
|
+- new upstream release.
|
|
|
|
+
|
|
* Thu May 03 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.0.7-2
|
|
* Thu May 03 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.0.7-2
|
|
- built for Vine Linux.
|
|
- built for Vine Linux.
|
|
|
|
|