@@ -17,26 +17,33 @@ preview_info() = printstyled("───── Preview mode ─────\n"; c
17
17
18
18
include (" generate.jl" )
19
19
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
21
26
22
27
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... )
24
29
add_or_develop (pkgs:: Vector{PackageSpec} ; kwargs... ) = add_or_develop (Context (), pkgs; kwargs... )
25
30
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... )
27
32
Context! (ctx; kwargs... )
28
33
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
+
29
39
# if julia is passed as a package the solver gets tricked;
30
40
# this catches the error early on
31
41
any (pkg-> (pkg. name == " julia" ), pkgs) &&
32
42
cmderror (" Trying to $mode julia as a package" )
33
43
34
44
ctx. preview && preview_info ()
35
- if ! UPDATED_REGISTRY_THIS_SESSION[]
36
- update_registry (ctx)
37
- end
38
45
if mode == :develop
39
- new_git = handle_repos_develop! (ctx, pkgs)
46
+ new_git = handle_repos_develop! (ctx, pkgs, something (devdir, Pkg . devdir ()) )
40
47
else
41
48
new_git = handle_repos_add! (ctx, pkgs; upgrade_or_add= true )
42
49
end
55
62
56
63
add (args... ; kwargs... ) = add_or_develop (args... ; mode = :add , kwargs... )
57
64
develop (args... ; kwargs... ) = add_or_develop (args... ; mode = :develop , kwargs... )
58
- @deprecate checkout develop
59
-
60
65
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... )
64
69
65
70
function rm (ctx:: Context , pkgs:: Vector{PackageSpec} ; kwargs... )
66
71
Context! (ctx; kwargs... )
@@ -96,7 +101,7 @@ function update_registry(ctx)
96
101
try
97
102
GitTools. fetch (repo; refspecs= [" +refs/heads/$branch :refs/remotes/origin/$branch " ])
98
103
catch e
99
- e isa LibGit2 . GitError || rethrow (e)
104
+ e isa CommandError || rethrow (e)
100
105
push! (errors, (reg, " failed to fetch from repo" ))
101
106
return
102
107
end
@@ -280,22 +285,20 @@ function gc(ctx::Context=Context(); kwargs...)
280
285
for (manifestfile, date) in manifest_date
281
286
! isfile (manifestfile) && continue
282
287
println (" `$manifestfile `" )
283
- infos = try
288
+ manifest = try
284
289
read_manifest (manifestfile)
285
290
catch e
286
291
@warn " Reading manifest file at $manifestfile failed with error" exception = e
287
292
nothing
288
293
end
289
- infos == nothing && continue
294
+ manifest == nothing && continue
290
295
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
299
302
end
300
303
end
301
304
end
@@ -381,11 +384,11 @@ function _get_deps!(ctx::Context, pkgs::Vector{PackageSpec}, uuids::Vector{UUID}
381
384
return
382
385
end
383
386
387
+
384
388
build (pkgs... ) = build ([PackageSpec (pkg) for pkg in pkgs])
385
389
build (pkg:: Array{Union{}, 1} ) = build (PackageSpec[])
386
390
build (pkg:: PackageSpec ) = build ([pkg])
387
391
build (pkgs:: Vector{PackageSpec} ) = build (Context (), pkgs)
388
-
389
392
function build (ctx:: Context , pkgs:: Vector{PackageSpec} ; kwargs... )
390
393
Context! (ctx; kwargs... )
391
394
@@ -426,7 +429,7 @@ function clone(url::String, name::String = "")
426
429
if ! isempty (name)
427
430
ctx. old_pkg2_clone_name = name
428
431
end
429
- develop (ctx, [parse_package (url)])
432
+ develop (ctx, [Pkg . REPLMode . parse_package (url; add_or_develop = true )])
430
433
end
431
434
432
435
function dir (pkg:: String , paths:: String... )
@@ -543,6 +546,13 @@ function instantiate(ctx::Context; manifest::Union{Bool, Nothing}=nothing, kwarg
543
546
Operations. build_versions (ctx, union (new_apply, new_git))
544
547
end
545
548
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
+
546
556
function activate (path:: Union{String,Nothing} = nothing )
547
557
Base. ACTIVE_PROJECT[] = Base. load_path_expand (path)
548
558
end
0 commit comments