SHA256
1
0
forked from pool/bird
Ana Guerrero 2024-03-25 20:13:29 +00:00 committed by Git OBS Bridge
commit 24b4e3de13
5 changed files with 39 additions and 5 deletions

View File

@ -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
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7a6458fa41109c005531b23e3f7abd63d7000a99d195db4944ebccb539ed02f0
size 1408694

View File

@ -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> Wed Feb 7 11:58:58 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>

View File

@ -21,7 +21,7 @@
%define bird_home %{_localstatedir}/lib/bird %define bird_home %{_localstatedir}/lib/bird
%define bird_runtimedir %{_rundir}/%{name} %define bird_runtimedir %{_rundir}/%{name}
Name: bird Name: bird
Version: 2.14 Version: 2.15
Release: 0 Release: 0
Summary: The BIRD Internet Routing Daemon Summary: The BIRD Internet Routing Daemon
License: GPL-2.0-or-later 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 Source: ftp://bird.network.cz/pub/bird/bird-%{version}.tar.gz
Source1: bird.service Source1: bird.service
Source3: bird.tmpfiles.d Source3: bird.tmpfiles.d
Patch1: log-commit.patch
BuildRequires: bison BuildRequires: bison
BuildRequires: flex BuildRequires: flex
BuildRequires: ncurses-devel BuildRequires: ncurses-devel
@ -59,6 +60,7 @@ This package holds common files and directories.
Summary: Documentation for the BIRD Internet Routing Daemon Summary: Documentation for the BIRD Internet Routing Daemon
Group: Documentation/HTML Group: Documentation/HTML
BuildRequires: perl-FindBin-Real BuildRequires: perl-FindBin-Real
BuildArch: noarch
%description doc %description doc
BIRD is an implementation for routing Internet Protocol packets. 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. This package holds the HTML documentation.
%prep %prep
%setup -q %autosetup -p1
%build %build
export CFLAGS="%{optflags} -fpic -DPIC -fno-strict-aliasing -Wno-parentheses -Wno-pointer-sign" export CFLAGS="%{optflags} -fpic -DPIC -fno-strict-aliasing -Wno-parentheses -Wno-pointer-sign"

12
log-commit.patch Normal file
View 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)))