Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] iproute2: update + libbpf
@ 2024-01-31 22:21 lemmi
  2024-02-18  8:59 ` [PR PATCH] [Updated] " lemmi
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: lemmi @ 2024-01-31 22:21 UTC (permalink / raw)
  To: ml

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

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

https://github.com/lemmi/void-packages iproute2-libbpf
https://github.com/void-linux/void-packages/pull/48467

iproute2: update + libbpf
<!-- Uncomment relevant sections and delete options which are not applicable -->
With the addition of `elfutils-devel`, the `iproute2` was is able to load bpf/xdp programs, but is missing support for bpf maps. `libbpf` is needed for that.

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

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- 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/48467.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-iproute2-libbpf-48467.patch --]
[-- Type: text/x-diff, Size: 2079 bytes --]

From 41d071c9fe9dcc31deacba8c574bc6f40b77841f Mon Sep 17 00:00:00 2001
From: lemmi <lemmi@nerd2nerd.org>
Date: Wed, 31 Jan 2024 18:28:26 +0100
Subject: [PATCH 1/2] iproute2: update to 6.7.0.

---
 srcpkgs/iproute2/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/iproute2/template b/srcpkgs/iproute2/template
index 306f2081d80bd..2ae25d4041da1 100644
--- a/srcpkgs/iproute2/template
+++ b/srcpkgs/iproute2/template
@@ -1,7 +1,7 @@
 # Template file for 'iproute2'
 pkgname=iproute2
-version=6.6.0
-revision=2
+version=6.7.0
+revision=1
 build_style=configure
 make_install_args="SBINDIR=/usr/bin"
 hostmakedepends="pkg-config perl flex"
@@ -11,7 +11,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="GPL-2.0-only"
 homepage="https://wiki.linuxfoundation.org/networking/iproute2"
 distfiles="${KERNEL_SITE}/utils/net/iproute2/iproute2-${version}.tar.xz"
-checksum=8738c804afd09f0bf756937f0c3de23117832a98d8cbbf50386cf5005cd613ce
+checksum=ff942dd9828d7d1f867f61fe72ce433078c31e5d8e4a78e20f02cb5892e8841d
 # Requires unshare, which is not provided by chroot-util-linux.
 make_check=no
 

From 4f01a62cda17f13929a0a83c4be11ce17d0dbdcc Mon Sep 17 00:00:00 2001
From: lemmi <lemmi@nerd2nerd.org>
Date: Wed, 31 Jan 2024 23:08:11 +0100
Subject: [PATCH 2/2] iproute2: add libbpf

libbpf is necessary for iproute2 to be able to load bpf programs that
access maps.
---
 srcpkgs/iproute2/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/iproute2/template b/srcpkgs/iproute2/template
index 2ae25d4041da1..42dba6a8e3ea6 100644
--- a/srcpkgs/iproute2/template
+++ b/srcpkgs/iproute2/template
@@ -5,7 +5,8 @@ revision=1
 build_style=configure
 make_install_args="SBINDIR=/usr/bin"
 hostmakedepends="pkg-config perl flex"
-makedepends="libfl-devel libmnl-devel db-devel iptables-devel elfutils-devel"
+makedepends="libfl-devel libmnl-devel db-devel iptables-devel elfutils-devel
+ libbpf-devel"
 short_desc="IP Routing Utilities"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="GPL-2.0-only"

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

* Re: [PR PATCH] [Updated] iproute2: update + libbpf
  2024-01-31 22:21 [PR PATCH] iproute2: update + libbpf lemmi
@ 2024-02-18  8:59 ` lemmi
  2024-02-18 14:17 ` [PR PATCH] [Closed]: " lemmi
  2024-02-18 14:17 ` [PR PATCH] [Updated] " lemmi
  2 siblings, 0 replies; 4+ messages in thread
From: lemmi @ 2024-02-18  8:59 UTC (permalink / raw)
  To: ml

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

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

https://github.com/lemmi/void-packages iproute2-libbpf
https://github.com/void-linux/void-packages/pull/48467

iproute2: update + libbpf
<!-- Uncomment relevant sections and delete options which are not applicable -->
With the addition of `elfutils-devel`, the `iproute2` was is able to load bpf/xdp programs, but is missing support for bpf maps. `libbpf` is needed for that.

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

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- 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/48467.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-iproute2-libbpf-48467.patch --]
[-- Type: text/x-diff, Size: 2083 bytes --]

From dbc1600062ebe3381eceb67c01768bfaab50fd7f Mon Sep 17 00:00:00 2001
From: lemmi <lemmi@nerd2nerd.org>
Date: Wed, 31 Jan 2024 18:28:26 +0100
Subject: [PATCH 1/2] iproute2: update to 6.7.0.

