Skip to content

Commit aa1363e

Browse files
authored
Merge pull request #2837 from pygame-community/SDL-2.30.3
Updated SDL to 2.30.3
2 parents 9b251f5 + f077050 commit aa1363e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

buildconfig/download_win_prebuilt.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ 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.2/SDL2-devel-2.30.2-VC.zip',
82-
'f354c841e99a9894ff0f5ba85ec306184316e7b6',
81+
'https://github.com/libsdl-org/SDL/releases/download/release-2.30.3/SDL2-devel-2.30.3-VC.zip',
82+
'2878b4b1fbe9e4b22a317ad52c9d751c70e8df62',
8383
],
8484
[
8585
'https://github.com/pygame-community/SDL_image/releases/download/2.8.2-pgce/SDL2_image-devel-2.8.2-VCpgce.zip',
@@ -234,12 +234,12 @@ def copy(src, dst):
234234
copy(
235235
os.path.join(
236236
temp_dir,
237-
'SDL2-devel-2.30.2-VC/SDL2-2.30.2'
237+
'SDL2-devel-2.30.3-VC/SDL2-2.30.3'
238238
),
239239
os.path.join(
240240
move_to_dir,
241241
prebuilt_dir,
242-
'SDL2-2.30.2'
242+
'SDL2-2.30.3'
243243
)
244244
)
245245

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="SDL2-2.30.2"
6+
SDL2="SDL2-2.30.3"
77
IMG2="SDL2_image-2.8.2"
88
TTF2="SDL2_ttf-2.22.0"
99
MIX2="SDL2_mixer-2.8.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
19316bb4c483a8c4be2140b70d906b7767beabada481873217a9207bd41e79c1854a837e1394325f59795da010f5344f791a7973a846b8189e3f9b662f408aca SDL2-2.30.2.tar.gz
1+
75ddea9ac3c2130e9f6036b4718dbe3d9d1b40dab3cd48d3d488d5a397dd0c226c0573bf18d82eb41498800accf045e259d2ae305f069fad7b34e47a017f2372 SDL2-2.30.3.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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ pg_inc_dirs = []
6969
pg_lib_dirs = []
7070
if plat == 'win' and host_machine.cpu_family().startswith('x86')
7171
# yes, this is a bit ugly and hardcoded but it is what it is
72-
# TODO (middle-term goal) - Should migrate away from this
72+
# TODO (middle-term goal) - Should migrate away from this
7373
# consider meson wraps? Hopefully can also get the same build path as below
7474
arch_suffix = 'x' + host_machine.cpu_family().substring(-2)
7575
base_dir = meson.current_source_dir()
@@ -86,7 +86,7 @@ if plat == 'win' and host_machine.cpu_family().startswith('x86')
8686
)
8787
endif
8888

89-
sdl_ver = '2.30.2'
89+
sdl_ver = '2.30.3'
9090
sdl_image_ver = '2.8.2'
9191
sdl_mixer_ver = '2.8.0'
9292
sdl_ttf_ver = '2.22.0'

0 commit comments

Comments
 (0)