Skip to content
This repository has been archived by the owner on Jul 1, 2022. It is now read-only.

Commit

Permalink
Bump (FLINT) version (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
thofma authored Oct 16, 2021
1 parent cc5e99c commit bc9755e
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "LoadFlint"
uuid = "472f376f-f1cf-461b-9ac1-d103423be9b7"
authors = ["The OSCAR team <[email protected]>"]
version = "0.6.1"
version = "0.6.2"

[deps]
BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"
Expand All @@ -13,7 +13,7 @@ Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"

[compat]
BinaryProvider = "0.4, 0.5"
FLINT_jll = "~200.800.000"
FLINT_jll = "~200.800.100"
julia = "1"

[extras]
Expand Down
2 changes: 2 additions & 0 deletions deps/build.jl
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ elseif VERSION < v"1.3.0-rc4"
push!(dependencies, "build_FLINT.v200.700.100.0.jl")
elseif ver == v"200.800.0+1"
push!(dependencies, "build_FLINT.v200.800.0.jl")
elseif ver == v"200.800.100+0"
push!(dependencies, "build_FLINT.v200.800.100.jl")
else
throw(error("Flint version $ver not supported for julia version <= 1.3"))
end
Expand Down
48 changes: 48 additions & 0 deletions deps/build_FLINT.v200.800.100.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
using BinaryProvider # requires BinaryProvider 0.3.0 or later

# Parse some basic command-line arguments
const verbose = "--verbose" in ARGS
const prefix = Prefix(get([a for a in ARGS if a != "--verbose"], 1, joinpath(@__DIR__, "usr")))
products = [
LibraryProduct(prefix, ["libflint"], :libflint),
]

# Download binaries from hosted location
bin_prefix = "https://github.com/JuliaBinaryWrappers/FLINT_jll.jl/releases/download/FLINT-v200.800.100+0"

# Listing of files generated by BinaryBuilder:
download_info = Dict(
Linux(:aarch64, libc=:glibc) => ("$bin_prefix/FLINT.v200.800.100.aarch64-linux-gnu.tar.gz", "70a02208095688a9ab06767a18f508129d5d1815e8fa348099d6f8385791b087"),
Linux(:aarch64, libc=:musl) => ("$bin_prefix/FLINT.v200.800.100.aarch64-linux-musl.tar.gz", "b9782c2ee9ae573bfec04fa279a6f44e908754183fe6cff1bf6ee1dd726fc066"),
Linux(:armv7l, libc=:glibc, call_abi=:eabihf) => ("$bin_prefix/FLINT.v200.800.100.armv7l-linux-gnueabihf.tar.gz", "05181dfa82a9982d444a59f1677ce75618c263088937299f15dbbea3d0b494e9"),
Linux(:armv7l, libc=:musl, call_abi=:eabihf) => ("$bin_prefix/FLINT.v200.800.100.armv7l-linux-musleabihf.tar.gz", "e36af789921bf2e85faca14badedf2fc542f3da04896fc2295aa56929f9a5d8c"),
Linux(:i686, libc=:glibc) => ("$bin_prefix/FLINT.v200.800.100.i686-linux-gnu.tar.gz", "91f0e689f6474c00e232b00689b62916a4a2684742a84d0907c13f5233c25b8c"),
Linux(:i686, libc=:musl) => ("$bin_prefix/FLINT.v200.800.100.i686-linux-musl.tar.gz", "8721168780bdca81a5e42366b02c179b1f227c06c62f745fe21a853bd7a8d5ae"),
Windows(:i686) => ("$bin_prefix/FLINT.v200.800.100.i686-w64-mingw32.tar.gz", "5bfce2b79fc7943ce35b5f9e5981d8900ffc96a3805fa8da14f5c290bc0117d6"),
Linux(:powerpc64le, libc=:glibc) => ("$bin_prefix/FLINT.v200.800.100.powerpc64le-linux-gnu.tar.gz", "1d0aaa75d0d1494824f2e6ec9388e990fb512b7b70aa0103afefea824397a944"),
MacOS(:x86_64) => ("$bin_prefix/FLINT.v200.800.100.x86_64-apple-darwin.tar.gz", "11a213f3c57b06b44c788516b2d73935e082dcf8c0e025d6ad4c0988ec95dd46"),
Linux(:x86_64, libc=:glibc) => ("$bin_prefix/FLINT.v200.800.100.x86_64-linux-gnu.tar.gz", "72fe5f6310c71fcb41c1b917f9d03051707abc590c9675b284eb2293f5a4004a"),
Linux(:x86_64, libc=:musl) => ("$bin_prefix/FLINT.v200.800.100.x86_64-linux-musl.tar.gz", "27da8fe793114ff0c77185dc9a71b301e00554f78935c8f701217f96ddc36963"),
FreeBSD(:x86_64) => ("$bin_prefix/FLINT.v200.800.100.x86_64-unknown-freebsd.tar.gz", "6557ca99a2d2a3588dfaa0bffb3af3734cc299e73fe0ac6200b75b50b8a2c48c"),
Windows(:x86_64) => ("$bin_prefix/FLINT.v200.800.100.x86_64-w64-mingw32.tar.gz", "71d6360c292b80a127b3e88bf7644d08ad0a5bb0f2a39b8e37c07c444d1000e8"),
)

# Install unsatisfied or updated dependencies:
unsatisfied = any(!satisfied(p; verbose=verbose) for p in products)
dl_info = choose_download(download_info, platform_key_abi())
if dl_info === nothing && unsatisfied
# If we don't have a compatible .tar.gz to download, complain.
# Alternatively, you could attempt to install from a separate provider,
# build from source or something even more ambitious here.
error("Your platform (\"$(Sys.MACHINE)\", parsed as \"$(triplet(platform_key_abi()))\") is not supported by this package!")
end

# If we have a download, and we are unsatisfied (or the version we're
# trying to install is not itself installed) then load it up!
if unsatisfied || !isinstalled(dl_info...; prefix=prefix)
# Download and install binaries
install(dl_info...; prefix=prefix, force=true, verbose=verbose)
end

# Write out a deps.jl file that will contain mappings for our products
write_deps_file(joinpath(@__DIR__, "deps.jl"), products, verbose=verbose)

2 comments on commit bc9755e

@thofma
Copy link
Collaborator Author

@thofma thofma commented on bc9755e Oct 16, 2021

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

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

Registration pull request created: JuliaRegistries/General/46873

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.6.2 -m "<description of version>" bc9755ee926f6bfdf5c9ed66b7e7c235ff839b26
git push origin v0.6.2

Please sign in to comment.