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
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 021c436..28a84f9 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 @@
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 @@
@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 @@
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"