Skip to content

Commit 5e57805

Browse files
authored
Merge pull request #3203 from pygame-community/ankith26-sdl-bump
Bump SDL2 to 2.30.9 and SDL3 to 3.1.6
2 parents 4f587cc + 979390d commit 5e57805

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

buildconfig/download_win_prebuilt.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ def get_urls(x86=True, x64=True):
7878
url_sha1 = []
7979
url_sha1.extend([
8080
[
81-
'https://github.com/libsdl-org/SDL/releases/download/release-2.30.8/SDL2-devel-2.30.8-VC.zip',
82-
'389a7575afaeccd3586a8105520cbec46b930dcb',
81+
'https://github.com/libsdl-org/SDL/releases/download/release-2.30.9/SDL2-devel-2.30.9-VC.zip',
82+
'd89a2ad46b98ba08db5ec5877cb2fde46e127825',
8383
],
8484
[
85-
'https://github.com/libsdl-org/SDL/releases/download/preview-3.1.3/SDL3-devel-3.1.3-VC.zip',
86-
'8e4d7104193ba976406fe9968301de6f6b57f342'
85+
'https://github.com/libsdl-org/SDL/releases/download/preview-3.1.6/SDL3-devel-3.1.6-VC.zip',
86+
'7a3b9ed85cfe735c7e106d98c4b6395a113e5d7e'
8787
],
8888
[
8989
'https://github.com/pygame-community/SDL_image/releases/download/2.8.2-pgce/SDL2_image-devel-2.8.2-VCpgce.zip',
@@ -238,23 +238,23 @@ def copy(src, dst):
238238
copy(
239239
os.path.join(
240240
temp_dir,
241-
'SDL2-devel-2.30.8-VC/SDL2-2.30.8'
241+
'SDL2-devel-2.30.9-VC/SDL2-2.30.9'
242242
),
243243
os.path.join(
244244
move_to_dir,
245245
prebuilt_dir,
246-
'SDL2-2.30.8'
246+
'SDL2-2.30.9'
247247
)
248248
)
249249
copy(
250250
os.path.join(
251251
temp_dir,
252-
'SDL3-devel-3.1.3-VC/SDL3-3.1.3'
252+
'SDL3-devel-3.1.6-VC/SDL3-3.1.6'
253253
),
254254
os.path.join(
255255
move_to_dir,
256256
prebuilt_dir,
257-
'SDL3-3.1.3'
257+
'SDL3-3.1.6'
258258
)
259259
)
260260

buildconfig/macdependencies/clean_usr_local.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ ln -s /usr/bin/git /opt/homebrew/bin/git
1515
rm -rf /usr/local/lib/libtiff*
1616
rm -rf /usr/local/lib/libzstd*
1717
rm -rf /usr/local/lib/libwebp*
18+
rm -rf /usr/local/lib/libdeflate*
1819
rm -rf /usr/local/lib/libsndfile*
1920
rm -rf /usr/local/lib/glib*
2021
rm -rf /usr/local/lib/libglib*
@@ -27,6 +28,7 @@ rm -rf /usr/local/opt/freetype*
2728

2829
rm -rf /usr/local/Cellar/libtiff /opt/homebrew/Cellar/libtiff
2930
rm -rf /usr/local/Cellar/libsndfile /opt/homebrew/Cellar/libsndfile
31+
rm -rf /usr/local/Cellar/libdeflate* /opt/homebrew/Cellar/libdeflate*
3032
rm -rf /usr/local/Cellar/glib /opt/homebrew/Cellar/glib
3133
rm -rf /usr/local/Cellar/brotli /opt/homebrew/Cellar/brotli
3234
rm -rf /usr/local/Cellar/pcre* /opt/homebrew/Cellar/pcre*

buildconfig/manylinux-build/docker_base/sdl_libs/build-sdl2-libs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -e -x
33

44
cd $(dirname `readlink -f "$0"`)
55

6-
SDL2_VER="2.30.8"
6+
SDL2_VER="2.30.9"
77
SDL2="SDL2-$SDL2_VER"
88
IMG2_VER="2.8.2"
99
IMG2="SDL2_image-$IMG2_VER"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
72e49d8a67f5ca1241a262e7e7ae7f6ff148e8774343110db652589ab2e72d3425534ca7f8c7825b2ae1afc779c09228da33a9586219ac4e53546a4930380b64 SDL2-2.30.8.tar.gz
1+
30dfa86fcced174fef0ed78ffa53476a31765e19cdcdf8233ab92876445b4dedaa758fc42a3ec332324d13faa2daafcadcc44fc0f536a2969ef836162ec3cd36 SDL2-2.30.9.tar.gz
22
0ff345824f95158dfa72f83f9d4a540601c178cd759334bf849c14a2920b5330d0763413b58c08b3deba8d3a4ccb6ea2a8159f87efe4cbb0e8ea850f63d09454 SDL2_image-2.8.2.tar.gz
33
5ddbc4b0b5fad2e0844a503daa79564b912654192599ef8fa7698531f08323ce01801f6bb17b2b3905020a3df362a967b7566ae725eb085da991578cc0807aad SDL2_mixer-2.8.0.tar.gz
44
34a1d210d8f1b1e802139d65ba47e36033bb7881e75a8862c1b1c515565bef85e3d81ee42e952aa664de043debef387ba60088a9cf3ba3297413db39a13af912 SDL2_ttf-2.22.0.tar.gz

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ if plat == 'win' and host_machine.cpu_family().startswith('x86')
109109
)
110110
endif
111111

112-
sdl_ver = (sdl_api == 3) ? '3.1.3' : '2.30.8'
112+
sdl_ver = (sdl_api == 3) ? '3.1.6' : '2.30.9'
113113
sdl_image_ver = '2.8.2'
114114
sdl_mixer_ver = '2.8.0'
115115
sdl_ttf_ver = '2.22.0'

0 commit comments

Comments
 (0)