-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[LazyJLLWrappers] Make the new lazy JLLWrappers a separate package
We can actually co-exist with JLLWrappers with a little bit of extra work, adding an `eager_mode()` function [0]. This allows us to have fully lazy semantics when the entire tree of dependencies is using `LazyJLLWrappers`, but subtrees that have old `JLLWrappers` JLLs will all be flipped into eager mode. X-ref: JuliaPackaging/JLLWrappers.jl#61
- Loading branch information
1 parent
c5d4efd
commit a5e52fd
Showing
15 changed files
with
48 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions
8
JLLWrappers.jl/Project.toml → LazyJLLWrappers.jl/Project.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# JLLWrappers.jl | ||
# LazyJLLWrappers.jl | ||
|
||
This package exports a macro, `@generate_jll_from_toml()` that generates a [JLL wrapper package](https://docs.binarybuilder.org/stable/jll/) from a TOML file generated by [`JLLGenerator.jl`](https://github.com/JuliaPackaging/BB2.jl/tree/main/JLLGenerator.jl). | ||
Example: | ||
|
||
``` | ||
module Foo_jll | ||
using JLLWrappers | ||
using LazyJLLWrappers | ||
@generate_jll_from_toml() | ||
end | ||
``` |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters