forked from pool/libqb
- Update to version 1.0.3+20171226.6d62b64: - build: fix configure script neglecting, re-enable out-of-tree builds - Update to version 1.0.3 - warnings cleanup: fix initialiser warning - warnings cleanup: Wformat: sign-correct PRIu32 specifiers as appropriate - warnings cleanup: Wsign-compare: log_format: int32_t -> size_t - warnings cleanup: Wsign-compare: hdb: uint32_t <-> int32_t - warnings cleanup: Wsign-compare: array: int32_t -> size_t - warnings cleanup: hdb+loop_timerlist: Wsign-compare: (canary?) variables - warnings cleanup: Wshift-overflow: trigger arithmetic conv. to unsigned - Upstream version cs: 28dff090c74b6ba8609c4797294a5afe3fe73987 (v1.0.3) - fix internal object symbol's leak & expose run-time lib version (bsc#1074327) - bare fix for libqb logging not working with ld.bfd/binutils 2.29+ (bsc#1074327) - add extra run-time (client, libqb) checks that logging will work (bsc#1074327) - tests: add a script to generate callsite-heavy logging client... (bsc#1074327) - tests: new sort of tests dubbed "functional", cover linker vs. logging (bsc#1074327) - configure: check section boundary symbols present in the test (bsc#1074327) - qblog.h: better explanation + behaviour of QB_LOG_INIT_DATA (bsc#1074327) - log: use fdatasync instead of fsync where possible (#263) - Upstream version cs: c011b12fcaf093f0463901154c475905f51d783a OBS-URL: https://build.opensuse.org/request/show/561126 OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/libqb?expand=0&rev=84
117 lines
3.3 KiB
RPMSpec
117 lines
3.3 KiB
RPMSpec
#
|
|
# spec file for package libqb
|
|
#
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%bcond_without check
|
|
|
|
Name: libqb
|
|
Version: 1.0.3+20171226.6d62b64
|
|
Release: 0
|
|
Summary: An IPC library for high performance servers
|
|
License: LGPL-2.1+
|
|
Group: Development/Libraries/C and C++
|
|
Url: https://github.com/ClusterLabs/libqb
|
|
Source0: %{name}-%{version}.tar.xz
|
|
Source1: baselibs.conf
|
|
Patch1: libqb-configure-package-version.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildRequires: autoconf
|
|
BuildRequires: automake
|
|
BuildRequires: check-devel
|
|
BuildRequires: doxygen
|
|
BuildRequires: libtool
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: procps
|
|
# Need git so build-aux/git-version-gen can extract the version number and
|
|
# commit hash during autogen run (not used currently)
|
|
#BuildRequires: git
|
|
|
|
%description
|
|
libqb is a library with the primary purpose of providing high performance
|
|
client server reusable features. It provides high performance logging,
|
|
tracing, ipc, and poll.
|
|
|
|
%package -n libqb0
|
|
Summary: An IPC library for high performance servers
|
|
Group: System/Libraries
|
|
Provides: %{name} = %{version}
|
|
|
|
%description -n libqb0
|
|
libqb is a library with the primary purpose of providing high performance
|
|
client server reusable features. It provides high performance logging,
|
|
tracing, ipc, and poll.
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: pkgconfig
|
|
|
|
%description devel
|
|
libqb is a library with the primary purpose of providing high performance
|
|
client server reusable features. It provides high performance logging,
|
|
tracing, ipc, and poll.
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{version}
|
|
%patch1 -p1
|
|
|
|
%build
|
|
./autogen.sh
|
|
%configure --disable-static
|
|
make %{?_smp_mflags}
|
|
|
|
%if 0%{?with_check}
|
|
%check
|
|
# Tests require writable /dev/shm and /var/run
|
|
# TODO: This test might not be quite right -- it seems to fail on OBS,
|
|
# but OBS is capable of doing "make check" successfully, whereas
|
|
# "osc build" in a chroot fails.
|
|
if [ -w /dev/shm -a -w /var/run ] ; then
|
|
|
|
make V=1 check \
|
|
&& make -C tests/functional/log_internal V=1 check
|
|
fi
|
|
%endif
|
|
|
|
%install
|
|
%make_install
|
|
find %{buildroot} -name '*.la' -delete
|
|
rm -rf %{buildroot}%{_datadir}/doc
|
|
|
|
%post -n libqb0 -p /sbin/ldconfig
|
|
|
|
%postun -n libqb0 -p /sbin/ldconfig
|
|
|
|
%files -n libqb0
|
|
%defattr(-,root,root,-)
|
|
%doc COPYING
|
|
%{_sbindir}/qb-blackbox
|
|
%{_libdir}/libqb.so.*
|
|
%{_mandir}/man8/qb-blackbox.8.gz
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%doc COPYING README.markdown
|
|
%{_includedir}/qb/
|
|
%{_libdir}/libqb.so
|
|
%{_libdir}/pkgconfig/libqb.pc
|
|
%{_mandir}/man3/qb*3*
|
|
|
|
%changelog
|