| libqb.spec | libqb.spec | |||
|---|---|---|---|---|
| Name: libqb | Name: libqb | |||
| Version: 0.4.1 | Version: 0.8.1 | |||
| Release: 2%{?dist} | Release: 2%{?dist} | |||
| Summary: An IPC library for high performance servers | Summary: An IPC library for high performance servers | |||
| Group: System Environment/Libraries | Group: System Environment/Libraries | |||
| License: LGPLv2+ | License: LGPLv2+ | |||
| URL: http://www.libqb.org | URL: http://www.libqb.org | |||
| Source0: https://fedorahosted.org/releases/q/u/quarterback/%{name}-% {version}.tar.gz | Source0: https://fedorahosted.org/releases/q/u/quarterback/%{name}-% {version}.tar.xz | |||
| BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) | BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) | |||
| Patch1: 0001-UTIL-fix-qb_timespec_add_ms.patch | ||||
| BuildRequires: libtool doxygen procps check-devel | BuildRequires: libtool doxygen procps check-devel | |||
| #Requires: <nothing> | #Requires: <nothing> | |||
| %description | %description | |||
| libqb provides high performance client server reusable features. | libqb provides high performance client server reusable features. | |||
| Initially these are IPC and poll. | Initially these are IPC and poll. | |||
| %prep | %prep | |||
| %setup -q | %setup -q | |||
| %patch1 -p1 | ||||
| %build | %build | |||
| %configure --disable-static | %configure --disable-static | |||
| make %{?_smp_mflags} | make %{?_smp_mflags} | |||
| %check | %check | |||
| make check | make check | |||
| %install | %install | |||
| rm -rf $RPM_BUILD_ROOT | rm -rf $RPM_BUILD_ROOT | |||
| make install DESTDIR=$RPM_BUILD_ROOT | make install DESTDIR=$RPM_BUILD_ROOT | |||
| skipping to change at line 59 | skipping to change at line 63 | |||
| Summary: Development files for %{name} | Summary: Development files for %{name} | |||
| Group: Development/Libraries | Group: Development/Libraries | |||
| Requires: %{name} = %{version}-%{release} pkgconfig | Requires: %{name} = %{version}-%{release} pkgconfig | |||
| %description devel | %description devel | |||
| The %{name}-devel package contains libraries and header files for | The %{name}-devel package contains libraries and header files for | |||
| developing applications that use %{name}. | developing applications that use %{name}. | |||
| %files devel | %files devel | |||
| %defattr(-,root,root,-) | %defattr(-,root,root,-) | |||
| %doc COPYING README | %doc COPYING README.markdown | |||
| %{_includedir}/qb/ | %{_includedir}/qb/ | |||
| %{_libdir}/libqb.so | %{_libdir}/libqb.so | |||
| %{_libdir}/pkgconfig/libqb.pc | %{_libdir}/pkgconfig/libqb.pc | |||
| %{_mandir}/man3/qb*3* | %{_mandir}/man3/qb*3* | |||
| %changelog | %changelog | |||
| * Tue Jan 10 2012 Angus Salkeld <asalkeld@redhat.com> - 0.8.1-2 | ||||
| - fix qb_timespec_add_ms() | ||||
| * Thu Jan 5 2012 Angus Salkeld <asalkeld@redhat.com> - 0.8.1-1 | ||||
| - Rebased to 0.8.1 (#771914) | ||||
| * Wed Nov 17 2011 Angus Salkeld <asalkeld@redhat.com> - 0.7.0-1 | ||||
| - Rebased to 0.7.0 (#754610) | ||||
| * Thu Sep 1 2011 Angus Salkeld <asalkeld@redhat.com> - 0.6.0-2 | ||||
| - LOG: fix the default syslog filter | ||||
| * Tue Aug 30 2011 Angus Salkeld <asalkeld@redhat.com> - 0.6.0-1 | ||||
| - Rebased to 0.6.0 which includes (#734457): | ||||
| - Add a stop watch | ||||
| - LOG: serialize the va_list, don't snprintf | ||||
| - LOG: change active list into array access | ||||
| - atomic: fix qb_atomic_pointer macros | ||||
| - LOG: allow the thread priority to be set. | ||||
| - Fix splint warning on ubuntu 11.04 | ||||
| * Mon Jul 18 2011 Angus Salkeld <asalkeld@redhat.com> - 0.5.1-1 | ||||
| - Rebased to 0.5.1 which includes: | ||||
| - LOOP: make the return more consistent in qb_loop_timer_expire_time_get() | ||||
| - LOG: add string.h to qblog.h | ||||
| - Add a qb_strerror_r wrapper. | ||||
| - don't let an invalid time stamp provoke a NULL dereference | ||||
| - LOG: move priority check up to prevent unnecessary format. | ||||
| - rename README to README.markdown | ||||
| * Wed Jun 8 2011 Angus Salkeld <asalkeld@redhat.com> - 0.5.0-1 | ||||
| - Rebased to 0.5.0 which includes: | ||||
| - new logging API | ||||
| - support for sparc | ||||
| - coverity fixes | ||||
| * Tue Feb 8 2011 Angus Salkeld <asalkeld@redhat.com> - 0.4.1-2 | * Tue Feb 8 2011 Angus Salkeld <asalkeld@redhat.com> - 0.4.1-2 | |||
| - SPEC: improve devel files section | - SPEC: improve devel files section | |||
| - SPEC: remove global variables | - SPEC: remove global variables | |||
| * Mon Jan 31 2011 Angus Salkeld <asalkeld@redhat.com> - 0.4.1-1 | * Mon Jan 31 2011 Angus Salkeld <asalkeld@redhat.com> - 0.4.1-1 | |||
| - SPEC: add procps to BuildRequire | - SPEC: add procps to BuildRequire | |||
| - SPEC: remove automake and autoconf from BuildRequire | - SPEC: remove automake and autoconf from BuildRequire | |||
| - SPEC: remove call to ./autogen.sh | - SPEC: remove call to ./autogen.sh | |||
| - SPEC: update to new upstream version 0.4.1 | - SPEC: update to new upstream version 0.4.1 | |||
| - LOOP: check read() return value | - LOOP: check read() return value | |||
| End of changes. 6 change blocks. | ||||
| 3 lines changed or deleted | 43 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ | ||||