Skip to content

Commit a6b3973

Browse files
Ghabrygithub-actions[bot]
authored andcommitted
Update libraries
1 parent e32c201 commit a6b3973

2 files changed

Lines changed: 15 additions & 15 deletions

File tree

shared/packages.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ arguments = "-DZLIB_BUILD_TESTING=OFF -DZLIB_BUILD_SHARED=OFF -DZLIB_BUILD_STATI
1111
anitya_id = 5303
1212

1313
[libpng]
14-
version = 1.6.55
14+
version = 1.6.56
1515
url = "https://download.sourceforge.net/libpng/libpng-${version}.tar.xz"
1616
arguments = "-DPNG_SHARED=OFF -DPNG_TOOLS=OFF -DPNG_TESTS=OFF"
1717
anitya_id = 1705
1818

1919
[freetype]
20-
version = 2.14.2
20+
version = 2.14.3
2121
url = "https://download.savannah.gnu.org/releases/freetype/freetype-${version}.tar.xz"
2222
arguments = "-DFT_DISABLE_BZIP2=ON -DFT_DISABLE_BROTLI=ON"
2323
anitya_id = 854
2424

2525
[harfbuzz]
26-
version = 13.0.0
26+
version = 13.2.1
2727
url = "https://github.com/harfbuzz/harfbuzz/releases/download/${version}/harfbuzz-${version}.tar.xz"
2828
arguments = "-Dfreetype=enabled -Dicu=disabled -Dtests=disabled -Dutilities=disabled -Draster=disabled -Dvector=disabled -Dsubset=disabled"
2929
anitya_id = 1299
@@ -37,7 +37,7 @@ anitya_id = 3648
3737
[expat]
3838
version_major = 2
3939
version_minor = 7
40-
version_patch = 4
40+
version_patch = 5
4141
version = ${version_major}.${version_minor}.${version_patch}
4242
version_url = ${version_major}_${version_minor}_${version_patch}
4343
url = "https://github.com/libexpat/libexpat/releases/download/R_${version_url}/expat-${version}.tar.bz2"
@@ -146,7 +146,7 @@ url = "https://github.com/fragglet/lhasa/releases/download/v${version}/lhasa-${v
146146
anitya_id = 14822
147147

148148
[ICU]
149-
version = 78.2
149+
version = 78.3
150150
url = "https://github.com/unicode-org/icu/releases/download/release-${version}/icu4c-${version}-sources.tgz"
151151
directory = "icu"
152152
arguments = "--enable-strict=no --disable-tests --disable-samples
@@ -157,7 +157,7 @@ anitya_id = 379847
157157

158158
[icudata]
159159
version_major = 78
160-
version_minor = 2
160+
version_minor = 3
161161
version = ${version_major}.${version_minor}
162162
_ini_comment = empty on purpose, otherwise polluted by default section
163163
directory =

shared/packages.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,26 @@ ZLIB_URL="https://zlib.net/fossils/zlib-1.3.2.tar.gz"
99
ZLIB_ARGS="-DZLIB_BUILD_TESTING=OFF -DZLIB_BUILD_SHARED=OFF -DZLIB_BUILD_STATIC=ON"
1010
ZLIB_DIR="zlib-1.3.2"
1111

12-
LIBPNG_URL="https://download.sourceforge.net/libpng/libpng-1.6.55.tar.xz"
12+
LIBPNG_URL="https://download.sourceforge.net/libpng/libpng-1.6.56.tar.xz"
1313
LIBPNG_ARGS="-DPNG_SHARED=OFF -DPNG_TOOLS=OFF -DPNG_TESTS=OFF"
14-
LIBPNG_DIR="libpng-1.6.55"
14+
LIBPNG_DIR="libpng-1.6.56"
1515

16-
FREETYPE_URL="https://download.savannah.gnu.org/releases/freetype/freetype-2.14.2.tar.xz"
16+
FREETYPE_URL="https://download.savannah.gnu.org/releases/freetype/freetype-2.14.3.tar.xz"
1717
FREETYPE_ARGS="-DFT_DISABLE_BZIP2=ON -DFT_DISABLE_BROTLI=ON"
18-
FREETYPE_DIR="freetype-2.14.2"
18+
FREETYPE_DIR="freetype-2.14.3"
1919

20-
HARFBUZZ_URL="https://github.com/harfbuzz/harfbuzz/releases/download/13.0.0/harfbuzz-13.0.0.tar.xz"
20+
HARFBUZZ_URL="https://github.com/harfbuzz/harfbuzz/releases/download/13.2.1/harfbuzz-13.2.1.tar.xz"
2121
HARFBUZZ_ARGS="-Dfreetype=enabled -Dicu=disabled -Dtests=disabled -Dutilities=disabled -Draster=disabled -Dvector=disabled -Dsubset=disabled"
22-
HARFBUZZ_DIR="harfbuzz-13.0.0"
22+
HARFBUZZ_DIR="harfbuzz-13.2.1"
2323

2424
PIXMAN_URL="https://cairographics.org/releases/pixman-0.46.4.tar.gz"
2525
PIXMAN_ARGS="-Dtests=disabled -Ddemos=disabled -Dlibpng=disabled"
2626
PIXMAN_DIR="pixman-0.46.4"
2727

28-
EXPAT_URL="https://github.com/libexpat/libexpat/releases/download/R_2_7_4/expat-2.7.4.tar.bz2"
28+
EXPAT_URL="https://github.com/libexpat/libexpat/releases/download/R_2_7_5/expat-2.7.5.tar.bz2"
2929
EXPAT_ARGS="-DEXPAT_BUILD_TOOLS=OFF -DEXPAT_BUILD_EXAMPLES=OFF \
3030
-DEXPAT_BUILD_TESTS=OFF -DEXPAT_BUILD_DOCS=OFF -DEXPAT_SHARED_LIBS=OFF"
31-
EXPAT_DIR="expat-2.7.4"
31+
EXPAT_DIR="expat-2.7.5"
3232

3333
LIBOGG_URL="https://downloads.xiph.org/releases/ogg/libogg-1.3.6.tar.xz"
3434
LIBOGG_DIR="libogg-1.3.6"
@@ -95,7 +95,7 @@ INIH_DIR="inih-r62"
9595
LHASA_URL="https://github.com/fragglet/lhasa/releases/download/v0.5.0/lhasa-0.5.0.tar.gz"
9696
LHASA_DIR="lhasa-0.5.0"
9797

98-
ICU_URL="https://github.com/unicode-org/icu/releases/download/release-78.2/icu4c-78.2-sources.tgz"
98+
ICU_URL="https://github.com/unicode-org/icu/releases/download/release-78.3/icu4c-78.3-sources.tgz"
9999
ICU_DIR="icu"
100100
ICU_ARGS="--enable-strict=no --disable-tests --disable-samples \
101101
--disable-dyload --disable-extras --disable-icuio \

0 commit comments

Comments
 (0)