Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] bird: update to 2.13
@ 2023-04-25  7:12 klarasm
  2023-04-25  7:15 ` klarasm
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: klarasm @ 2023-04-25  7:12 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 711 bytes --]

There is a new pull request by klarasm against master on the void-packages repository

https://github.com/klarasm/void-packages bird-2.13
https://github.com/void-linux/void-packages/pull/43604

bird: update to 2.13
- drop patch for failing tests on musl, not needed anymore
- upstream changed versioning

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc, x86_64-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl

A patch file from https://github.com/void-linux/void-packages/pull/43604.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-bird-2.13-43604.patch --]
[-- Type: text/x-diff, Size: 2163 bytes --]

From c758ff449821257a903a67c155a093d5d38bce1b Mon Sep 17 00:00:00 2001
From: Klara Modin <klarasmodin@gmail.com>
Date: Sun, 23 Apr 2023 17:54:30 +0200
Subject: [PATCH] bird: update to 2.13

- drop patch for failing tests, not needed anymore
- upstream changed versioning
---
 srcpkgs/bird/patches/fix-tests-musl.patch | 25 -----------------------
 srcpkgs/bird/template                     |  4 ++--
 2 files changed, 2 insertions(+), 27 deletions(-)
 delete mode 100644 srcpkgs/bird/patches/fix-tests-musl.patch

diff --git a/srcpkgs/bird/patches/fix-tests-musl.patch b/srcpkgs/bird/patches/fix-tests-musl.patch
deleted file mode 100644
index 55403f6e75ee..000000000000
--- a/srcpkgs/bird/patches/fix-tests-musl.patch
+++ /dev/null
@@ -1,25 +0,0 @@
---- a/lib/printf_test.c
-+++ b/lib/printf_test.c
-@@ -22,6 +22,7 @@ static int
- t_simple(void)
- {
-   char buf[256];
-+  const char *errormsg;
-   memset(buf, 0xa5, 256);
- 
-   BSPRINTF(0, "", buf, "", NULL);
-@@ -32,11 +33,12 @@ t_simple(void)
-   BSPRINTF(1, "@", buf, "@", 64);
-   BSPRINTF(1, "\xff", buf, "%c", 0xff);
- 
--  errno = 5;
--  BSPRINTF(18, "Input/output error", buf, "%m");
-+  errormsg = strerror(EIO);
-+  errno = EIO;
-+  BSPRINTF(strlen(errormsg), errormsg, buf, "%m");
-   errno = 0;
- 
--  BSPRINTF(18, "Input/output error", buf, "%M", 5);
-+  BSPRINTF(strlen(errormsg), errormsg, buf, "%M", EIO);
- 
-   BSPRINTF(11, "TeSt%StRiNg", buf, "%s", "TeSt%StRiNg");
diff --git a/srcpkgs/bird/template b/srcpkgs/bird/template
index 715f961da8a2..822ad73cf48a 100644
--- a/srcpkgs/bird/template
+++ b/srcpkgs/bird/template
@@ -1,6 +1,6 @@
 # Template file for 'bird'
 pkgname=bird
-version=2.0.12
+version=2.13
 revision=1
 build_style=gnu-configure
 hostmakedepends="flex"
@@ -11,7 +11,7 @@ license="GPL-2.0-or-later"
 homepage="https://bird.network.cz"
 changelog="https://gitlab.nic.cz/labs/bird/-/raw/master/NEWS"
 distfiles="https://bird.network.cz/download/bird-${version}.tar.gz"
-checksum=3ec462a237d06d1f4455d6ec00a42f0b1686061fc988e5c89a841d01dd753b53
+checksum=8d895e3e311880e9efb888b4386cbec2f7e18bfb8334e8d4c8ca7c4341092638
 
 conf_files="/etc/bird.conf"
 system_accounts="_bird"

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: bird: update to 2.13
  2023-04-25  7:12 [PR PATCH] bird: update to 2.13 klarasm
@ 2023-04-25  7:15 ` klarasm
  2023-04-26 16:04 ` [PR PATCH] [Updated] " klarasm
  2023-04-27  2:31 ` [PR PATCH] [Merged]: " abenson
  2 siblings, 0 replies; 4+ messages in thread
From: klarasm @ 2023-04-25  7:15 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 294 bytes --]

New comment by klarasm on void-packages repository

https://github.com/void-linux/void-packages/pull/43604#issuecomment-1521270418

