diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3ae43e4 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +override/ diff --git a/Artifacts.toml b/Artifacts.toml new file mode 100644 index 0000000..3dc7f2d --- /dev/null +++ b/Artifacts.toml @@ -0,0 +1,16 @@ +[[LicenseSpring]] +arch = "i686" +git-tree-sha1 = "53956a9175957dffa093f8d55d5de8eff9a73c3c" +os = "windows" + + [[LicenseSpring.download]] + sha256 = "f587af6242bef6468648e8546c96f142ebc20611599cf6a975052e9253120c26" + url = "https://github.com/juliacomputing/LicenseSpring_jll.jl/releases/download/LicenseSpring-v7.4.0+0/LicenseSpring.v7.4.0.i686-w64-mingw32.tar.gz" +[[LicenseSpring]] +arch = "x86_64" +git-tree-sha1 = "eec8df67e27ff3f24e3ff32f8e83ff61a105dae9" +os = "windows" + + [[LicenseSpring.download]] + sha256 = "c10151612161ff8a854e7c3be9ea04f3b96458483562179eaca5865475e93554" + url = "https://github.com/juliacomputing/LicenseSpring_jll.jl/releases/download/LicenseSpring-v7.4.0+0/LicenseSpring.v7.4.0.x86_64-w64-mingw32.tar.gz" diff --git a/LICENSE b/LICENSE index 8a77e00..3fe3b7d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,3 +1,11 @@ +The Julia source code within this repository (all files under `src/`) are +released under the terms of the MIT "Expat" License, the text of which is +included below. This license does not apply to the binary package wrapped by +this Julia package and automatically downloaded by the Julia package manager +upon installing this wrapper package. The binary package's license is shipped +alongside the binary itself and can be found within the +`share/licenses/LicenseSpring` directory within its prefix. + MIT License Copyright (c) 2021 Julia Computing, Inc. diff --git a/Project.toml b/Project.toml new file mode 100644 index 0000000..2881cac --- /dev/null +++ b/Project.toml @@ -0,0 +1,15 @@ +name = "LicenseSpring_jll" +uuid = "ea2c2f5b-d23d-53da-ad7e-0e62c0a9a2e9" +version = "7.4.0+0" + +[deps] +JLLWrappers = "692b3bcd-3c85-4b1f-b108-f13ce0eb3210" +Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f" +LibCURL_jll = "deac9b47-8bc7-5906-a0fe-35ac56dc84c0" +OpenSSL_jll = "458c3c95-2e84-50aa-8efc-19380b2a3a95" +Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb" +Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33" + +[compat] +JLLWrappers = "1.2.0" +julia = "1.0" diff --git a/README.md b/README.md new file mode 100644 index 0000000..4523554 --- /dev/null +++ b/README.md @@ -0,0 +1,31 @@ +# `LicenseSpring_jll.jl` (v7.4.0+0) + +This is an autogenerated package constructed using [`BinaryBuilder.jl`](https://github.com/JuliaPackaging/BinaryBuilder.jl). + +For more details about JLL packages and how to use them, see `BinaryBuilder.jl` [documentation](https://juliapackaging.github.io/BinaryBuilder.jl/dev/jll/). + +## Sources + +The tarballs for `LicenseSpring_jll.jl` have been built from these sources: + +* files in directory, relative to originating `build_tarballs.jl`: `./bundled` + +## Platforms + +`LicenseSpring_jll.jl` is available for the following platforms: + +* `Windows i686` (`i686-w64-mingw32`) +* `Windows x86_64` (`x86_64-w64-mingw32`) + +## Dependencies + +The following JLL packages are required by `LicenseSpring_jll.jl`: + +* `LibCURL_jll)` +* `OpenSSL_jll)` + +## Products + +The code bindings within this package are autogenerated from the following `Products`: + +* `LibraryProduct`: `liblicensespring` diff --git a/src/LicenseSpring_jll.jl b/src/LicenseSpring_jll.jl new file mode 100644 index 0000000..bee5624 --- /dev/null +++ b/src/LicenseSpring_jll.jl @@ -0,0 +1,9 @@ +# Use baremodule to shave off a few KB from the serialized `.ji` file +baremodule LicenseSpring_jll +using Base +using Base: UUID +import JLLWrappers + +JLLWrappers.@generate_main_file_header("LicenseSpring") +JLLWrappers.@generate_main_file("LicenseSpring", UUID("ea2c2f5b-d23d-53da-ad7e-0e62c0a9a2e9")) +end # module LicenseSpring_jll diff --git a/src/wrappers/i686-w64-mingw32.jl b/src/wrappers/i686-w64-mingw32.jl new file mode 100644 index 0000000..1aa02d5 --- /dev/null +++ b/src/wrappers/i686-w64-mingw32.jl @@ -0,0 +1,17 @@ +# Autogenerated wrapper script for LicenseSpring_jll for i686-w64-mingw32 +export liblicensespring + +using LibCURL_jll +using OpenSSL_jll +JLLWrappers.@generate_wrapper_header("LicenseSpring") +JLLWrappers.@declare_library_product(liblicensespring, "LicenseSpring.dll") +function __init__() + JLLWrappers.@generate_init_header(LibCURL_jll, OpenSSL_jll) + JLLWrappers.@init_library_product( + liblicensespring, + "bin\\LicenseSpring.dll", + RTLD_LAZY | RTLD_DEEPBIND, + ) + + JLLWrappers.@generate_init_footer() +end # __init__() diff --git a/src/wrappers/x86_64-w64-mingw32.jl b/src/wrappers/x86_64-w64-mingw32.jl new file mode 100644 index 0000000..2aa20ca --- /dev/null +++ b/src/wrappers/x86_64-w64-mingw32.jl @@ -0,0 +1,17 @@ +# Autogenerated wrapper script for LicenseSpring_jll for x86_64-w64-mingw32 +export liblicensespring + +using LibCURL_jll +using OpenSSL_jll +JLLWrappers.@generate_wrapper_header("LicenseSpring") +JLLWrappers.@declare_library_product(liblicensespring, "LicenseSpring.dll") +function __init__() + JLLWrappers.@generate_init_header(LibCURL_jll, OpenSSL_jll) + JLLWrappers.@init_library_product( + liblicensespring, + "bin\\LicenseSpring.dll", + RTLD_LAZY | RTLD_DEEPBIND, + ) + + JLLWrappers.@generate_init_footer() +end # __init__()