Skip to content

Commit

Permalink
ImageMagick: Update to 6.9.13-16 and 7.1.1-38 (#9409)
Browse files Browse the repository at this point in the history
* ImageMagick: Update to 6.9.13-16 and 7.1.1-38

* Relax compat version for Libtiff

* Set compat bounds for Libtiff

* Use GCC 6
  • Loading branch information
eschnett authored Sep 25, 2024
1 parent 3f205a9 commit 63625c0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions I/ImageMagick/ImageMagick@6/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
# `julia build_tarballs.jl --help` to see a usage message.
using BinaryBuilder
name = "ImageMagick"
upstream_version = v"6.9.13-6"
upstream_version = v"6.9.13-16"
version = VersionNumber(upstream_version.major, upstream_version.minor, upstream_version.patch)

# Collection of sources required to build imagemagick
sources = [
GitSource("https://github.com/ImageMagick/ImageMagick6",
"3da057d31756970cb50b1567922e9caf94d36d84"),
"d2fdaa61f1acf130a58381ffa09171b514db69ad"),
DirectorySource("./bundled"),
]

Expand Down Expand Up @@ -61,11 +61,12 @@ dependencies = [
Dependency("Zlib_jll"),
Dependency("libpng_jll"),
Dependency("JpegTurbo_jll"),
Dependency("Libtiff_jll"; compat="4.5.1"),
Dependency("Libtiff_jll"; compat="~4.5.1"),
Dependency("Ghostscript_jll"),
Dependency("OpenJpeg_jll"),
]

# Build the tarballs, and possibly a `build.jl` as well.
# Using GCC 6 to get a newer libc, required by OpenJpeg that is pulled in by Libtiff
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies;
julia_compat="1.6", clang_use_lld=false)
clang_use_lld=false, julia_compat="1.6", preferred_gcc_version=v"6")
9 changes: 5 additions & 4 deletions I/ImageMagick/ImageMagick@7/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
# `julia build_tarballs.jl --help` to see a usage message.
using BinaryBuilder
name = "ImageMagick"
upstream_version = v"7.1.1-31"
upstream_version = v"7.1.1-38"
version = VersionNumber(upstream_version.major, upstream_version.minor, upstream_version.patch)

# Collection of sources required to build imagemagick
sources = [
GitSource("https://github.com/ImageMagick/ImageMagick",
"2f6d2de838390a054af74822e80d74b7799633cb"),
"b0ab92265bab638e6ecd2f18b45977c38771c671"),
DirectorySource("./bundled"),
]

Expand Down Expand Up @@ -50,12 +50,13 @@ products = [
dependencies = [
Dependency("Ghostscript_jll"),
Dependency("JpegTurbo_jll"),
Dependency("Libtiff_jll"; compat="4.3.0"),
Dependency("Libtiff_jll"; compat="~4.5.1"),
Dependency("OpenJpeg_jll"),
Dependency("Zlib_jll"),
Dependency("libpng_jll"),
]

# Build the tarballs, and possibly a `build.jl` as well.
# Using GCC 6 to get a newer libc, required by OpenJpeg that is pulled in by Libtiff
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies;
clang_use_lld=false, julia_compat="1.6")
clang_use_lld=false, julia_compat="1.6", preferred_gcc_version=v"6")

0 comments on commit 63625c0

Please sign in to comment.