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

[WIP] Make Makie a mono repository #38233

Merged
merged 1 commit into from
Jun 12, 2021

Conversation

SimonDanisch
Copy link
Contributor

We want to make Makie a mono repository for all related packages:
This needs to get merged first: MakieOrg/Makie.jl#1020

@SimonDanisch
Copy link
Contributor Author

A sanity check from #35965 (comment):

using TOML
cd("dev/Makie")
packages = ["CairoMakie", "GLMakie", "MakieCore", "WGLMakie"]
for pkg in packages
    versions = TOML.parsefile(joinpath(first(DEPOT_PATH), "registries",
                              "General", pkg[1:1], pkg, "Versions.toml"))

    found = all(sort(collect(keys(versions)))) do version
        tree_sha = versions[version]["git-tree-sha1"]
        try
            readchomp(`git rev-parse -q --verify "$(tree_sha)^{tree}"`)
            return true
        catch
            false
        end
    end
    println(pkg, ": ", found ? "all versions found!" : "ney")
end
CairoMakie: all versions found!
GLMakie: all versions found!
MakieCore: all versions found!
WGLMakie: all versions found!

@SimonDanisch
Copy link
Contributor Author

@DilumAluthge The Makie monorepo PR got merged, so this is ready :)
I tried adding this branch of the registry locally as the only registry and everything seems to work fine, so I think this should all work?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants