Skip to content

Commit 392af27

Browse files
committed
Even more library updates
1 parent fab57be commit 392af27

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed

shared/packages.ini

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ arguments = "--disable-alsa --disable-sqlite --disable-full-suite --disable-exte
7171
anitya_id = 13277
7272

7373
[libxmp-lite]
74-
version = 4.6.0
74+
version = 4.6.1
7575
url = "https://github.com/libxmp/libxmp/releases/download/libxmp-${version}/libxmp-lite-${version}.tar.gz"
7676
arguments = "-DBUILD_STATIC=ON -DBUILD_SHARED=OFF"
7777
anitya_id = 1784
@@ -107,7 +107,7 @@ arguments = "--disable-http --disable-examples"
107107
anitya_id = 10353
108108

109109
[fluidsynth]
110-
version = 2.4.1
110+
version = 2.4.2
111111
url = "https://github.com/FluidSynth/fluidsynth/archive/refs/tags/v${version}.tar.gz"
112112
arguments = "-DLIB_SUFFIX=''"
113113
anitya_id = 10437
@@ -125,7 +125,7 @@ arguments = "-DJSON_BuildTests=OFF"
125125
anitya_id = 11152
126126

127127
[fmt]
128-
version = 11.0.2
128+
version = 11.1.1
129129
url = "https://github.com/fmtlib/fmt/releases/download/${version}/fmt-${version}.zip"
130130
arguments = "-DFMT_DOC=OFF -DFMT_TEST=OFF"
131131
anitya_id = 11526
@@ -156,15 +156,16 @@ anitya_id = 16134
156156

157157
[icudata]
158158
version_major = 76
159-
version = ${version_major}
159+
version_minor = 1
160+
version = ${version_major}-${version_minor}
160161
_ini_comment = empty on purpose, otherwise polluted by default section
161162
directory =
162-
url = https://ci.easyrpg.org/job/icudata/lastSuccessfulBuild/artifact/icudata${version}_all.tar.gz
163+
url = https://ci.easyrpg.org/job/icudata/lastSuccessfulBuild/artifact/icudata${version_major}_all.tar.gz
163164
files = "icudt*.dat"
164165
anitya_id = 16134
165166

166167
[SDL2]
167-
version = 2.30.10
168+
version = 2.30.11
168169
url = "https://libsdl.org/release/SDL2-${version}.tar.gz"
169170
anitya_id = 4779
170171

shared/packages.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ LIBSNDFILE_URL="https://github.com/libsndfile/libsndfile/releases/download/1.2.2
4949
LIBSNDFILE_ARGS="--disable-alsa --disable-sqlite --disable-full-suite --disable-external-libs --disable-mpeg"
5050
LIBSNDFILE_DIR="libsndfile-1.2.2"
5151

52-
LIBXMP_LITE_URL="https://github.com/libxmp/libxmp/releases/download/libxmp-4.6.0/libxmp-lite-4.6.0.tar.gz"
52+
LIBXMP_LITE_URL="https://github.com/libxmp/libxmp/releases/download/libxmp-4.6.1/libxmp-lite-4.6.1.tar.gz"
5353
LIBXMP_LITE_ARGS="-DBUILD_STATIC=ON -DBUILD_SHARED=OFF"
54-
LIBXMP_LITE_DIR="libxmp-lite-4.6.0"
54+
LIBXMP_LITE_DIR="libxmp-lite-4.6.1"
5555

5656
SPEEXDSP_URL="https://downloads.xiph.org/releases/speex/speexdsp-1.2.1.tar.gz"
5757
SPEEXDSP_ARGS="--disable-sse --disable-neon"
@@ -72,9 +72,9 @@ OPUSFILE_URL="https://github.com/xiph/opusfile/releases/download/v0.12/opusfile-
7272
OPUSFILE_ARGS="--disable-http --disable-examples"
7373
OPUSFILE_DIR="opusfile-0.12"
7474

75-
FLUIDSYNTH_URL="https://github.com/FluidSynth/fluidsynth/archive/refs/tags/v2.4.1.tar.gz"
75+
FLUIDSYNTH_URL="https://github.com/FluidSynth/fluidsynth/archive/refs/tags/v2.4.2.tar.gz"
7676
FLUIDSYNTH_ARGS="-DLIB_SUFFIX=''"
77-
FLUIDSYNTH_DIR="fluidsynth-2.4.1"
77+
FLUIDSYNTH_DIR="fluidsynth-2.4.2"
7878

7979
FLUIDLITE_URL="https://github.com/divideconcept/FluidLite/archive/57a0e74e708f699b13d7c85b28a4e1ff5b71887c.zip"
8080
FLUIDLITE_ARGS="-DFLUIDLITE_BUILD_STATIC=ON -DFLUIDLITE_BUILD_SHARED=OFF"
@@ -84,9 +84,9 @@ NLOHMANNJSON_URL="https://github.com/nlohmann/json/archive/v3.11.3.tar.gz"
8484
NLOHMANNJSON_DIR="json-3.11.3"
8585
NLOHMANNJSON_ARGS="-DJSON_BuildTests=OFF"
8686

87-
FMT_URL="https://github.com/fmtlib/fmt/releases/download/11.0.2/fmt-11.0.2.zip"
87+
FMT_URL="https://github.com/fmtlib/fmt/releases/download/11.1.1/fmt-11.1.1.zip"
8888
FMT_ARGS="-DFMT_DOC=OFF -DFMT_TEST=OFF"
89-
FMT_DIR="fmt-11.0.2"
89+
FMT_DIR="fmt-11.1.1"
9090

9191
INIH_URL="https://github.com/benhoyt/inih/archive/refs/tags/r58.tar.gz"
9292
INIH_DIR="inih-r58"
@@ -104,8 +104,8 @@ ICU_ARGS="--enable-strict=no --disable-tests --disable-samples \
104104
ICUDATA_URL=https://ci.easyrpg.org/job/icudata/lastSuccessfulBuild/artifact/icudata76_all.tar.gz
105105
ICUDATA_FILES="icudt*.dat"
106106

107-
SDL2_URL="https://libsdl.org/release/SDL2-2.30.10.tar.gz"
108-
SDL2_DIR="SDL2-2.30.10"
107+
SDL2_URL="https://libsdl.org/release/SDL2-2.30.11.tar.gz"
108+
SDL2_DIR="SDL2-2.30.11"
109109

110110
# 3.18.0, only needed for lmu2png tool
111111
FREEIMAGE_URL="https://github.com/carstene1ns/freeimage-easyrpg/archive/d82954e4adcb6c1b223bd3cb2e953b6bbf54dfcd.zip"

0 commit comments

Comments
 (0)