summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/gnupg/package.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/gnupg/package.py b/var/spack/repos/builtin/packages/gnupg/package.py
index d41f2d2632..c59d4875ec 100644
--- a/var/spack/repos/builtin/packages/gnupg/package.py
+++ b/var/spack/repos/builtin/packages/gnupg/package.py
@@ -3,6 +3,8 @@
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+import re
+
from spack.package import *
from spack.util.environment import is_system_path
@@ -136,6 +138,14 @@ class Gnupg(AutotoolsPackage):
# Getting some linking error.
conflicts("%gcc@10:", when="@:1")
+ executables = ["^gpg$", "^gpg-agent$"]
+
+ @classmethod
+ def determine_version(cls, exe):
+ output = Executable(exe)("--version", output=str, error=str)
+ match = re.search(r"gpg \(GnuPG\) (\S+)", output)
+ return match.group(1) if match else None
+
@run_after("install")
def add_gpg2_symlink(self):
if self.spec.satisfies("@2.0:2"):