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

[openspecfun] Update to 0.5.4 #2892

Merged
merged 3 commits into from
Apr 24, 2021
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
12 changes: 6 additions & 6 deletions O/OpenSpecFun/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
using BinaryBuilder

name = "OpenSpecFun"
version = v"0.5.3"
version = v"0.5.4"

# Collection of sources required to build openspecfun
sources = [
ArchiveSource("https://github.com/JuliaMath/openspecfun/archive/v0.5.3.tar.gz",
"1505c7a45f9f39ffe18be36f7a985cb427873948281dbcd376a11c2cd15e41e7"),
GitSource("https://github.com/JuliaMath/openspecfun.git",
"d22094a030caf4042701d9c8eebd7c5236d3b3c9")
]

# Bash recipe for building across all platforms
script = raw"""
cd $WORKSPACE/srcdir/openspecfun-*/
cd $WORKSPACE/srcdir/openspecfun*/

# It needs to be told it's on Windows
if [[ ${target} == *mingw* ]]; then
Expand All @@ -31,7 +31,7 @@ make install OS=${OS} prefix=$prefix
# platforms are passed in on the command line. Since openspecfun uses
# Fortran for AMOS, we need the combinatorial explosion of platforms
# and GCC versions.
platforms = expand_gfortran_versions(supported_platforms())
platforms = expand_gfortran_versions(supported_platforms(;experimental=true))

# The products that we will ensure are always built
products = [
Expand All @@ -44,4 +44,4 @@ dependencies = [
]

# Build the tarballs.
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies)
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; julia_compat="1.6")