aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/bazel
diff options
context:
space:
mode:
authorGravatar Klaus Aehlig <aehlig@google.com>2018-07-27 09:22:23 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-07-27 09:23:47 -0700
commita5aafd52369115ad8e479681728ec689ca3162ca (patch)
treeb6f631cfc38ca353984d61f0615248e0241f6626 /src/main/java/com/google/devtools/build/lib/bazel
parent55dc53f441847bbfc9abe2ef65696fc722e7cfec (diff)
Repository Options: fix meta data
The "distdir" option is no longer experimental and therefore should not be marked as such. Also, the "experimental_repository_hash_file" and "experimental_verify_repository_rules" are not really about loggig; but they actually are still experimental. Change-Id: I5c30c7c0871822c077a713819ae47b250a7d8a71 PiperOrigin-RevId: 206326885
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/bazel')
-rw-r--r--src/main/java/com/google/devtools/build/lib/bazel/repository/RepositoryOptions.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/bazel/repository/RepositoryOptions.java b/src/main/java/com/google/devtools/build/lib/bazel/repository/RepositoryOptions.java
index 021c436f9e..28a84f93aa 100644
--- a/src/main/java/com/google/devtools/build/lib/bazel/repository/RepositoryOptions.java
+++ b/src/main/java/com/google/devtools/build/lib/bazel/repository/RepositoryOptions.java
@@ -63,7 +63,6 @@ public class RepositoryOptions extends OptionsBase {
allowMultiple = true,
documentationCategory = OptionDocumentationCategory.BAZEL_CLIENT_OPTIONS,
effectTags = {OptionEffectTag.BAZEL_INTERNAL_CONFIGURATION},
- metadataTags = {OptionMetadataTag.EXPERIMENTAL},
converter = OptionsUtils.PathFragmentConverter.class,
help =
"Additional places to search for archives before accessing the network "
@@ -84,8 +83,9 @@ public class RepositoryOptions extends OptionsBase {
@Option(
name = "experimental_repository_hash_file",
defaultValue = "",
- documentationCategory = OptionDocumentationCategory.LOGGING,
+ documentationCategory = OptionDocumentationCategory.INPUT_STRICTNESS,
effectTags = {OptionEffectTag.AFFECTS_OUTPUTS},
+ metadataTags = {OptionMetadataTag.EXPERIMENTAL},
help =
"If non-empty, specifies a file containing a resolved value, against which"
+ " the repository directory hashes should be verified")
@@ -95,8 +95,9 @@ public class RepositoryOptions extends OptionsBase {
name = "experimental_verify_repository_rules",
allowMultiple = true,
defaultValue = "",
- documentationCategory = OptionDocumentationCategory.LOGGING,
+ documentationCategory = OptionDocumentationCategory.INPUT_STRICTNESS,
effectTags = {OptionEffectTag.AFFECTS_OUTPUTS},
+ metadataTags = {OptionMetadataTag.EXPERIMENTAL},
help =
"If list of repository rules for which the hash of the output directory should be"
+ " verified, provided a file is specified by"