public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/bird] epel8: Merge remote branch 'origin/main' into epel8
@ 2026-06-09 22:09 Robert Scheck
0 siblings, 0 replies; 3+ messages in thread
From: Robert Scheck @ 2026-06-09 22:09 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/bird
Branch : epel8
Commit : ea2b7390f11cb7968e20ce6f9228fc62722be5e5
Author : Robert Scheck <robert@fedoraproject.org>
Date : 2026-06-10T00:09:21+02:00
Stats : +5/-2 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/bird/c/ea2b7390f11cb7968e20ce6f9228fc62722be5e5?branch=epel8
Log:
Merge remote branch 'origin/main' into epel8
---
diff --git a/bird.spec b/bird.spec
index 5dc910c..37f8de0 100644
--- a/bird.spec
+++ b/bird.spec
@@ -1,7 +1,7 @@
%global _hardened_build 1
Name: bird
-Version: 3.3.0
+Version: 3.3.1
Release: 1%{?dist}
Summary: BIRD Internet Routing Daemon
@@ -111,6 +111,9 @@ make test
%endif
%changelog
+* Wed Jun 10 2026 Robert Scheck <robert@fedoraproject.org> - 3.3.1-1
+- Upgrade to 3.3.1 (#2487252)
+
* Wed Jun 03 2026 Robert Scheck <robert@fedoraproject.org> - 3.3.0-1
- Upgrade to 3.3.0 (#2481185)
diff --git a/sources b/sources
index 6670af7..abb194a 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (bird-3.3.0.tar.gz) = afaad7c3d3b00db587c31817fffa12a92290c5e19c7817f93480264a6b920fc18847c073fad5beb212deceb2479633055f94fd8ccf2f80bbdbd9edacd5cc3068
+SHA512 (bird-3.3.1.tar.gz) = 2fafc6d7032ae243b37d9e721b65cd708e3eadd4955781645f9a2699c30ab4b09ea4b680f195400486ad8720bc73ce5fbc5e9d9d20eee065018da319175415d4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [rpms/bird] epel8: Merge remote branch 'origin/main' into epel8
@ 2026-06-16 12:29 Robert Scheck
0 siblings, 0 replies; 3+ messages in thread
From: Robert Scheck @ 2026-06-16 12:29 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/bird
Branch : epel8
Commit : e91d5e98b53644a72481c38807f253c28ee42996
Author : Robert Scheck <robert@fedoraproject.org>
Date : 2026-06-16T14:28:51+02:00
Stats : +34/-2 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/bird/c/e91d5e98b53644a72481c38807f253c28ee42996?branch=epel8
Log:
Merge remote branch 'origin/main' into epel8
---
diff --git a/bird-3.3.1-show-route-for.patch b/bird-3.3.1-show-route-for.patch
new file mode 100644
index 0000000..4f8e255
--- /dev/null
+++ b/bird-3.3.1-show-route-for.patch
@@ -0,0 +1,27 @@
+From d1306a8d71aec820c672620fde70d5af4e30916d Mon Sep 17 00:00:00 2001
+From: Igor Putovny <igor.putovny@nic.cz>
+Date: Mon, 15 Jun 2026 20:41:14 +0200
+Subject: [PATCH] Nest: Fix crash of 'show route for' when no network is found
+
+Fixes: #444
+---
+ nest/rt-show.c | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/nest/rt-show.c b/nest/rt-show.c
+index a872a1180..7de4ffcfc 100644
+--- a/nest/rt-show.c
++++ b/nest/rt-show.c
+@@ -306,7 +306,8 @@ rt_show_cont(struct cli *c)
+ break;
+ }
+
+- rt_show_net(d, lpm);
++ if (lpm)
++ rt_show_net(d, lpm);
+ }
+ else
+ RT_FEED_WALK(&d->tab->req, f)
+--
+GitLab
+
diff --git a/bird.spec b/bird.spec
index 37f8de0..ff25585 100644
--- a/bird.spec
+++ b/bird.spec
@@ -2,7 +2,7 @@
Name: bird
Version: 3.3.1
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: BIRD Internet Routing Daemon
License: GPL-2.0-or-later
@@ -11,6 +11,7 @@ Source0: https://bird.nic.cz/download/bird-%{version}.tar.gz
Source1: bird.service
Source2: bird.tmpfilesd
Source3: bird.sysusersd
+Patch0: https://gitlab.nic.cz/labs/bird/-/commit/d1306a8d71aec820c672620fde70d5af4e30916d.patch#/bird-3.3.1-show-route-for.patch
BuildRequires: flex
BuildRequires: bison
@@ -59,7 +60,7 @@ powerful language for route filtering.
%endif
%prep
-%setup -q
+%autosetup -p1
%build
%configure --runstatedir=%{_rundir}/bird
@@ -111,6 +112,10 @@ make test
%endif
%changelog
+* Tue Jun 16 2026 Robert Scheck <robert@fedoraproject.org> - 3.3.1-2
+- Add upstream patch to fix crash of 'show route for' when no
+ network is found
+
* Wed Jun 10 2026 Robert Scheck <robert@fedoraproject.org> - 3.3.1-1
- Upgrade to 3.3.1 (#2487252)
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [rpms/bird] epel8: Merge remote branch 'origin/main' into epel8
@ 2026-06-03 21:39 Robert Scheck
0 siblings, 0 replies; 3+ messages in thread
From: Robert Scheck @ 2026-06-03 21:39 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/bird
Branch : epel8
Commit : 252fd7aec7602da14b39377f672f6d81b8c385da
Author : Robert Scheck <robert@fedoraproject.org>
Date : 2026-06-03T23:38:54+02:00
Stats : +5/-2 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/bird/c/252fd7aec7602da14b39377f672f6d81b8c385da?branch=epel8
Log:
Merge remote branch 'origin/main' into epel8
---
diff --git a/bird.spec b/bird.spec
index 49681db..5dc910c 100644
--- a/bird.spec
+++ b/bird.spec
@@ -1,7 +1,7 @@
%global _hardened_build 1
Name: bird
-Version: 3.2.1
+Version: 3.3.0
Release: 1%{?dist}
Summary: BIRD Internet Routing Daemon
@@ -111,6 +111,9 @@ make test
%endif
%changelog
+* Wed Jun 03 2026 Robert Scheck <robert@fedoraproject.org> - 3.3.0-1
+- Upgrade to 3.3.0 (#2481185)
+
* Fri Apr 03 2026 Robert Scheck <robert@fedoraproject.org> - 3.2.1-1
- Upgrade to 3.2.1
diff --git a/sources b/sources
index 605d7be..6670af7 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (bird-3.2.1.tar.gz) = e7f5f18a387b7e37c801630e4fd49ca5dcad18d9123dc9badb78811ea95dfe0e2ad2963b709b0a44658ffb17ebbe89eacfb24705594f46dead815bc4c3a6e220
+SHA512 (bird-3.3.0.tar.gz) = afaad7c3d3b00db587c31817fffa12a92290c5e19c7817f93480264a6b920fc18847c073fad5beb212deceb2479633055f94fd8ccf2f80bbdbd9edacd5cc3068
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-06-16 12:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-09 22:09 [rpms/bird] epel8: Merge remote branch 'origin/main' into epel8 Robert Scheck
-- strict thread matches above, loose matches on Subject: below --
2026-06-16 12:29 Robert Scheck
2026-06-03 21:39 Robert Scheck
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox