Merge pull request #15982 from ZhongRuoyu/audit-hashicorp-formulae
This commit is contained in:
commit
502434cf44
@ -497,15 +497,28 @@ module Homebrew
|
|||||||
"They must not be upgraded to version 7.11 or newer."
|
"They must not be upgraded to version 7.11 or newer."
|
||||||
end
|
end
|
||||||
|
|
||||||
TERRAFORM_RELICENSED_VERSION = "1.6"
|
# https://www.hashicorp.com/license-faq#products-covered-by-bsl
|
||||||
|
HASHICORP_RELICENSED_FORMULAE_VERSIONS = {
|
||||||
|
"terraform" => "1.6",
|
||||||
|
"packer" => "1.10",
|
||||||
|
"vault" => "1.15",
|
||||||
|
"boundary" => "0.14",
|
||||||
|
"consul" => "1.17",
|
||||||
|
"nomad" => "1.7",
|
||||||
|
"waypoint" => "0.12",
|
||||||
|
"vagrant" => "2.4",
|
||||||
|
"vagrant-compleion" => "2.4",
|
||||||
|
}.freeze
|
||||||
|
|
||||||
def audit_terraform
|
def audit_hashicorp_formulae
|
||||||
return if formula.name != "terraform"
|
return unless HASHICORP_RELICENSED_FORMULAE_VERSIONS.key? formula.name
|
||||||
return unless @core_tap
|
return unless @core_tap
|
||||||
return if formula.version < Version.new(TERRAFORM_RELICENSED_VERSION)
|
|
||||||
|
|
||||||
problem "Terraform was relicensed to a non-open-source license from version 1.6. " \
|
relicensed_version = Version.new(HASHICORP_RELICENSED_FORMULAE_VERSIONS[formula.name])
|
||||||
"It must not be upgraded to version 1.6 or newer."
|
return if formula.version < relicensed_version
|
||||||
|
|
||||||
|
problem "#{formula.name} was relicensed to a non-open-source license from version #{relicensed_version}. " \
|
||||||
|
"It must not be upgraded to version #{relicensed_version} or newer."
|
||||||
end
|
end
|
||||||
|
|
||||||
def audit_keg_only_reason
|
def audit_keg_only_reason
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user