* [Buildroot] [PATCH v2 1/2] package/sdl2: drop video-x11-{xinerama, vm}
@ 2024-03-01 12:17 Thomas Devoogdt
2024-03-01 12:17 ` [Buildroot] [PATCH v2 2/2] package/sdl2: bump to 2.30.0 Thomas Devoogdt
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Thomas Devoogdt @ 2024-03-01 12:17 UTC (permalink / raw)
To: buildroot; +Cc: Michael Fischer, Thomas Devoogdt
Support has been dropped since the major release 2.24.0:
https://github.com/libsdl-org/SDL/commit/7d7ec9c95146c44d4b4643ed552796bf07937057
Signed-off-by: Thomas Devoogdt <thomas@devoogdt.com>
---
v2: n/a
---
package/sdl2/sdl2.mk | 14 --------------
1 file changed, 14 deletions(-)
diff --git a/package/sdl2/sdl2.mk b/package/sdl2/sdl2.mk
index 42b4a433e8..eb5042e3cd 100644
--- a/package/sdl2/sdl2.mk
+++ b/package/sdl2/sdl2.mk
@@ -112,13 +112,6 @@ else
SDL2_CONF_OPTS += --disable-video-x11-xcursor
endif
-ifeq ($(BR2_PACKAGE_XLIB_LIBXINERAMA),y)
-SDL2_DEPENDENCIES += xlib_libXinerama
-SDL2_CONF_OPTS += --enable-video-x11-xinerama
-else
-SDL2_CONF_OPTS += --disable-video-x11-xinerama
-endif
-
ifeq ($(BR2_PACKAGE_XLIB_LIBXI),y)
SDL2_DEPENDENCIES += xlib_libXi
SDL2_CONF_OPTS += --enable-video-x11-xinput
@@ -140,13 +133,6 @@ else
SDL2_CONF_OPTS += --disable-video-x11-scrnsaver
endif
-ifeq ($(BR2_PACKAGE_XLIB_LIBXXF86VM),y)
-SDL2_DEPENDENCIES += xlib_libXxf86vm
-SDL2_CONF_OPTS += --enable-video-x11-vm
-else
-SDL2_CONF_OPTS += --disable-video-x11-vm
-endif
-
else
SDL2_CONF_OPTS += --disable-video-x11 --without-x
endif
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 5+ messages in thread* [Buildroot] [PATCH v2 2/2] package/sdl2: bump to 2.30.0
2024-03-01 12:17 [Buildroot] [PATCH v2 1/2] package/sdl2: drop video-x11-{xinerama, vm} Thomas Devoogdt
@ 2024-03-01 12:17 ` Thomas Devoogdt
2024-04-07 14:44 ` Arnout Vandecappelle via buildroot
2024-03-03 12:10 ` [Buildroot] [PATCH v2 1/2] package/sdl2: drop video-x11-{xinerama, vm} Peter Korsgaard
2024-03-19 12:06 ` Peter Korsgaard
2 siblings, 1 reply; 5+ messages in thread
From: Thomas Devoogdt @ 2024-03-01 12:17 UTC (permalink / raw)
To: buildroot; +Cc: Michael Fischer, Thomas Devoogdt
Changes:
https://github.com/libsdl-org/SDL/releases/tag/release-2.30.0
Signed-off-by: Thomas Devoogdt <thomas@devoogdt.com>
---
v2: fix git message, accidentally took the message from a 2023.02.x branch
---
package/sdl2/sdl2.hash | 4 ++--
package/sdl2/sdl2.mk | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/sdl2/sdl2.hash b/package/sdl2/sdl2.hash
index 7a28d5efc8..95d2cf959f 100644
--- a/package/sdl2/sdl2.hash
+++ b/package/sdl2/sdl2.hash
@@ -1,4 +1,4 @@
-# Locally calculated after checking http://www.libsdl.org/release/SDL2-2.28.5.tar.gz.sig
-sha256 332cb37d0be20cb9541739c61f79bae5a477427d79ae85e352089afdaf6666e4 SDL2-2.28.5.tar.gz
+# Locally calculated after checking http://www.libsdl.org/release/SDL2-2.30.0.tar.gz.sig
+sha256 36e2e41557e0fa4a1519315c0f5958a87ccb27e25c51776beb6f1239526447b0 SDL2-2.30.0.tar.gz
# Locally calculated
sha256 9928507f684c1965d07f2b6ef4b4723d5efc2f6b4ab731f743a413c51c319927 LICENSE.txt
diff --git a/package/sdl2/sdl2.mk b/package/sdl2/sdl2.mk
index eb5042e3cd..91f6585761 100644
--- a/package/sdl2/sdl2.mk
+++ b/package/sdl2/sdl2.mk
@@ -4,7 +4,7 @@
#
################################################################################
-SDL2_VERSION = 2.28.5
+SDL2_VERSION = 2.30.0
SDL2_SOURCE = SDL2-$(SDL2_VERSION).tar.gz
SDL2_SITE = http://www.libsdl.org/release
SDL2_LICENSE = Zlib
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [Buildroot] [PATCH v2 2/2] package/sdl2: bump to 2.30.0
2024-03-01 12:17 ` [Buildroot] [PATCH v2 2/2] package/sdl2: bump to 2.30.0 Thomas Devoogdt
@ 2024-04-07 14:44 ` Arnout Vandecappelle via buildroot
0 siblings, 0 replies; 5+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2024-04-07 14:44 UTC (permalink / raw)
To: Thomas Devoogdt, buildroot; +Cc: Michael Fischer
On 01/03/2024 13:17, Thomas Devoogdt wrote:
> Changes:
> https://github.com/libsdl-org/SDL/releases/tag/release-2.30.0
>
> Signed-off-by: Thomas Devoogdt <thomas@devoogdt.com>
Applied to master, thanks.
Regards,
Arnout
> ---
> v2: fix git message, accidentally took the message from a 2023.02.x branch
> ---
> package/sdl2/sdl2.hash | 4 ++--
> package/sdl2/sdl2.mk | 2 +-
> 2 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/package/sdl2/sdl2.hash b/package/sdl2/sdl2.hash
> index 7a28d5efc8..95d2cf959f 100644
> --- a/package/sdl2/sdl2.hash
> +++ b/package/sdl2/sdl2.hash
> @@ -1,4 +1,4 @@
> -# Locally calculated after checking http://www.libsdl.org/release/SDL2-2.28.5.tar.gz.sig
> -sha256 332cb37d0be20cb9541739c61f79bae5a477427d79ae85e352089afdaf6666e4 SDL2-2.28.5.tar.gz
> +# Locally calculated after checking http://www.libsdl.org/release/SDL2-2.30.0.tar.gz.sig
> +sha256 36e2e41557e0fa4a1519315c0f5958a87ccb27e25c51776beb6f1239526447b0 SDL2-2.30.0.tar.gz
> # Locally calculated
> sha256 9928507f684c1965d07f2b6ef4b4723d5efc2f6b4ab731f743a413c51c319927 LICENSE.txt
> diff --git a/package/sdl2/sdl2.mk b/package/sdl2/sdl2.mk
> index eb5042e3cd..91f6585761 100644
> --- a/package/sdl2/sdl2.mk
> +++ b/package/sdl2/sdl2.mk
> @@ -4,7 +4,7 @@
> #
> ################################################################################
>
> -SDL2_VERSION = 2.28.5
> +SDL2_VERSION = 2.30.0
> SDL2_SOURCE = SDL2-$(SDL2_VERSION).tar.gz
> SDL2_SITE = http://www.libsdl.org/release
> SDL2_LICENSE = Zlib
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Buildroot] [PATCH v2 1/2] package/sdl2: drop video-x11-{xinerama, vm}
2024-03-01 12:17 [Buildroot] [PATCH v2 1/2] package/sdl2: drop video-x11-{xinerama, vm} Thomas Devoogdt
2024-03-01 12:17 ` [Buildroot] [PATCH v2 2/2] package/sdl2: bump to 2.30.0 Thomas Devoogdt
@ 2024-03-03 12:10 ` Peter Korsgaard
2024-03-19 12:06 ` Peter Korsgaard
2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2024-03-03 12:10 UTC (permalink / raw)
To: Thomas Devoogdt; +Cc: Michael Fischer, buildroot
>>>>> "Thomas" == Thomas Devoogdt <thomas@devoogdt.com> writes:
> Support has been dropped since the major release 2.24.0:
> https://github.com/libsdl-org/SDL/commit/7d7ec9c95146c44d4b4643ed552796bf07937057
> Signed-off-by: Thomas Devoogdt <thomas@devoogdt.com>
Committed, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [Buildroot] [PATCH v2 1/2] package/sdl2: drop video-x11-{xinerama, vm}
2024-03-01 12:17 [Buildroot] [PATCH v2 1/2] package/sdl2: drop video-x11-{xinerama, vm} Thomas Devoogdt
2024-03-01 12:17 ` [Buildroot] [PATCH v2 2/2] package/sdl2: bump to 2.30.0 Thomas Devoogdt
2024-03-03 12:10 ` [Buildroot] [PATCH v2 1/2] package/sdl2: drop video-x11-{xinerama, vm} Peter Korsgaard
@ 2024-03-19 12:06 ` Peter Korsgaard
2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2024-03-19 12:06 UTC (permalink / raw)
To: Thomas Devoogdt; +Cc: Michael Fischer, buildroot
>>>>> "Thomas" == Thomas Devoogdt <thomas@devoogdt.com> writes:
> Support has been dropped since the major release 2.24.0:
> https://github.com/libsdl-org/SDL/commit/7d7ec9c95146c44d4b4643ed552796bf07937057
> Signed-off-by: Thomas Devoogdt <thomas@devoogdt.com>
Committed to 2023.02.x and 2023.11.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-04-07 14:44 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-01 12:17 [Buildroot] [PATCH v2 1/2] package/sdl2: drop video-x11-{xinerama, vm} Thomas Devoogdt
2024-03-01 12:17 ` [Buildroot] [PATCH v2 2/2] package/sdl2: bump to 2.30.0 Thomas Devoogdt
2024-04-07 14:44 ` Arnout Vandecappelle via buildroot
2024-03-03 12:10 ` [Buildroot] [PATCH v2 1/2] package/sdl2: drop video-x11-{xinerama, vm} Peter Korsgaard
2024-03-19 12:06 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox