Accepting request 1093859 from network:ha-clustering:Factory
- Update to version 2.0.7+20230607.06c8641 (v2.0.7): - blackbox: fix potential overlow/memory corruption (gh#ClusterLabs/libqb#486) - tests: allow -j to work (gh#ClusterLabs/libqb#485) - strlcpy: avoid compiler warning from strncpy (gh#ClusterLabs/libqb#473) - timer: Move state check to before time check (gh#ClusterLabs/libqb#479) - ipc: Retry receiving credentials if the the message is short (gh#ClusterLabs/libqb#476, rh#2111711) - lib: Fix some small bugs spotted by newest covscan (gh#ClusterLabs/libqb#471) - doxygen2man: Fix function parameter alignment (gh#ClusterLabs/libqb#468) (forwarded request 1093858 from yan_gao) OBS-URL: https://build.opensuse.org/request/show/1093859 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libqb?expand=0&rev=35
This commit is contained in:
commit
d7fdc7f629
6
_service
6
_service
@ -8,10 +8,10 @@
|
|||||||
To update to a new release, change "revision" to the desired
|
To update to a new release, change "revision" to the desired
|
||||||
git commit hash and bump "version" if necessary
|
git commit hash and bump "version" if necessary
|
||||||
|
|
||||||
<param name="version">2.0.6</param>
|
<param name="version">2.0.7</param>
|
||||||
-->
|
-->
|
||||||
<param name="versionformat">2.0.6+%cd.%h</param>
|
<param name="versionformat">2.0.7+%cd.%h</param>
|
||||||
<param name="revision">v2.0.6</param>
|
<param name="revision">v2.0.7</param>
|
||||||
<param name="changesgenerate">enable</param>
|
<param name="changesgenerate">enable</param>
|
||||||
</service>
|
</service>
|
||||||
|
|
||||||
|
@ -5,4 +5,4 @@
|
|||||||
</service>
|
</service>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">https://github.com/ClusterLabs/libqb.git</param>
|
<param name="url">https://github.com/ClusterLabs/libqb.git</param>
|
||||||
<param name="changesrevision">758044bed5f615c90818aa5431d00303288888e5</param></service></servicedata>
|
<param name="changesrevision">06c8641de2e1fef1fc6026709fb2109fbbb79d79</param></service></servicedata>
|
BIN
libqb-2.0.6+20220323.758044b.tar.xz
(Stored with Git LFS)
BIN
libqb-2.0.6+20220323.758044b.tar.xz
(Stored with Git LFS)
Binary file not shown.
BIN
libqb-2.0.7+20230607.06c8641.tar.xz
(Stored with Git LFS)
Normal file
BIN
libqb-2.0.7+20230607.06c8641.tar.xz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 19 18:31:05 UTC 2023 - Yan Gao <ygao@suse.com>
|
||||||
|
|
||||||
|
- Update to version 2.0.7+20230607.06c8641 (v2.0.7):
|
||||||
|
- blackbox: fix potential overlow/memory corruption (gh#ClusterLabs/libqb#486)
|
||||||
|
- tests: allow -j to work (gh#ClusterLabs/libqb#485)
|
||||||
|
- strlcpy: avoid compiler warning from strncpy (gh#ClusterLabs/libqb#473)
|
||||||
|
- timer: Move state check to before time check (gh#ClusterLabs/libqb#479)
|
||||||
|
- ipc: Retry receiving credentials if the the message is short (gh#ClusterLabs/libqb#476, rh#2111711)
|
||||||
|
- lib: Fix some small bugs spotted by newest covscan (gh#ClusterLabs/libqb#471)
|
||||||
|
- doxygen2man: Fix function parameter alignment (gh#ClusterLabs/libqb#468)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 21 07:50:45 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
Thu Apr 21 07:50:45 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libqb
|
# spec file for package libqb
|
||||||
#
|
#
|
||||||
# Copyright (c) 2022 SUSE LLC
|
# Copyright (c) 2023 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -21,7 +21,7 @@
|
|||||||
%bcond_without doxygen2man
|
%bcond_without doxygen2man
|
||||||
|
|
||||||
Name: libqb
|
Name: libqb
|
||||||
Version: 2.0.6+20220323.758044b
|
Version: 2.0.7+20230607.06c8641
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: An IPC library for high performance servers
|
Summary: An IPC library for high performance servers
|
||||||
License: LGPL-2.1-or-later
|
License: LGPL-2.1-or-later
|
||||||
@ -37,6 +37,7 @@ BuildRequires: doxygen
|
|||||||
BuildRequires: libtool
|
BuildRequires: libtool
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: procps
|
BuildRequires: procps
|
||||||
|
BuildRequires: util-linux
|
||||||
# Need git so build-aux/git-version-gen can extract the version number and
|
# Need git so build-aux/git-version-gen can extract the version number and
|
||||||
# commit hash during autogen run (not used currently)
|
# commit hash during autogen run (not used currently)
|
||||||
#BuildRequires: git
|
#BuildRequires: git
|
||||||
|
Loading…
Reference in New Issue
Block a user