Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Pango] Update to v1.52.2 #8497

Merged
merged 3 commits into from
Apr 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions P/Pango/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
using BinaryBuilder

name = "Pango"
version = v"1.52.1"
version = v"1.52.2"

# Collection of sources required to build Pango
# Collection of sources required to build Pango: https://download.gnome.org/sources/pango/
sources = [
ArchiveSource("http://ftp.gnome.org/pub/GNOME/sources/pango/$(version.major).$(version.minor)/pango-$(version).tar.xz",
"58728a0a2d86f60761208df9493033d18ecb2497abac80ee1a274ad0c6e55f0f"),
"d0076afe01082814b853deec99f9349ece5f2ce83908b8e58ff736b41f78a96b"),
ArchiveSource("https://sourceforge.net/projects/mingw-w64/files/mingw-w64/mingw-w64-release/mingw-w64-v11.0.0.tar.bz2",
"bd0ea1633bd830204cc23a696889335e9d4a32b8619439ee17f22188695fcc5f"),
]
Expand All @@ -32,7 +32,7 @@ if [[ "${target}" == *-mingw* ]]; then
make install
fi

cd $WORKSPACE/srcdir/pango-*/
cd $WORKSPACE/srcdir/pango*/

if [[ "${target}" == "${MACHTYPE}" ]]; then
# When building for the host platform, the system libexpat is picked up
Expand All @@ -57,7 +57,7 @@ install_license ../COPYING

# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = filter!(p -> arch(p) != "armv6l", supported_platforms())
platforms = supported_platforms()

# The products that we will ensure are always built
products = [
Expand All @@ -68,11 +68,11 @@ products = [

# Dependencies that must be installed before this package can be built
dependencies = [
Dependency("Cairo_jll"; compat="1.16.1"),
Dependency("Cairo_jll"; compat="1.18.0"),
Dependency("Fontconfig_jll"),
Dependency("FreeType2_jll"; compat="2.10.4"),
Dependency("FreeType2_jll"; compat="2.13.1"),
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For the record, this is because #7454 changed the compat bound of FreeType2_jll to 2.13.1, but I have no clue of why: https://github.com/JuliaPackaging/Yggdrasil/pull/7454/files#diff-e2d8f4bfb63a6c0200a9e9beeb578adef317bf2a540738ea6b7858df24e1115fR76

Dependency("FriBidi_jll"),
Dependency("Glib_jll"; compat="2.68.1"),
Dependency("Glib_jll"; compat="2.74.0"),
Dependency("HarfBuzz_jll"; compat="2.8.1"),
BuildDependency("Xorg_xorgproto_jll"; platforms=filter(p->Sys.islinux(p)||Sys.isfreebsd(p), platforms)),
]
Expand Down