Kristoffer Carlsson
Kristoffer Carlsson
This PR requires https://github.com/JuliaLang/julia/pull/53653. This allows one to define a subproject which is an incremental addition to the dependency graph of the "base project". When the sub project is active...
Many times in the global env I add some small package to try it out and then Pkg starts precompiling everything (even things I did not intend to load). This...
From https://github.com/JuliaLang/Pkg.jl/pull/3783#issuecomment-1974794079 > Could it make sense to be able to specify a registry in the sources block? Maybe with a separate registries block to have the url. That way...
IIUC, currently, all relative paths for packages (`pkg.path`) are considered relative to the manifest file. But in cases they are provided by a `[sources]` entry they should in fact be...
Fixes https://github.com/JuliaLang/julia/issues/53196
Otherwise Pkg becomes non relocatable. I remember doing this before but not sure why it didn't happen.
Aimed to implement https://github.com/JuliaLang/Pkg.jl/pull/3783#issuecomment-1971225694 > Regarding API, is there a way we can make Pkg.add(path=some_local_path) add the package at some_local_path to the [sources] section? Some CI errors here and I...
Reverts JuliaLang/Pkg.jl#3690 See: https://github.com/JuliaLang/julia/pull/53509
Very quick implementation of https://github.com/JuliaLang/Pkg.jl/issues/1062#issuecomment-1952014608, (with some debug logging in it to show what happens), specifically: > On the other hand, I wonder whether it would be best to simply...
This is quite heavily WIP towards having "app" support in Pkg. An app is a program that you just write its name in the terminal and it starts up, without...