Skip to content

Commit 2fb2028

Browse files
authored
Merge pull request #28309 from JuliaLang/kc/bump_pkg
Bump Pkg
2 parents 31bf0b8 + b6dc9bf commit 2fb2028

File tree

46 files changed

+1214
-404
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1214
-404
lines changed

stdlib/Base64/Project.toml

+7
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
11
name = "Base64"
22
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
3+
4+
[extras]
5+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
6+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
7+
8+
[targets]
9+
test = ["Test", "Random"]

stdlib/CRC32c/Project.toml

+7
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
11
name = "CRC32c"
22
uuid = "8bf52ea8-c179-5cab-976a-9e18b702a9bc"
3+
4+
[extras]
5+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
6+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
7+
8+
[targets]
9+
test = ["Test", "Random"]

stdlib/Dates/Project.toml

+7
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,10 @@ uuid = "ade2ca70-3891-5945-98fb-dc099432e06a"
33

44
[deps]
55
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
6+
7+
[extras]
8+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
9+
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
10+
11+
[targets]
12+
test = ["Test", "InteractiveUtils"]

stdlib/DelimitedFiles/Project.toml

+7
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,10 @@ uuid = "8bb1440f-4735-579b-a4ab-409b98df4dab"
33

44
[deps]
55
Mmap = "a63ad114-7e13-5084-954f-fe012c677804"
6+
7+
[extras]
8+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
9+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
10+
11+
[targets]
12+
test = ["Test", "Random"]

stdlib/Distributed/Project.toml

+6
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
66
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
77
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
88
Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
9+
10+
[extras]
11+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
12+
13+
[targets]
14+
test = ["Test"]

stdlib/FileWatching/Project.toml

+6
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
name = "FileWatching"
22
uuid = "7b1f6079-737a-58dc-b8bc-7a2ca5c1b5ee"
3+
4+
[extras]
5+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
6+
7+
[targets]
8+
test = ["Test"]

stdlib/Future/Project.toml

+7
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,10 @@ uuid = "9fa8497b-333b-5362-9e8d-4d0656e87820"
33

44
[deps]
55
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
6+
7+
[extras]
8+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
9+
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
10+
11+
[targets]
12+
test = ["Test", "SparseArrays"]

stdlib/InteractiveUtils/Project.toml

+7
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,10 @@ uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
44
[deps]
55
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a"
66
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
7+
8+
[extras]
9+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
10+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
11+
12+
[targets]
13+
test = ["Test", "Random"]

stdlib/LibGit2/Project.toml

+9
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
11
name = "LibGit2"
22
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
3+
4+
[extras]
5+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
6+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
7+
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
8+
Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
9+
10+
[targets]
11+
test = ["Test", "Random", "Serialization", "Sockets"]

stdlib/Libdl/Project.toml

+6
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
name = "Libdl"
22
uuid = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
3+
4+
[extras]
5+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
6+
7+
[targets]
8+
test = ["Test"]

stdlib/LinearAlgebra/Project.toml

+8
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,11 @@ uuid = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
33

44
[deps]
55
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
6+
7+
[extras]
8+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
9+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
10+
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
11+
12+
[targets]
13+
test = ["Test", "Random", "SparseArrays"]

stdlib/Logging/Project.toml

+6
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
name = "Logging"
22
uuid = "56ddb016-857b-54e1-b83d-db4d58db5568"
3+
4+
[extras]
5+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
6+
7+
[targets]
8+
test = ["Test"]

stdlib/Markdown/Project.toml

+6
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,9 @@ uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"
33

44
[deps]
55
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
6+
7+
[extras]
8+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
9+
10+
[targets]
11+
test = ["Test"]

stdlib/Mmap/Project.toml

+7
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
11
name = "Mmap"
22
uuid = "a63ad114-7e13-5084-954f-fe012c677804"
3+
4+
[extras]
5+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
6+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
7+
8+
[targets]
9+
test = ["Test", "Random"]

stdlib/OldPkg/Project.toml

