|
|
@ -1,6 +1,6 @@
|
|
|
|
Name: hiredis
|
|
|
|
Name: hiredis
|
|
|
|
Version: 1.0.2
|
|
|
|
Version: 1.0.2
|
|
|
|
Release: 1%{?dist}
|
|
|
|
Release: 2%{?dist}
|
|
|
|
Summary: Minimalistic C client library for Redis
|
|
|
|
Summary: Minimalistic C client library for Redis
|
|
|
|
License: BSD
|
|
|
|
License: BSD
|
|
|
|
URL: https://github.com/redis/hiredis
|
|
|
|
URL: https://github.com/redis/hiredis
|
|
|
@ -29,7 +29,7 @@ developing applications that use %{name}.
|
|
|
|
DEBUG="%{optflags}" LDFLAGS="%{?__global_ldflags}" USE_SSL=1
|
|
|
|
DEBUG="%{optflags}" LDFLAGS="%{?__global_ldflags}" USE_SSL=1
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%install
|
|
|
|
%make_install PREFIX="%{_prefix}" LIBRARY_PATH="%{_lib}"
|
|
|
|
%make_install PREFIX="%{_prefix}" LIBRARY_PATH="%{_lib}" USE_SSL=1
|
|
|
|
|
|
|
|
|
|
|
|
find %{buildroot} -name '*.a' -delete -print
|
|
|
|
find %{buildroot} -name '*.a' -delete -print
|
|
|
|
|
|
|
|
|
|
|
@ -42,14 +42,21 @@ make check || true
|
|
|
|
%files
|
|
|
|
%files
|
|
|
|
%doc COPYING
|
|
|
|
%doc COPYING
|
|
|
|
%{_libdir}/libhiredis.so.1.0.0
|
|
|
|
%{_libdir}/libhiredis.so.1.0.0
|
|
|
|
|
|
|
|
%{_libdir}/libhiredis_ssl.so.1.0.0
|
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%files devel
|
|
|
|
%doc CHANGELOG.md README.md
|
|
|
|
%doc CHANGELOG.md README.md
|
|
|
|
%{_includedir}/%{name}/
|
|
|
|
%{_includedir}/%{name}/
|
|
|
|
%{_libdir}/libhiredis.so
|
|
|
|
%{_libdir}/libhiredis.so
|
|
|
|
|
|
|
|
%{_libdir}/libhiredis_ssl.so
|
|
|
|
%{_libdir}/pkgconfig/hiredis.pc
|
|
|
|
%{_libdir}/pkgconfig/hiredis.pc
|
|
|
|
|
|
|
|
%{_libdir}/pkgconfig/hiredis_ssl.pc
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
%changelog
|
|
|
|
|
|
|
|
* Mon May 27 2024 Kevin Fenzi <kevin@scrye.com> - 1.0.2-2
|
|
|
|
|
|
|
|
- Install SSL library and headers ( thanks Tom Briden <tom.briden@eckoh.com> )
|
|
|
|
|
|
|
|
- Fixes rhbz#2266018
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Jan 15 2022 Orion Poplawski <orion@nwra.com> - 1.0.2-1
|
|
|
|
* Sat Jan 15 2022 Orion Poplawski <orion@nwra.com> - 1.0.2-1
|
|
|
|
- Update to 1.0.2
|
|
|
|
- Update to 1.0.2
|
|
|
|
- Enable SSL
|
|
|
|
- Enable SSL
|
|
|
|