About checking a package/library `Manifest.toml` into control version (again)

Now that I think of it: You could make sure you’re using the uncompressed/cloned version of the General registry (or any other registry), and manually roll it back to some specific point in time.

I’m pretty sure that would result in packages being resolved only using the versions available at that point in time.

To get the uncompressed registry, I think you’d have to do

pkg> registry rm General  # remove compressed version
pkg> registry add https://github.com/JuliaRegistries/General.git
  # add uncompressed version

Then go to $JULIA_DEPOT_PATH/registries/General, and roll back the registry to some specific point in time. Based on a post from @StefanKarpinski in Do you have "General.tar.gz" in your `.julia/registries/`? - #5 by StefanKarpinski, going to a specific historical registry state isn’t just an afterthought.

I’d probably try to play around with this only with clean JULIA_DEPOT_PATH (so as not to mess up the default ~/.julia). I’m also not sure if you need to take measures to prevent automatic registry updating, like Pkg.offline().

Make sure to delete and re-add General when you’re done.

1 Like