+7
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,10 @@ uuid = "fe1c5a76-5840-53d2-82f9-288dd83ce2ce"
33

44
[deps]
55
LibGit2 = "76f85450-5226-5b5a-8eaa-529ad045b433"
6+
7+
[extras]
8+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
9+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
10+
11+
[targets]
12+
test = ["Test", "Random"]

stdlib/Pkg/Project.toml

+6
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,9 @@ REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
1313
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
1414
SHA = "ea8e919c-243c-51af-8825-aaa63cd721ce"
1515
UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
16+
17+
[extras]
18+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
19+
20+
[targets]
21+
test = ["Test"]

stdlib/Pkg/docs/make.jl

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

3-
using Documenter, Pkg
3+
Base.ACTIVE_PROJECT[] = joinpath(@__DIR__, "..")
4+
using Documenter
5+
using Pkg
46

57
makedocs(
68
modules = [Pkg],

stdlib/Pkg/docs/src/index.md

+40-4
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,9 @@ Since we haven't created our own project yet, we are in the default project, loc
193193

194194
To return to the `julia>` prompt, either press backspace when the input line is empty or press Ctrl+C.
195195
Help is available by calling `pkg> help`.
196+
If you are in an environment that does not have access to a REPL you can still use the REPL mode commands using
197+
the string macro `pkg` available after `using Pkg`. The command `pkg"cmd"` would be equivalent to executing `cmd`
198+
in the REPL mode.
196199

197200
The documentation here describes using Pkg from the REPL mode. Documentation of using
198201
the Pkg API (by calling `Pkg.` functions) is in progress of being written.
@@ -356,6 +359,7 @@ Note the info message saying that it is using the existing path. This means that
356359
an already developed package.
357360

358361
If `dev` is used on a local path, that path to that package is recorded and used when loading that package.
362+
The path will be recorded relative to the project file, unless it is given as an absolute path.
359363

360364
To stop tracking a path and use the registered version again, use `free`
361365

@@ -689,13 +693,18 @@ Testing...
689693

690694
#### Test-specific dependencies
691695

692-
Sometimes one might want to use some packages only at testing time but not enforce a dependency on them when the package is used.
693-
This is possible by adding dependencies to a "test target" to the Project file. Here we add the `Test` standard library as a
694-
test-only dependency by adding the following to the Project file:
696+
Sometimes one might want to use some packages only at testing time but not
697+
enforce a dependency on them when the package is used. This is possible by
698+
adding `[extra]` dependencies and adding a a "test target" to the Project file.
699+
Here we add the `Test` standard library as a test-only dependency by adding the
700+
following to the Project file:
695701

696702
```
697-
[targets.test.deps]
703+
[extras]
698704
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
705+
706+
[targets]
707+
test = ["Test"]
699708
```
700709

701710
We can now use `Test` in the test script and we can see that it gets installed on testing:
@@ -826,3 +835,30 @@ Simply clone their project using e.g. `git clone`, `cd` to the project directory
826835

827836
If the project contains a manifest, this will install the packages in the same state that is given by that manifest.
828837
Otherwise, it will resolve the latest versions of the dependencies compatible with the project.
838+
839+
## References
840+
841+
This section describes the "API mode" of interacting with Pkg.jl which is recommended for non-interactive usage,
842+
in i.e. scripts. In the REPL mode packages (with associated version, UUID, URL etc) are parsed from strings,
843+
for example, `"Package#master"`,`"[email protected]"`, `"www.mypkg.com/MyPkg#my/feature"`.
844+
It is possible to use strings as arguments for simple commands in the API mode (like `Pkg.add(["PackageA", "PackageB"])`,
845+
more complicated commands, that e.g. specify URLs or version range, uses a more structured format over strings.
846+
This is done by creating an instance of a [`PackageSpec`](@ref) which are passed in to functions.
847+
848+
```@docs
849+
PackageSpec
850+
PackageMode
851+
UpgradeLevel
852+
Pkg.add
853+
Pkg.develop
854+
Pkg.activate
855+
Pkg.rm
856+
Pkg.update
857+
Pkg.test
858+
Pkg.build
859+
Pkg.pin
860+
Pkg.free
861+
Pkg.instantiate
862+
Pkg.resolve
863+
Pkg.setprotocol!
864+
```

stdlib/Pkg/src/API.jl

+35-25
Original file line numberDiff line numberDiff line change
@@ -17,26 +17,33 @@ preview_info() = printstyled("───── Preview mode ─────\n"; c
1717

1818
include("generate.jl")
1919

20-
parse_package(pkg) = Pkg.REPLMode.parse_package(pkg; add_or_develop=true)
20+
function check_package_name(x::String)
21+
if !(occursin(Pkg.REPLMode.name_re, x))
22+
cmderror("$x is not a valid packagename")
23+
end
24+
return PackageSpec(x)
25+
end
2126

2227
add_or_develop(pkg::Union{String, PackageSpec}; kwargs...) = add_or_develop([pkg]; kwargs...)
23-
add_or_develop(pkgs::Vector{String}; kwargs...) = add_or_develop([parse_package(pkg) for pkg in pkgs]; kwargs...)
28+
add_or_develop(pkgs::Vector{String}; kwargs...) = add_or_develop([check_package_name(pkg) for pkg in pkgs]; kwargs...)
2429
add_or_develop(pkgs::Vector{PackageSpec}; kwargs...) = add_or_develop(Context(), pkgs; kwargs...)
2530

26-
function add_or_develop(ctx::Context, pkgs::Vector{PackageSpec}; mode::Symbol, kwargs...)
31+
function add_or_develop(ctx::Context, pkgs::Vector{PackageSpec}; mode::Symbol, devdir::Union{String,Nothing}=nothing, kwargs...)
2732
Context!(ctx; kwargs...)
2833

34+
# All developed packages should go through handle_repos_develop so just give them an empty repo
35+
for pkg in pkgs
36+
mode == :develop && pkg.repo == nothing && (pkg.repo = Types.GitRepo())
37+
end
38+
2939
# if julia is passed as a package the solver gets tricked;
3040
# this catches the error early on
3141
any(pkg->(pkg.name == "julia"), pkgs) &&
3242
cmderror("Trying to $mode julia as a package")
3343

3444
ctx.preview && preview_info()
35-
if !UPDATED_REGISTRY_THIS_SESSION[]
36-
update_registry(ctx)
37-
end
3845
if mode == :develop
39-
new_git = handle_repos_develop!(ctx, pkgs)
46+
new_git = handle_repos_develop!(ctx, pkgs, something(devdir, Pkg.devdir()))
4047
else
4148
new_git = handle_repos_add!(ctx, pkgs; upgrade_or_add=true)
4249
end
@@ -55,12 +62,10 @@ end
5562

5663
add(args...; kwargs...) = add_or_develop(args...; mode = :add, kwargs...)
5764
develop(args...; kwargs...) = add_or_develop(args...; mode = :develop, kwargs...)
58-
@deprecate checkout develop
59-
6065

61-
rm(pkg::Union{String, PackageSpec}; kwargs...) = rm([pkg]; kwargs...)
62-
rm(pkgs::Vector{String}; kwargs...) = rm([PackageSpec(pkg) for pkg in pkgs]; kwargs...)
63-
rm(pkgs::Vector{PackageSpec}; kwargs...) = rm(Context(), pkgs; kwargs...)
66+
rm(pkg::Union{String, PackageSpec}; kwargs...) = rm([pkg]; kwargs...)
67+
rm(pkgs::Vector{String}; kwargs...) = rm([PackageSpec(pkg) for pkg in pkgs]; kwargs...)
68+
rm(pkgs::Vector{PackageSpec}; kwargs...) = rm(Context(), pkgs; kwargs...)
6469

6570
function rm(ctx::Context, pkgs::Vector{PackageSpec}; kwargs...)
6671
Context!(ctx; kwargs...)
@@ -96,7 +101,7 @@ function update_registry(ctx)
96101
try
97102
GitTools.fetch(repo; refspecs=["+refs/heads/$branch:refs/remotes/origin/$branch"])
98103
catch e
99-
e isa LibGit2.GitError || rethrow(e)
104+
e isa CommandError || rethrow(e)
100105
push!(errors, (reg, "failed to fetch from repo"))
101106
return
102107
end
@@ -280,22 +285,20 @@ function gc(ctx::Context=Context(); kwargs...)
280285
for (manifestfile, date) in manifest_date
281286
!isfile(manifestfile) && continue
282287
println(" `$manifestfile`")
283-
infos = try
288+
manifest = try
284289
read_manifest(manifestfile)
285290
catch e
286291
@warn "Reading manifest file at $manifestfile failed with error" exception = e
287292
nothing
288293
end
289-
infos == nothing && continue
294+
manifest == nothing && continue
290295
new_usage[manifestfile] = [Dict("time" => date)]
291-
for entry in infos
292-
entry isa Pair || continue
293-
name, _stanzas = entry
294-
@assert length(_stanzas) == 1
295-
stanzas = _stanzas[1]
296-
if stanzas isa Dict && haskey(stanzas, "uuid") && haskey(stanzas, "git-tree-sha1")
297-
push!(paths_to_keep,
298-
Operations.find_installed(name, UUID(stanzas["uuid"]), SHA1(stanzas["git-tree-sha1"])))
296+
for (name, infos) in manifest
297+
for info in infos
298+
if haskey(info, "uuid") && haskey(info, "git-tree-sha1")
299+
push!(paths_to_keep,
300+
Operations.find_installed(name, UUID(info["uuid"]), SHA1(info["git-tree-sha1"])))
301+
end
299302
end
300303
end
301304
end
@@ -381,11 +384,11 @@ function _get_deps!(ctx::Context, pkgs::Vector{PackageSpec}, uuids::Vector{UUID}
381384
return
382385
end
383386

387+
384388
build(pkgs...) = build([PackageSpec(pkg) for pkg in pkgs])
385389
build(pkg::Array{Union{}, 1}) = build(PackageSpec[])
386390
build(pkg::PackageSpec) = build([pkg])
387391
build(pkgs::Vector{PackageSpec}) = build(Context(), pkgs)
388-
389392
function build(ctx::Context, pkgs::Vector{PackageSpec}; kwargs...)
390393
Context!(ctx; kwargs...)
391394

@@ -426,7 +429,7 @@ function clone(url::String, name::String = "")
426429
if !isempty(name)
427430
ctx.old_pkg2_clone_name = name
428431
end
429-
develop(ctx, [parse_package(url)])
432+
develop(ctx, [Pkg.REPLMode.parse_package(url; add_or_develop=true)])
430433
end
431434

432435
function dir(pkg::String, paths::String...)
@@ -543,6 +546,13 @@ function instantiate(ctx::Context; manifest::Union{Bool, Nothing}=nothing, kwarg
543546
Operations.build_versions(ctx, union(new_apply, new_git))
544547
end
545548

549+
550+
status(mode=PKGMODE_PROJECT) = status(Context(), mode)
551+
function status(ctx::Context, mode=PKGMODE_PROJECT)
552+
Pkg.Display.status(ctx, mode)
553+
return
554+
end
555+
546556
function activate(path::Union{String,Nothing}=nothing)
547557
Base.ACTIVE_PROJECT[] = Base.load_path_expand(path)
548558
end

stdlib/Pkg/src/Display.jl

+2
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,8 @@ function print_diff(io::IO, ctx::Context, diff::Vector{DiffEntry}, status=false)
143143
pkgid = Base.PkgId(x.uuid, x.name)
144144
package_downloaded = pkgid in keys(Base.loaded_modules) ||
145145
Base.locate_package(pkgid) !== nothing
146+
# Package download detection doesnt work properly when runn running targets
147+
ctx.currently_running_target && (package_downloaded = true)
146148
if x.old != nothing && x.new != nothing
147149
if x.old x.new
148150
verb = ' '

0 commit comments

Comments
 (0)