diff --git a/G/GLPK/build_tarballs.jl b/G/GLPK/build_tarballs.jl index e2062874cc4..f4f780f034f 100644 --- a/G/GLPK/build_tarballs.jl +++ b/G/GLPK/build_tarballs.jl @@ -1,7 +1,7 @@ using BinaryBuilder, Pkg name = "GLPK" -version = v"5.0.1" # <-- This is a lie, we're bumping from 5.0 to 5.0.1 to create a Julia v1.6+ release with experimental platforms +version = v"5.0.2" # <-- This is a lie, we're bumping from 5.0 to 5.0.2 to create a Julia v1.6+ release with experimental platforms # Collection of sources required to build GLPK sources = [ @@ -18,6 +18,7 @@ else export CPPFLAGS="-I${prefix}/include" fi autoreconf -vi +update_configure_scripts ./configure --prefix=${prefix} --host=${target} --build=${MACHTYPE} --with-gmp make -j${nproc} make install @@ -33,8 +34,7 @@ products = [ # Dependencies that must be installed before this package can be built dependencies = [ - # We use GMP_jll v6.2.0 because we're requiring Julia v1.6+ - Dependency("GMP_jll", v"6.2.0"), + Dependency("GMP_jll", v"6.2.1"), ] # Build the tarballs, and possibly a `build.jl` as well. @@ -42,4 +42,4 @@ dependencies = [ build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; preferred_gcc_version=v"6", julia_compat="1.6") -# Build trigger: 1 +# Build trigger: 2