Comment:
The CI seems to be having trouble. Should be fine though as testsuites and crossbuilds are ok on my local machine. Will try to rerun CI at a later time.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PR PATCH] [Updated] bird: update to 2.13
  2023-04-25  7:12 [PR PATCH] bird: update to 2.13 klarasm
  2023-04-25  7:15 ` klarasm
@ 2023-04-26 16:04 ` klarasm
  2023-04-27  2:31 ` [PR PATCH] [Merged]: " abenson
  2 siblings, 0 replies; 4+ messages in thread
From: klarasm @ 2023-04-26 16:04 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 716 bytes --]

There is an updated pull request by klarasm against master on the void-packages repository

https://github.com/klarasm/void-packages bird-2.13
https://github.com/void-linux/void-packages/pull/43604

bird: update to 2.13
- drop patch for failing tests on musl, not needed anymore
- upstream changed versioning

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc, x86_64-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl

A patch file from https://github.com/void-linux/void-packages/pull/43604.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-bird-2.13-43604.patch --]
[-- Type: text/x-diff, Size: 2163 bytes --]

From b389d0efee6fe06b16ef4d39d5f325dcbd3e4bb1 Mon Sep 17 00:00:00 2001
From: Klara Modin <klarasmodin@gmail.com>
Date: Sun, 23 Apr 2023 17:54:30 +0200
Subject: [PATCH] bird: update to 2.13

- drop patch for failing tests, not needed anymore
- upstream changed versioning
---
 srcpkgs/bird/patches/fix-tests-musl.patch | 25 -----------------------
 srcpkgs/bird/template                     |  4 ++--
 2 files changed, 2 insertions(+), 27 deletions(-)
 delete mode 100644 srcpkgs/bird/patches/fix-tests-musl.patch

diff --git a/srcpkgs/bird/patches/fix-tests-musl.patch b/srcpkgs/bird/patches/fix-tests-musl.patch
deleted file mode 100644
index 55403f6e75ee..000000000000
--- a/srcpkgs/bird/patches/fix-tests-musl.patch
+++ /dev/null
@@ -1,25 +0,0 @@
---- a/lib/printf_test.c
-+++ b/lib/printf_test.c
-@@ -22,6 +22,7 @@ static int
- t_simple(void)
- {
-   char buf[256];
-+  const char *errormsg;
-   memset(buf, 0xa5, 256);
- 
-   BSPRINTF(0, "", buf, "", NULL);
-@@ -32,11 +33,12 @@ t_simple(void)
-   BSPRINTF(1, "@", buf, "@", 64);
-   BSPRINTF(1, "\xff", buf, "%c", 0xff);
- 
--  errno = 5;
--  BSPRINTF(18, "Input/output error", buf, "%m");
-+  errormsg = strerror(EIO);
-+  errno = EIO;
-+  BSPRINTF(strlen(errormsg), errormsg, buf, "%m");
-   errno = 0;
- 
--  BSPRINTF(18, "Input/output error", buf, "%M", 5);
-+  BSPRINTF(strlen(errormsg), errormsg, buf, "%M", EIO);
- 
-   BSPRINTF(11, "TeSt%StRiNg", buf, "%s", "TeSt%StRiNg");
diff --git a/srcpkgs/bird/template b/srcpkgs/bird/template
index 715f961da8a2..822ad73cf48a 100644
--- a/srcpkgs/bird/template
+++ b/srcpkgs/bird/template
@@ -1,6 +1,6 @@
 # Template file for 'bird'
 pkgname=bird
-version=2.0.12
+version=2.13
 revision=1
 build_style=gnu-configure
 hostmakedepends="flex"
@@ -11,7 +11,7 @@ license="GPL-2.0-or-later"
 homepage="https://bird.network.cz"
 changelog="https://gitlab.nic.cz/labs/bird/-/raw/master/NEWS"
 distfiles="https://bird.network.cz/download/bird-${version}.tar.gz"
-checksum=3ec462a237d06d1f4455d6ec00a42f0b1686061fc988e5c89a841d01dd753b53
+checksum=8d895e3e311880e9efb888b4386cbec2f7e18bfb8334e8d4c8ca7c4341092638
 
 conf_files="/etc/bird.conf"
 system_accounts="_bird"

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PR PATCH] [Merged]: bird: update to 2.13
  2023-04-25  7:12 [PR PATCH] bird: update to 2.13 klarasm
  2023-04-25  7:15 ` klarasm
  2023-04-26 16:04 ` [PR PATCH] [Updated] " klarasm
@ 2023-04-27  2:31 ` abenson
  2 siblings, 0 replies; 4+ messages in thread
From: abenson @ 2023-04-27  2:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 558 bytes --]

There's a merged pull request on the void-packages repository

bird: update to 2.13
https://github.com/void-linux/void-packages/pull/43604

Description:
- drop patch for failing tests on musl, not needed anymore
- upstream changed versioning

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc, x86_64-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-04-27  2:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-25  7:12 [PR PATCH] bird: update to 2.13 klarasm
2023-04-25  7:15 ` klarasm
2023-04-26 16:04 ` [PR PATCH] [Updated] " klarasm
2023-04-27  2:31 ` [PR PATCH] [Merged]: " abenson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).