remove dub option dependencyCheck and replace with skipRegistry

This commit is contained in:
Basile Burg 2021-11-08 09:42:04 +01:00
parent 250b6960d8
commit 99557fed58
3 changed files with 17 additions and 8 deletions

View File

@ -1,5 +1,6 @@
# v3.9.16-dev
- DUB projects, options, removed _dependencyCheck_ and replaced with a new _skipRegistry_ option that maps 1:1 to the official documentation.
- editor, option _textCompletionMinLength_ min length off-by-one.
# v3.9.15

View File

@ -12,7 +12,7 @@ This category exposes the DUB options that are passed to the build tool each tim
- **autoSelectTestConfig**: When not checked the configuration used to test with DUB must be selected before executing the action _Test project_.
- **combined**: If checked, tries to build the whole project in a single compiler run.
- **compiler**: Selects [which compiler](options_compilers_paths.html) is used by DUB when a project is compiled. Note that the DUB scripts don't use this setting, instead the same preference set for the [runnable modules](features_runnables#options) is used.
- **dependenciesCheck**: Defines how DUB checks the project dependencies, typically used to avoid too much network operations.
- **skipRegistry**: Defines the sources that are not checked when a dependency is missing. Use _all_ for full offline.
- **forceRebuild**: Forces a full recompilation, even if DUB determines that this would not be necessary.
- **linkMode**: Specifies the way the compiler and linker are invoked.
- **other**: Displays a list that can be filled with more switches. One item per line.

View File

@ -16,6 +16,8 @@ type
TDubDependencyCheck = (dcStandard, dcOffline, dcNo);
TDubSkipRegistry = (none, standard, configured, all);
TDubVerbosity = (default, quiet, verbose, veryVerbose, onlyWarnAndError, onlyError);
TDubArchOverride = (auto, x86, x86_64);
@ -62,6 +64,7 @@ type
fLinkMode: TDubLinkMode;
fCombined: boolean;
fDepCheck: TDubDependencyCheck;
fSkipRegistry: TDubSkipRegistry;
fVerbosity: TDubVerbosity;
fArchOverride: TDubArchOverride;
fOther: string;
@ -80,11 +83,12 @@ type
property linkMode: TDubLinkMode read fLinkMode write setLinkMode;
property combined: boolean read fCombined write fCombined;
property other: string read fOther write fOther;
property dependenciesCheck: TDubDependencyCheck read fDepCheck write fDepCheck;
property dependenciesCheck: TDubDependencyCheck write fDepCheck; deprecated;
property verbosity: TDubVerbosity read fVerbosity write fVerbosity default default;
property archOverride: TDubArchOverride read fArchOverride write fArchOverride default auto;
property autoFetch: boolean read fAutoFetch write fAutoFetch default false;
property autoSelectTestConfig: boolean read fAutoSelectTestConfig write fAutoSelectTestConfig default true;
property skipRegistry: TDubSkipRegistry read fSkipRegistry write fSkipRegistry default none;
public
procedure assign(source: TPersistent); override;
procedure getOpts(options: TStrings);
@ -572,19 +576,19 @@ begin
combined:=opts.combined;
linkMode:=opts.linkMode;
other:=opts.other;
dependenciesCheck:=opts.dependenciesCheck;
compiler:=opts.compiler;
verbosity:=opts.verbosity;
archOverride:=opts.archOverride;
autoFetch:=opts.autoFetch;
fAutoSelectTestConfig:=opts.fAutoSelectTestConfig;
skipRegistry:=opts.skipRegistry;
end
else inherited;
end;
procedure TDubBuildOptionsBase.getOpts(options: TStrings);
const
vb: array[TDubVerbosity] of string = (
vb: array [TDubVerbosity] of string = (
'', //auto,
'--vquiet', //quiet,
'-v', //verbose,
@ -596,6 +600,12 @@ const
'--arch=x86',
'--arch=x86_64'
);
sr: array [TDubSkipRegistry] of string = (
'--skip-registry=none',
'--skip-registry=standard',
'--skip-registry=configured',
'--skip-registry=all'
);
begin
if parallel then
options.Add('--parallel');
@ -607,10 +617,8 @@ begin
dlmAllAtOnce: options.Add('--build-mode=allAtOnce');
dlmSingleFile: options.Add('--build-mode=singleFile');
end;
case dependenciesCheck of
dcNo: options.Add('--skip-registry=all');
dcOffline: options.Add('--skip-registry=standard');
end;
if fSkipRegistry <> TDubSkipRegistry.none then
options.Add(sr[fSkipRegistry]);
if fVerbosity <> TDubVerbosity.default then
options.Add(vb[fVerbosity]);
if fArchOverride <> TDubArchOverride.auto then