2011-02-15 23:06:20 +00:00
|
|
|
Name: libqb
|
2012-01-05 11:41:19 +00:00
|
|
|
Version: 0.8.1
|
2011-11-17 01:34:46 +00:00
|
|
|
Release: 1%{?dist}
|
2011-02-15 23:06:20 +00:00
|
|
|
Summary: An IPC library for high performance servers
|
|
|
|
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPLv2+
|
|
|
|
URL: http://www.libqb.org
|
2012-01-05 11:41:19 +00:00
|
|
|
Source0: https://fedorahosted.org/releases/q/u/quarterback/%{name}-%{version}.tar.xz
|
2011-02-15 23:06:20 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
|
|
|
BuildRequires: libtool doxygen procps check-devel
|
|
|
|
|
|
|
|
#Requires: <nothing>
|
|
|
|
|
|
|
|
%description
|
|
|
|
libqb provides high performance client server reusable features.
|
|
|
|
Initially these are IPC and poll.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
|
|
|
%configure --disable-static
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%check
|
|
|
|
make check
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
|
|
|
rm -rf $RPM_BUILD_ROOT/%{_docdir}/*
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc COPYING
|
|
|
|
%{_libdir}/libqb.so.*
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release} pkgconfig
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and header files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
2011-07-18 01:37:07 +00:00
|
|
|
%doc COPYING README.markdown
|
2011-02-15 23:06:20 +00:00
|
|
|
%{_includedir}/qb/
|
|
|
|
%{_libdir}/libqb.so
|
|
|
|
%{_libdir}/pkgconfig/libqb.pc
|
|
|
|
%{_mandir}/man3/qb*3*
|
|
|
|
|
|
|
|
%changelog
|
2012-01-05 11:41:19 +00:00
|
|
|
* Thu Jan 5 2012 Angus Salkeld <asalkeld@redhat.com> - 0.8.1-1
|
|
|
|
- Rebased to 0.8.1 (#771914)
|
|
|
|
|
2011-11-17 01:34:46 +00:00
|
|
|
* Wed Nov 17 2011 Angus Salkeld <asalkeld@redhat.com> - 0.7.0-1
|
|
|
|
- Rebased to 0.7.0 (#754610)
|
|
|
|
|
2011-09-01 04:08:22 +00:00
|
|
|
* Thu Sep 1 2011 Angus Salkeld <asalkeld@redhat.com> - 0.6.0-2
|
|
|
|
- LOG: fix the default syslog filter
|
|
|
|
|
2011-08-30 12:52:45 +00:00
|
|
|
* 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
|
|
|
|
|
2011-07-18 01:37:07 +00:00
|
|
|
* 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
|
|
|
|
|
2011-06-08 00:21:29 +00:00
|
|
|
* 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
|
|
|
|
|
2011-02-15 23:06:20 +00:00
|
|
|
* Tue Feb 8 2011 Angus Salkeld <asalkeld@redhat.com> - 0.4.1-2
|
|
|
|
- SPEC: improve devel files section
|
|
|
|
- SPEC: remove global variables
|
|
|
|
|
|
|
|
* Mon Jan 31 2011 Angus Salkeld <asalkeld@redhat.com> - 0.4.1-1
|
|
|
|
- SPEC: add procps to BuildRequire
|
|
|
|
- SPEC: remove automake and autoconf from BuildRequire
|
|
|
|
- SPEC: remove call to ./autogen.sh
|
|
|
|
- SPEC: update to new upstream version 0.4.1
|
|
|
|
- LOOP: check read() return value
|
|
|
|
- DOCS: add missing @param on new timeout argument
|
|
|
|
- BUILD: only set -g and -O options if explicitly requested.
|
|
|
|
- BUILD: Remove unneccessary check for library "dl"
|
|
|
|
- BUILD: improve the release build system
|
|
|
|
|
|
|
|
* Fri Jan 14 2011 Angus Salkeld <asalkeld@redhat.com> - 0.4.0-2
|
|
|
|
- remove "." from Summary
|
|
|
|
- Add "check-devel to BuildRequires
|
|
|
|
- Add "make check" to check section
|
|
|
|
- Changed a buildroot to RPM_BUILD_ROOT
|
|
|
|
- Document alphatag, numcomm and dirty variables.
|
|
|
|
|
|
|
|
* Sun Jan 09 2011 Angus Salkeld <asalkeld@redhat.com> - 0.4.0-1
|
|
|
|
- Initial release
|