aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/requirements
diff options
context:
space:
mode:
authorilovezfs2017-09-02 07:41:28 -0700
committerGitHub2017-09-02 07:41:28 -0700
commitdce1e91c6f604d088a9ae6b0490e06cc1f53ae9d (patch)
tree93f27cef4c84bf9a5a350674ca8bf3ab17aa939d /Library/Homebrew/requirements
parent2f133725a2bd16608b479e90e919596825b42fda (diff)
parent6d726e1bd6676d97bf41bc800942881cf8c3e78f (diff)
downloadbrew-dce1e91c6f604d088a9ae6b0490e06cc1f53ae9d.tar.bz2
Merge pull request #3098 from DomT4/gnupg
gpg: tweaks
Diffstat (limited to 'Library/Homebrew/requirements')
-rw-r--r--Library/Homebrew/requirements/gpg2_requirement.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/requirements/gpg2_requirement.rb b/Library/Homebrew/requirements/gpg2_requirement.rb
index d570983eb..ebdd71f6e 100644
--- a/Library/Homebrew/requirements/gpg2_requirement.rb
+++ b/Library/Homebrew/requirements/gpg2_requirement.rb
@@ -5,8 +5,8 @@ class GPG2Requirement < Requirement
fatal true
default_formula "gnupg"
- # GPGTools installs GnuPG 2.0.x as a vanilla `gpg` symlink
- # pointing to `gpg2`. Homebrew install 2.1.x as a non-symlink `gpg`.
- # We support both the 2.0.x "stable" and 2.1.x "modern" series here.
+ # GPGTools installs GnuPG 2.0.x as a `gpg` symlink pointing
+ # to `gpg2`. Our `gnupg` installs only a non-symlink `gpg`.
+ # The aim is to retain support for any version above 2.0.
satisfy(build_env: false) { Gpg.gpg || Gpg.gpg2 }
end