Variable: package-gnupghome-dir
package-gnupghome-dir is a customizable variable defined in
package.el.gz.
Value
"/root/.emacs.d/elpa/gnupg"
Documentation
Directory containing GnuPG keyring or nil.
This variable specifies the GnuPG home directory used by package. That directory is passed via the option "--homedir" to GnuPG. If nil, do not use the option "--homedir", but stick with GnuPG's default directory.
This variable was added, or its default value changed, in Emacs 26.1.
Probably introduced at or before Emacs version 26.1.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/package.el.gz
(defcustom package-gnupghome-dir (expand-file-name "gnupg" package-user-dir)
"Directory containing GnuPG keyring or nil.
This variable specifies the GnuPG home directory used by package.
That directory is passed via the option \"--homedir\" to GnuPG.
If nil, do not use the option \"--homedir\", but stick with GnuPG's
default directory."
:type `(choice
(const
:tag "Default Emacs package management GnuPG home directory"
,(expand-file-name "gnupg" package-user-dir))
(const
:tag "Default GnuPG directory (GnuPG option --homedir not used)"
nil)
(directory :tag "A specific GnuPG --homedir"))
:risky t
:version "26.1")