|
|
|
@ -1,10 +1,10 @@
|
|
|
|
|
Name: hiredis
|
|
|
|
|
Version: 0.11.0
|
|
|
|
|
Release: 5%{?dist}
|
|
|
|
|
Version: 0.12.0
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
Summary: Minimalistic C client library for Redis
|
|
|
|
|
License: BSD
|
|
|
|
|
URL: https://github.com/redis/hiredis
|
|
|
|
|
Source0: antirez-%{name}-v%{version}-0-g0fff0f1.tar.gz
|
|
|
|
|
Source0: https://github.com/redis/hiredis/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
Hiredis is a minimalistic C client library for the Redis database.
|
|
|
|
@ -18,37 +18,58 @@ This package contains libraries and header files for
|
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q -n antirez-%{name}-0fff0f1
|
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
make %{?_smp_mflags} OPTIMIZATION="%{optflags}"
|
|
|
|
|
make %{?_smp_mflags} OPTIMIZATION="%{optflags}" LDFLAGS="%{?__global_ldflags}"
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
make install PREFIX=%{buildroot}%{_prefix} INSTALL_LIBRARY_PATH=%{buildroot}%{_libdir}
|
|
|
|
|
|
|
|
|
|
mkdir -p %{buildroot}%{_bindir}
|
|
|
|
|
cp hiredis-example %{buildroot}%{_bindir}
|
|
|
|
|
cp hiredis-test %{buildroot}%{_bindir}
|
|
|
|
|
# Generate pkgconfig file manually. It's already mentioned in the upstream
|
|
|
|
|
# makefile but make install doesn't do and modification needed for %%_libdir.
|
|
|
|
|
|
|
|
|
|
mkdir -p %{buildroot}%{_libdir}/pkgconfig/
|
|
|
|
|
cat >%{buildroot}%{_libdir}/pkgconfig/%{name}.pc<<EOF
|
|
|
|
|
#%{name} pkg-config source file
|
|
|
|
|
|
|
|
|
|
prefix=%{_prefix}
|
|
|
|
|
exec_prefix=%{_prefix}
|
|
|
|
|
libdir=%{_libdir}
|
|
|
|
|
includedir=%{_includedir}
|
|
|
|
|
|
|
|
|
|
Name: %{name}
|
|
|
|
|
Description: Minimalistic C client library for the Redis database
|
|
|
|
|
Version: %{version}
|
|
|
|
|
Libs: -L\${libdir} -lhiredis
|
|
|
|
|
Cflags: -I\${includedir} -D_FILE_OFFSET_BITS=64
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
|
|
find %{buildroot} -name '*.a' -delete -print
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
# Firewall + Koji isolated environment
|
|
|
|
|
make test || true
|
|
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%doc COPYING
|
|
|
|
|
%{_bindir}/hiredis-example
|
|
|
|
|
%{_bindir}/hiredis-test
|
|
|
|
|
%{_libdir}/libhiredis.so.0.10
|
|
|
|
|
%{_libdir}/libhiredis.so.0.12
|
|
|
|
|
%{_libdir}/libhiredis.so.0
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
|
%doc README.md
|
|
|
|
|
%doc CHANGELOG.md README.md
|
|
|
|
|
%{_includedir}/%{name}/
|
|
|
|
|
%{_libdir}/libhiredis.so
|
|
|
|
|
%{_libdir}/pkgconfig/hiredis.pc
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Fri Jan 23 2015 Christopher Meng <rpm@cicku.me> - 0.12.0-1
|
|
|
|
|
- Update to 0.12.0
|
|
|
|
|
|
|
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11.0-5
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|