Accepting request 1161492 from network
OBS-URL: https://build.opensuse.org/request/show/1161492 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/bird?expand=0&rev=20
This commit is contained in:
commit
24b4e3de13
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b0b9f6f8566541b9be4af1f0cac675c5a3785601a55667a7ec3d7de29735a786
|
||||
size 1396217
|
3
bird-2.15.tar.gz
Normal file
3
bird-2.15.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7a6458fa41109c005531b23e3f7abd63d7000a99d195db4944ebccb539ed02f0
|
||||
size 1408694
|
20
bird.changes
20
bird.changes
@ -1,3 +1,23 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 13 13:42:22 UTC 2024 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
- log-commit.patch: fix crash in log_commit with empty log list
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 12 17:12:37 UTC 2024 - Martin Hauke <mardnh@gmx.de>
|
||||
|
||||
- Update to version 2.15
|
||||
* BGP: Send hold timer
|
||||
* BGP: New options to specify required BGP capabilities
|
||||
* BFD: Improvements to 'show bfd sessions' command
|
||||
* RPKI: New 'local address' configuration option
|
||||
* Linux: Support for more route attributes, including
|
||||
TCP congestion control algorithm
|
||||
* Support for UDP logging
|
||||
* Static routes can have both nexthop and interface specified
|
||||
* Completion of command options in BIRD client
|
||||
* Many bugfixes and improvements
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 7 11:58:58 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
%define bird_home %{_localstatedir}/lib/bird
|
||||
%define bird_runtimedir %{_rundir}/%{name}
|
||||
Name: bird
|
||||
Version: 2.14
|
||||
Version: 2.15
|
||||
Release: 0
|
||||
Summary: The BIRD Internet Routing Daemon
|
||||
License: GPL-2.0-or-later
|
||||
@ -30,6 +30,7 @@ URL: https://bird.network.cz/
|
||||
Source: ftp://bird.network.cz/pub/bird/bird-%{version}.tar.gz
|
||||
Source1: bird.service
|
||||
Source3: bird.tmpfiles.d
|
||||
Patch1: log-commit.patch
|
||||
BuildRequires: bison
|
||||
BuildRequires: flex
|
||||
BuildRequires: ncurses-devel
|
||||
@ -59,6 +60,7 @@ This package holds common files and directories.
|
||||
Summary: Documentation for the BIRD Internet Routing Daemon
|
||||
Group: Documentation/HTML
|
||||
BuildRequires: perl-FindBin-Real
|
||||
BuildArch: noarch
|
||||
|
||||
%description doc
|
||||
BIRD is an implementation for routing Internet Protocol packets.
|
||||
@ -66,7 +68,7 @@ BIRD is an implementation for routing Internet Protocol packets.
|
||||
This package holds the HTML documentation.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
export CFLAGS="%{optflags} -fpic -DPIC -fno-strict-aliasing -Wno-parentheses -Wno-pointer-sign"
|
||||
|
12
log-commit.patch
Normal file
12
log-commit.patch
Normal file
@ -0,0 +1,12 @@
|
||||
Index: bird-2.14/sysdep/unix/log.c
|
||||
===================================================================
|
||||
--- bird-2.14.orig/sysdep/unix/log.c
|
||||
+++ bird-2.14/sysdep/unix/log.c
|
||||
@@ -160,6 +160,7 @@ log_commit(int class, buffer *buf)
|
||||
strcpy(buf->end - 100, " ... <too long>");
|
||||
|
||||
log_lock();
|
||||
+ if (current_log_list)
|
||||
WALK_LIST(l, *current_log_list)
|
||||
{
|
||||
if (!(l->mask & (1 << class)))
|
Loading…
Reference in New Issue
Block a user