]> code.delx.au - gnu-emacs/blobdiff - lisp/epg-config.el
Update copyright year to 2014 by running admin/update-copyright.
[gnu-emacs] / lisp / epg-config.el
index 7230cfc0f5c5ca016107ef883e0f06690a653ba0..10b3704144351869a337c7c76ff3dfedf1b35cca 100644 (file)
@@ -1,15 +1,17 @@
 ;;; epg-config.el --- configuration of the EasyPG Library
-;; Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
+
+;; Copyright (C) 2006-2014 Free Software Foundation, Inc.
 
 ;; Author: Daiki Ueno <ueno@unixuser.org>
 ;; Keywords: PGP, GnuPG
+;; Package: epg
 
 ;; This file is part of GNU Emacs.
 
-;; GNU Emacs is free software; you can redistribute it and/or modify
+;; GNU Emacs is free software: you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
 
 ;; GNU Emacs is distributed in the hope that it will be useful,
 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; GNU General Public License for more details.
 
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs; see the file COPYING.  If not, write to the
-;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-;; Boston, MA 02110-1301, USA.
+;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
 
 ;;; Code:
 
-(require 'epg-package-info)
+(defconst epg-package-name "epg"
+  "Name of this package.")
 
-(defgroup epg ()
-  "The EasyPG Library"
-  :group 'emacs)
+(defconst epg-version-number "1.0.0"
+  "Version number of this package.")
 
-(defcustom epg-gpg-program "gpg"
+(defconst epg-bug-report-address "ueno@unixuser.org"
+  "Report bugs to this address.")
+
+(defgroup epg ()
+  "Interface to the GNU Privacy Guard (GnuPG)."
+  :tag "EasyPG"
+  :version "23.1"
+  :group 'data
+  :group 'external)
+
+(defcustom epg-gpg-program (or (executable-find "gpg")
+                              (executable-find "gpg2")
+                              "gpg")
   "The `gpg' executable."
   :group 'epg
   :type 'string)
@@ -137,5 +149,4 @@ Note that the buffer name starts with a space."
 
 (provide 'epg-config)
 
-;; arch-tag: 9aca7cb8-5f63-4bcb-84ee-46fd2db0763f
 ;;; epg-config.el ends here