* [Buildroot] [PATCH 1/2] package/cage: properly propagate wlroots dependencies
@ 2025-12-15 22:58 Thomas Petazzoni via buildroot
2025-12-15 22:58 ` [Buildroot] [PATCH 2/2] package/sway: " Thomas Petazzoni via buildroot
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Thomas Petazzoni via buildroot @ 2025-12-15 22:58 UTC (permalink / raw)
To: buildroot; +Cc: Thomas Petazzoni, Raphael Pavlidis, Adrian Perez de Castro
Commit 00fb3a57cbaedb8df43f75f0e891423c1ef7d8c6 added a wlroots ->
libgbm dependency, but forgot to propagate it to package/cage.
Fixes:
https://autobuild.buildroot.net/results/dc185c3d4886e9cfd9e6f46b50b864e5b2f28605/
Cc: Raphael Pavlidis <raphael.pavlidis@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
package/cage/Config.in | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/package/cage/Config.in b/package/cage/Config.in
index 4f823c768c..95c68732ed 100644
--- a/package/cage/Config.in
+++ b/package/cage/Config.in
@@ -1,6 +1,7 @@
-comment "cage needs udev, EGL and OpenGL ES support"
+comment "cage needs udev, EGL, OpenGL ES and GBM support"
depends on !BR2_PACKAGE_HAS_LIBEGL || \
!BR2_PACKAGE_HAS_LIBGLES || \
+ !BR2_PACKAGE_HAS_LIBGBM || \
!BR2_PACKAGE_HAS_UDEV
comment "cage needs a toolchain w/ threads, dynamic library"
@@ -13,6 +14,7 @@ config BR2_PACKAGE_CAGE
depends on BR2_TOOLCHAIN_HAS_THREADS # wlroots
depends on BR2_PACKAGE_HAS_LIBEGL # wlroots
depends on BR2_PACKAGE_HAS_LIBGLES # wlroots
+ depends on BR2_PACKAGE_HAS_LIBGBM # wlroots
depends on BR2_PACKAGE_HAS_UDEV # wlroots
select BR2_PACKAGE_WLROOTS
help
--
2.52.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 2/2] package/sway: properly propagate wlroots dependencies
2025-12-15 22:58 [Buildroot] [PATCH 1/2] package/cage: properly propagate wlroots dependencies Thomas Petazzoni via buildroot
@ 2025-12-15 22:58 ` Thomas Petazzoni via buildroot
2025-12-15 23:46 ` Adrian Perez de Castro
` (2 more replies)
2025-12-15 23:45 ` [Buildroot] [PATCH 1/2] package/cage: " Adrian Perez de Castro
` (2 subsequent siblings)
3 siblings, 3 replies; 8+ messages in thread
From: Thomas Petazzoni via buildroot @ 2025-12-15 22:58 UTC (permalink / raw)
To: buildroot; +Cc: Thomas Petazzoni, Raphael Pavlidis
Commit 00fb3a57cbaedb8df43f75f0e891423c1ef7d8c6 added a wlroots ->
libgbm dependency, but forgot to propagate it to package/sway.
Cc: Raphael Pavlidis <raphael.pavlidis@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
package/sway/Config.in | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/package/sway/Config.in b/package/sway/Config.in
index 1f4b497af3..1e4c8bfd3e 100644
--- a/package/sway/Config.in
+++ b/package/sway/Config.in
@@ -5,6 +5,7 @@ config BR2_PACKAGE_SWAY
depends on BR2_TOOLCHAIN_HAS_THREADS # pango, wlroots
depends on BR2_PACKAGE_HAS_LIBEGL # wlroots
depends on BR2_PACKAGE_HAS_LIBGLES # wlroots
+ depends on BR2_PACKAGE_HAS_LIBGBM # wlroots
depends on BR2_PACKAGE_HAS_UDEV # wlroots
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c, pango
depends on BR2_USE_WCHAR # pango
@@ -53,11 +54,12 @@ config BR2_PACKAGE_SWAY_SWAYNAG
endif # BR2_PACKAGE_SWAY
-comment "sway needs systemd, udev, EGL and OpenGL ES support"
+comment "sway needs systemd, udev, EGL, OpenGL ES and GBM support"
depends on !BR2_PACKAGE_SYSTEMD || \
!BR2_PACKAGE_HAS_UDEV || \
!BR2_PACKAGE_HAS_LIBEGL || \
- !BR2_PACKAGE_HAS_LIBGLES
+ !BR2_PACKAGE_HAS_LIBGLES || \
+ !BR2_PACKAGE_HAS_LIBGBM
comment "sway needs a toolchain w/ wchar, threads, C++, dynamic library, gcc >= 4.9"
depends on BR2_USE_MMU
--
2.52.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/cage: properly propagate wlroots dependencies
2025-12-15 22:58 [Buildroot] [PATCH 1/2] package/cage: properly propagate wlroots dependencies Thomas Petazzoni via buildroot
2025-12-15 22:58 ` [Buildroot] [PATCH 2/2] package/sway: " Thomas Petazzoni via buildroot
@ 2025-12-15 23:45 ` Adrian Perez de Castro
2025-12-17 20:04 ` Julien Olivain via buildroot
2026-01-07 17:48 ` Arnout Vandecappelle via buildroot
3 siblings, 0 replies; 8+ messages in thread
From: Adrian Perez de Castro @ 2025-12-15 23:45 UTC (permalink / raw)
To: Thomas Petazzoni via buildroot
Cc: buildroot, Thomas Petazzoni, Raphael Pavlidis
[-- Attachment #1.1: Type: text/plain, Size: 1637 bytes --]
On Mon, 15 Dec 2025 23:58:35 +0100 Thomas Petazzoni via buildroot <buildroot@buildroot.org> wrote:
> Commit 00fb3a57cbaedb8df43f75f0e891423c1ef7d8c6 added a wlroots ->
> libgbm dependency, but forgot to propagate it to package/cage.
>
> Fixes:
>
> https://autobuild.buildroot.net/results/dc185c3d4886e9cfd9e6f46b50b864e5b2f28605/
>
> Cc: Raphael Pavlidis <raphael.pavlidis@gmail.com>
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Reviewed-by: Adrian Perez de Castro <aperez@igalia.com>
> ---
> package/cage/Config.in | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/package/cage/Config.in b/package/cage/Config.in
> index 4f823c768c..95c68732ed 100644
> --- a/package/cage/Config.in
> +++ b/package/cage/Config.in
> @@ -1,6 +1,7 @@
> -comment "cage needs udev, EGL and OpenGL ES support"
> +comment "cage needs udev, EGL, OpenGL ES and GBM support"
> depends on !BR2_PACKAGE_HAS_LIBEGL || \
> !BR2_PACKAGE_HAS_LIBGLES || \
> + !BR2_PACKAGE_HAS_LIBGBM || \
> !BR2_PACKAGE_HAS_UDEV
>
> comment "cage needs a toolchain w/ threads, dynamic library"
> @@ -13,6 +14,7 @@ config BR2_PACKAGE_CAGE
> depends on BR2_TOOLCHAIN_HAS_THREADS # wlroots
> depends on BR2_PACKAGE_HAS_LIBEGL # wlroots
> depends on BR2_PACKAGE_HAS_LIBGLES # wlroots
> + depends on BR2_PACKAGE_HAS_LIBGBM # wlroots
> depends on BR2_PACKAGE_HAS_UDEV # wlroots
> select BR2_PACKAGE_WLROOTS
> help
> --
> 2.52.0
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
>
Cheers,
—Adrián
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]
[-- Attachment #2: Type: text/plain, Size: 150 bytes --]
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Buildroot] [PATCH 2/2] package/sway: properly propagate wlroots dependencies
2025-12-15 22:58 ` [Buildroot] [PATCH 2/2] package/sway: " Thomas Petazzoni via buildroot
@ 2025-12-15 23:46 ` Adrian Perez de Castro
2025-12-17 17:13 ` Raphael Pavlidis
2026-01-07 17:48 ` Arnout Vandecappelle via buildroot
2 siblings, 0 replies; 8+ messages in thread
From: Adrian Perez de Castro @ 2025-12-15 23:46 UTC (permalink / raw)
To: Thomas Petazzoni via buildroot
Cc: buildroot, Thomas Petazzoni, Raphael Pavlidis
[-- Attachment #1.1: Type: text/plain, Size: 1799 bytes --]
On Mon, 15 Dec 2025 23:58:36 +0100 Thomas Petazzoni via buildroot <buildroot@buildroot.org> wrote:
> Commit 00fb3a57cbaedb8df43f75f0e891423c1ef7d8c6 added a wlroots ->
> libgbm dependency, but forgot to propagate it to package/sway.
>
> Cc: Raphael Pavlidis <raphael.pavlidis@gmail.com>
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Reviewed-by: Adrian Perez de Castro <aperez@igalia.com>
> ---
> package/sway/Config.in | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/package/sway/Config.in b/package/sway/Config.in
> index 1f4b497af3..1e4c8bfd3e 100644
> --- a/package/sway/Config.in
> +++ b/package/sway/Config.in
> @@ -5,6 +5,7 @@ config BR2_PACKAGE_SWAY
> depends on BR2_TOOLCHAIN_HAS_THREADS # pango, wlroots
> depends on BR2_PACKAGE_HAS_LIBEGL # wlroots
> depends on BR2_PACKAGE_HAS_LIBGLES # wlroots
> + depends on BR2_PACKAGE_HAS_LIBGBM # wlroots
> depends on BR2_PACKAGE_HAS_UDEV # wlroots
> depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c, pango
> depends on BR2_USE_WCHAR # pango
> @@ -53,11 +54,12 @@ config BR2_PACKAGE_SWAY_SWAYNAG
>
> endif # BR2_PACKAGE_SWAY
>
> -comment "sway needs systemd, udev, EGL and OpenGL ES support"
> +comment "sway needs systemd, udev, EGL, OpenGL ES and GBM support"
> depends on !BR2_PACKAGE_SYSTEMD || \
> !BR2_PACKAGE_HAS_UDEV || \
> !BR2_PACKAGE_HAS_LIBEGL || \
> - !BR2_PACKAGE_HAS_LIBGLES
> + !BR2_PACKAGE_HAS_LIBGLES || \
> + !BR2_PACKAGE_HAS_LIBGBM
>
> comment "sway needs a toolchain w/ wchar, threads, C++, dynamic library, gcc >= 4.9"
> depends on BR2_USE_MMU
> --
> 2.52.0
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
>
Cheers,
—Adrián
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]
[-- Attachment #2: Type: text/plain, Size: 150 bytes --]
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Buildroot] [PATCH 2/2] package/sway: properly propagate wlroots dependencies
2025-12-15 22:58 ` [Buildroot] [PATCH 2/2] package/sway: " Thomas Petazzoni via buildroot
2025-12-15 23:46 ` Adrian Perez de Castro
@ 2025-12-17 17:13 ` Raphael Pavlidis
2026-01-07 17:48 ` Arnout Vandecappelle via buildroot
2 siblings, 0 replies; 8+ messages in thread
From: Raphael Pavlidis @ 2025-12-17 17:13 UTC (permalink / raw)
To: Thomas Petazzoni, buildroot
Hi all,
I do not know you to respond correctly, but I reviewed it and tested it,
and it looks good to me.
On 12/15/25 23:58, Thomas Petazzoni wrote:
> Commit 00fb3a57cbaedb8df43f75f0e891423c1ef7d8c6 added a wlroots ->
> libgbm dependency, but forgot to propagate it to package/sway.
>
> Cc: Raphael Pavlidis <raphael.pavlidis@gmail.com>
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
> ---
> package/sway/Config.in | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/package/sway/Config.in b/package/sway/Config.in
> index 1f4b497af3..1e4c8bfd3e 100644
> --- a/package/sway/Config.in
> +++ b/package/sway/Config.in
> @@ -5,6 +5,7 @@ config BR2_PACKAGE_SWAY
> depends on BR2_TOOLCHAIN_HAS_THREADS # pango, wlroots
> depends on BR2_PACKAGE_HAS_LIBEGL # wlroots
> depends on BR2_PACKAGE_HAS_LIBGLES # wlroots
> + depends on BR2_PACKAGE_HAS_LIBGBM # wlroots
> depends on BR2_PACKAGE_HAS_UDEV # wlroots
> depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c, pango
> depends on BR2_USE_WCHAR # pango
> @@ -53,11 +54,12 @@ config BR2_PACKAGE_SWAY_SWAYNAG
>
> endif # BR2_PACKAGE_SWAY
>
> -comment "sway needs systemd, udev, EGL and OpenGL ES support"
> +comment "sway needs systemd, udev, EGL, OpenGL ES and GBM support"
> depends on !BR2_PACKAGE_SYSTEMD || \
> !BR2_PACKAGE_HAS_UDEV || \
> !BR2_PACKAGE_HAS_LIBEGL || \
> - !BR2_PACKAGE_HAS_LIBGLES
> + !BR2_PACKAGE_HAS_LIBGLES || \
> + !BR2_PACKAGE_HAS_LIBGBM
>
> comment "sway needs a toolchain w/ wchar, threads, C++, dynamic library, gcc >= 4.9"
> depends on BR2_USE_MMU
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/cage: properly propagate wlroots dependencies
2025-12-15 22:58 [Buildroot] [PATCH 1/2] package/cage: properly propagate wlroots dependencies Thomas Petazzoni via buildroot
2025-12-15 22:58 ` [Buildroot] [PATCH 2/2] package/sway: " Thomas Petazzoni via buildroot
2025-12-15 23:45 ` [Buildroot] [PATCH 1/2] package/cage: " Adrian Perez de Castro
@ 2025-12-17 20:04 ` Julien Olivain via buildroot
2026-01-07 17:48 ` Arnout Vandecappelle via buildroot
3 siblings, 0 replies; 8+ messages in thread
From: Julien Olivain via buildroot @ 2025-12-17 20:04 UTC (permalink / raw)
To: Thomas Petazzoni; +Cc: buildroot, Raphael Pavlidis, Adrian Perez de Castro
On 15/12/2025 23:58, Thomas Petazzoni via buildroot wrote:
> Commit 00fb3a57cbaedb8df43f75f0e891423c1ef7d8c6 added a wlroots ->
> libgbm dependency, but forgot to propagate it to package/cage.
>
> Fixes:
>
>
> https://autobuild.buildroot.net/results/dc185c3d4886e9cfd9e6f46b50b864e5b2f28605/
>
> Cc: Raphael Pavlidis <raphael.pavlidis@gmail.com>
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Series applied to master, thanks.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/cage: properly propagate wlroots dependencies
2025-12-15 22:58 [Buildroot] [PATCH 1/2] package/cage: properly propagate wlroots dependencies Thomas Petazzoni via buildroot
` (2 preceding siblings ...)
2025-12-17 20:04 ` Julien Olivain via buildroot
@ 2026-01-07 17:48 ` Arnout Vandecappelle via buildroot
3 siblings, 0 replies; 8+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2026-01-07 17:48 UTC (permalink / raw)
To: Thomas Petazzoni; +Cc: Arnout Vandecappelle, buildroot
In reply of:
> Commit 00fb3a57cbaedb8df43f75f0e891423c1ef7d8c6 added a wlroots ->
> libgbm dependency, but forgot to propagate it to package/cage.
>
> Fixes:
>
> https://autobuild.buildroot.net/results/dc185c3d4886e9cfd9e6f46b50b864e5b2f28605/
>
> Cc: Raphael Pavlidis <raphael.pavlidis@gmail.com>
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Applied to 2025.02.x and 2025.11.x. Thanks
> ---
> package/cage/Config.in | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/package/cage/Config.in b/package/cage/Config.in
> index 4f823c768c..95c68732ed 100644
> --- a/package/cage/Config.in
> +++ b/package/cage/Config.in
> @@ -1,6 +1,7 @@
> -comment "cage needs udev, EGL and OpenGL ES support"
> +comment "cage needs udev, EGL, OpenGL ES and GBM support"
> depends on !BR2_PACKAGE_HAS_LIBEGL || \
> !BR2_PACKAGE_HAS_LIBGLES || \
> + !BR2_PACKAGE_HAS_LIBGBM || \
> !BR2_PACKAGE_HAS_UDEV
>
> comment "cage needs a toolchain w/ threads, dynamic library"
> @@ -13,6 +14,7 @@ config BR2_PACKAGE_CAGE
> depends on BR2_TOOLCHAIN_HAS_THREADS # wlroots
> depends on BR2_PACKAGE_HAS_LIBEGL # wlroots
> depends on BR2_PACKAGE_HAS_LIBGLES # wlroots
> + depends on BR2_PACKAGE_HAS_LIBGBM # wlroots
> depends on BR2_PACKAGE_HAS_UDEV # wlroots
> select BR2_PACKAGE_WLROOTS
> help
> --
> 2.52.0
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Buildroot] [PATCH 2/2] package/sway: properly propagate wlroots dependencies
2025-12-15 22:58 ` [Buildroot] [PATCH 2/2] package/sway: " Thomas Petazzoni via buildroot
2025-12-15 23:46 ` Adrian Perez de Castro
2025-12-17 17:13 ` Raphael Pavlidis
@ 2026-01-07 17:48 ` Arnout Vandecappelle via buildroot
2 siblings, 0 replies; 8+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2026-01-07 17:48 UTC (permalink / raw)
To: Thomas Petazzoni; +Cc: Arnout Vandecappelle, buildroot
In reply of:
> Commit 00fb3a57cbaedb8df43f75f0e891423c1ef7d8c6 added a wlroots ->
> libgbm dependency, but forgot to propagate it to package/sway.
>
> Cc: Raphael Pavlidis <raphael.pavlidis@gmail.com>
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Applied to 2025.02.x and 2025.11.x. Thanks
> ---
> package/sway/Config.in | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/package/sway/Config.in b/package/sway/Config.in
> index 1f4b497af3..1e4c8bfd3e 100644
> --- a/package/sway/Config.in
> +++ b/package/sway/Config.in
> @@ -5,6 +5,7 @@ config BR2_PACKAGE_SWAY
> depends on BR2_TOOLCHAIN_HAS_THREADS # pango, wlroots
> depends on BR2_PACKAGE_HAS_LIBEGL # wlroots
> depends on BR2_PACKAGE_HAS_LIBGLES # wlroots
> + depends on BR2_PACKAGE_HAS_LIBGBM # wlroots
> depends on BR2_PACKAGE_HAS_UDEV # wlroots
> depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c, pango
> depends on BR2_USE_WCHAR # pango
> @@ -53,11 +54,12 @@ config BR2_PACKAGE_SWAY_SWAYNAG
>
> endif # BR2_PACKAGE_SWAY
>
> -comment "sway needs systemd, udev, EGL and OpenGL ES support"
> +comment "sway needs systemd, udev, EGL, OpenGL ES and GBM support"
> depends on !BR2_PACKAGE_SYSTEMD || \
> !BR2_PACKAGE_HAS_UDEV || \
> !BR2_PACKAGE_HAS_LIBEGL || \
> - !BR2_PACKAGE_HAS_LIBGLES
> + !BR2_PACKAGE_HAS_LIBGLES || \
> + !BR2_PACKAGE_HAS_LIBGBM
>
> comment "sway needs a toolchain w/ wchar, threads, C++, dynamic library, gcc >= 4.9"
> depends on BR2_USE_MMU
> --
> 2.52.0
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-01-07 17:49 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-15 22:58 [Buildroot] [PATCH 1/2] package/cage: properly propagate wlroots dependencies Thomas Petazzoni via buildroot
2025-12-15 22:58 ` [Buildroot] [PATCH 2/2] package/sway: " Thomas Petazzoni via buildroot
2025-12-15 23:46 ` Adrian Perez de Castro
2025-12-17 17:13 ` Raphael Pavlidis
2026-01-07 17:48 ` Arnout Vandecappelle via buildroot
2025-12-15 23:45 ` [Buildroot] [PATCH 1/2] package/cage: " Adrian Perez de Castro
2025-12-17 20:04 ` Julien Olivain via buildroot
2026-01-07 17:48 ` Arnout Vandecappelle via buildroot
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.