91647
|
1 ;;; epg-package-info.el --- package information about EasyPG
|
|
2 ;; Copyright (C) 2007, 2008 Free Software Foundation, Inc.
|
|
3
|
|
4 ;; Author: Daiki Ueno <ueno@unixuser.org>
|
|
5 ;; Keywords: PGP, GnuPG
|
|
6
|
|
7 ;; This file is part of GNU Emacs.
|
|
8
|
|
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
10 ;; it under the terms of the GNU General Public License as published by
|
|
11 ;; the Free Software Foundation; either version 3, or (at your option)
|
|
12 ;; any later version.
|
|
13
|
|
14 ;; GNU Emacs is distributed in the hope that it will be useful,
|
|
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17 ;; GNU General Public License for more details.
|
|
18
|
|
19 ;; You should have received a copy of the GNU General Public License
|
|
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
21 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
22 ;; Boston, MA 02110-1301, USA.
|
|
23
|
|
24 ;;; Code:
|
|
25
|
|
26 (defconst epg-package-name "epg"
|
|
27 "Name of this package.")
|
|
28
|
|
29 (defconst epg-version-number "1.0.0"
|
|
30 "Version number of this package.")
|
|
31
|
|
32 (defconst epg-bug-report-address "ueno@unixuser.org"
|
|
33 "Report bugs to this address.")
|
|
34
|
|
35 (provide 'epg-package-info)
|
|
36
|
91687
|
37 ;; arch-tag: 3dcbed1c-9733-47ce-bd02-cbe70def6df4
|
91647
|
38 ;;; epg-package-info.el ends here
|