diff --git a/README.md b/README.md index b3fef9b..13ad1d1 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # hiredis10 +Minimalistic C client for Redis >= 1.2. + diff --git a/hiredis10.spec b/hiredis10.spec new file mode 100644 index 0000000..0b4e431 --- /dev/null +++ b/hiredis10.spec @@ -0,0 +1,89 @@ +Name: hiredis10 +Version: 1.0.2 +Release: 2mamba +Summary: Minimalistic C client for Redis >= 1.2 +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/redis/hiredis +Source: https://github.com/redis/hiredis.git/v%{version}/hiredis-%{version}.tar.bz2 +License: BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +## AUTOBUILDREQ-END +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description +Minimalistic C client for Redis >= 1.2. + +%package -n lib%{name} +Group: System/Libraries +Summary: Minimalistic C client for Redis >= 1.2 + +%description -n lib%{name} +Minimalistic C client for Redis >= 1.2. + +%package -n lib%{name}-devel +Group: Development/Libraries +Summary: Development files for %{name} +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} +Requires: pkg-config + +%description -n lib%{name}-devel +This package contains libraries and header files for developing applications that use %{name}. + +%debug_package + +%prep +%setup -q -n hiredis-%{version} + +%build +%make PREFIX=%{_prefix} LIBRARY_PATH=%{_lib} + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall PREFIX=%{_prefix} LIBRARY_PATH=%{_lib} + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -n lib%{name} -p /sbin/ldconfig +%postun -n lib%{name} -p /sbin/ldconfig + +%files -n lib%{name} +%defattr(-,root,root) +%{_libdir}/libhiredis.so.* +%doc COPYING + +%files -n lib%{name}-devel +%defattr(-,root,root) +%dir %{_includedir}/hiredis +%{_includedir}/hiredis/* +%{_libdir}/libhiredis.a +%{_libdir}/libhiredis.so +%{_libdir}/pkgconfig/hiredis.pc +%doc README.md + + +%changelog +* Mon Dec 26 2022 Silvan Calarco 1.0.2-2mamba +- legacy package + +* Sun Oct 10 2021 Automatic Build System 1.0.2-1mamba +- automatic version update by autodist + +* Tue Oct 05 2021 Automatic Build System 1.0.1-1mamba +- automatic version update by autodist + +* Sun Aug 09 2020 Automatic Build System 1.0.0-1mamba +- automatic version update by autodist + +* Tue Mar 31 2020 Automatic Build System 0.14.1-1mamba +- automatic version update by autodist + +* Sun Feb 02 2020 Automatic Build System 0.14.0-1mamba +- automatic version update by autodist + +* Mon May 07 2018 Silvan Calarco 0.13.3-1mamba +- package created using the webbuild interface