---
 srcpkgs/iproute2/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/iproute2/template b/srcpkgs/iproute2/template
index 306f2081d80bdf..2ae25d4041da1f 100644
--- a/srcpkgs/iproute2/template
+++ b/srcpkgs/iproute2/template
@@ -1,7 +1,7 @@
 # Template file for 'iproute2'
 pkgname=iproute2
-version=6.6.0
-revision=2
+version=6.7.0
+revision=1
 build_style=configure
 make_install_args="SBINDIR=/usr/bin"
 hostmakedepends="pkg-config perl flex"
@@ -11,7 +11,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="GPL-2.0-only"
 homepage="https://wiki.linuxfoundation.org/networking/iproute2"
 distfiles="${KERNEL_SITE}/utils/net/iproute2/iproute2-${version}.tar.xz"
-checksum=8738c804afd09f0bf756937f0c3de23117832a98d8cbbf50386cf5005cd613ce
+checksum=ff942dd9828d7d1f867f61fe72ce433078c31e5d8e4a78e20f02cb5892e8841d
 # Requires unshare, which is not provided by chroot-util-linux.
 make_check=no
 

From c26c5e3891eba2e113ecdf4796f23204f66c471a Mon Sep 17 00:00:00 2001
From: lemmi <lemmi@nerd2nerd.org>
Date: Wed, 31 Jan 2024 23:08:11 +0100
Subject: [PATCH 2/2] iproute2: add libbpf

libbpf is necessary for iproute2 to be able to load bpf programs that
access maps.
---
 srcpkgs/iproute2/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/iproute2/template b/srcpkgs/iproute2/template
index 2ae25d4041da1f..42dba6a8e3ea6f 100644
--- a/srcpkgs/iproute2/template
+++ b/srcpkgs/iproute2/template
@@ -5,7 +5,8 @@ revision=1
 build_style=configure
 make_install_args="SBINDIR=/usr/bin"
 hostmakedepends="pkg-config perl flex"
-makedepends="libfl-devel libmnl-devel db-devel iptables-devel elfutils-devel"
+makedepends="libfl-devel libmnl-devel db-devel iptables-devel elfutils-devel
+ libbpf-devel"
 short_desc="IP Routing Utilities"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="GPL-2.0-only"

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

* Re: [PR PATCH] [Closed]: iproute2: update + libbpf
  2024-01-31 22:21 [PR PATCH] iproute2: update + libbpf lemmi
  2024-02-18  8:59 ` [PR PATCH] [Updated] " lemmi
@ 2024-02-18 14:17 ` lemmi
  2024-02-18 14:17 ` [PR PATCH] [Updated] " lemmi
  2 siblings, 0 replies; 4+ messages in thread
From: lemmi @ 2024-02-18 14:17 UTC (permalink / raw)
  To: ml

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

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

iproute2: update + libbpf
https://github.com/void-linux/void-packages/pull/48467

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->
With the addition of `elfutils-devel`, the `iproute2` was is able to load bpf/xdp programs, but is missing support for bpf maps. `libbpf` is needed for that.

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

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- 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

* Re: [PR PATCH] [Updated] iproute2: update + libbpf
  2024-01-31 22:21 [PR PATCH] iproute2: update + libbpf lemmi
  2024-02-18  8:59 ` [PR PATCH] [Updated] " lemmi
  2024-02-18 14:17 ` [PR PATCH] [Closed]: " lemmi
@ 2024-02-18 14:17 ` lemmi
  2 siblings, 0 replies; 4+ messages in thread
From: lemmi @ 2024-02-18 14:17 UTC (permalink / raw)
  To: ml

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

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

https://github.com/lemmi/void-packages iproute2-libbpf
https://github.com/void-linux/void-packages/pull/48467

iproute2: update + libbpf
<!-- Uncomment relevant sections and delete options which are not applicable -->
With the addition of `elfutils-devel`, the `iproute2` was is able to load bpf/xdp programs, but is missing support for bpf maps. `libbpf` is needed for that.

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

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- 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/48467.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-iproute2-libbpf-48467.patch --]
[-- Type: text/x-diff, Size: 0 bytes --]



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

end of thread, other threads:[~2024-02-18 14:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-31 22:21 [PR PATCH] iproute2: update + libbpf lemmi
2024-02-18  8:59 ` [PR PATCH] [Updated] " lemmi
2024-02-18 14:17 ` [PR PATCH] [Closed]: " lemmi
2024-02-18 14:17 ` [PR PATCH] [Updated] " lemmi

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).