mirror of
git://git.gnupg.org/gnupg.git
synced 2024-10-31 20:08:43 +01:00
* distfiles, gnupg.spec.in: Include convert-from-106.
* convert-from-106: Script to automate the 1.0.6->later conversion. It marks all secret keys as ultimately trusted, adds the signature caches, and checks the trustdb.
This commit is contained in:
parent
db9195c10b
commit
8dfe1d4348
@ -1,3 +1,11 @@
|
|||||||
|
2002-12-01 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* distfiles, gnupg.spec.in: Include convert-from-106.
|
||||||
|
|
||||||
|
* convert-from-106: Script to automate the 1.0.6->later
|
||||||
|
conversion. It marks all secret keys as ultimately trusted, adds
|
||||||
|
the signature caches, and checks the trustdb.
|
||||||
|
|
||||||
2002-11-13 David Shaw <dshaw@jabberwocky.com>
|
2002-11-13 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* mk-w32-dist: Don't use iconv for pl.po. From Werner on stable
|
* mk-w32-dist: Don't use iconv for pl.po. From Werner on stable
|
||||||
|
52
scripts/convert-from-106
Executable file
52
scripts/convert-from-106
Executable file
@ -0,0 +1,52 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Copyright (C) 2002 Free Software Foundation, Inc.
|
||||||
|
#
|
||||||
|
# This program 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 2 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but
|
||||||
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
# General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
|
gpg="../g10/gpg --no-greeting --no-secmem-warning";
|
||||||
|
|
||||||
|
echo "This script converts your public keyring and trustdb from GnuPG"
|
||||||
|
echo "1.0.6 or earlier to the 1.0.7 and later format."
|
||||||
|
|
||||||
|
echo "If you have already done this, there is no harm (but no point)"
|
||||||
|
echo "in doing it again."
|
||||||
|
|
||||||
|
echo -n "Continue? (y/N)"
|
||||||
|
|
||||||
|
read answer
|
||||||
|
|
||||||
|
if test "x$answer" != "xy" ; then
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo
|
||||||
|
echo "Marking your keys as ultimately trusted"
|
||||||
|
for key in `$gpg --with-colons --list-secret-keys | grep sec: | cut -d: -f5`
|
||||||
|
do
|
||||||
|
$gpg --trusted-key $key --with-colons --list-keys $key > /dev/null 2>&1
|
||||||
|
echo -n "."
|
||||||
|
done
|
||||||
|
echo
|
||||||
|
|
||||||
|
echo
|
||||||
|
echo "Adding signature caches"
|
||||||
|
$gpg --rebuild-keydb-caches
|
||||||
|
|
||||||
|
echo
|
||||||
|
echo "Checking trustdb"
|
||||||
|
$gpg --check-trustdb
|
||||||
|
|
||||||
|
echo
|
||||||
|
echo "Done!"
|
@ -4,3 +4,4 @@ gnupg.spec.in
|
|||||||
autogen.sh
|
autogen.sh
|
||||||
mk-gpg-texi
|
mk-gpg-texi
|
||||||
mk-w32-dist
|
mk-w32-dist
|
||||||
|
convert-from-106
|
||||||
|
@ -24,13 +24,18 @@ Provides: gpg openpgp
|
|||||||
BuildRoot: /tmp/rpmbuild_%{name}
|
BuildRoot: /tmp/rpmbuild_%{name}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Nov 30 2002 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
- Add convert-from-106 script
|
||||||
|
|
||||||
* Sat Oct 26 2002 David Shaw <dshaw@jabberwocky.com>
|
* Sat Oct 26 2002 David Shaw <dshaw@jabberwocky.com>
|
||||||
- Use new path for keyserver helpers.
|
- Use new path for keyserver helpers.
|
||||||
- /usr/lib is no longer used for cipher/hash plugins.
|
- /usr/lib is no longer used for cipher/hash plugins.
|
||||||
- Include gpgv, gpgsplit, and the new gnupg.7 man page.
|
- Include gpgv, gpgsplit, and the new gnupg.7 man page.
|
||||||
|
|
||||||
* Fri Apr 19 2002 David Shaw <dshaw@jabberwocky.com>
|
* Fri Apr 19 2002 David Shaw <dshaw@jabberwocky.com>
|
||||||
- Removed OPTIONS and pubring.asc - no longer used
|
- Removed OPTIONS and pubring.asc - no longer used
|
||||||
- Added doc/samplekeys.asc
|
- Added doc/samplekeys.asc
|
||||||
|
|
||||||
* Sun Mar 31 2002 David Shaw <dshaw@jabberwocky.com>
|
* Sun Mar 31 2002 David Shaw <dshaw@jabberwocky.com>
|
||||||
- Added the gpgkeys_xxx keyserver helpers.
|
- Added the gpgkeys_xxx keyserver helpers.
|
||||||
- Added a * to catch variations on the basic gpg man page (gpg, gpgv).
|
- Added a * to catch variations on the basic gpg man page (gpg, gpgv).
|
||||||
@ -165,6 +170,7 @@ make install-strip prefix=$RPM_BUILD_ROOT/usr
|
|||||||
%doc %attr (-,root,root) doc/HACKING
|
%doc %attr (-,root,root) doc/HACKING
|
||||||
%doc %attr (-,root,root) doc/OpenPGP
|
%doc %attr (-,root,root) doc/OpenPGP
|
||||||
%doc %attr (-,root,root) doc/samplekeys.asc
|
%doc %attr (-,root,root) doc/samplekeys.asc
|
||||||
|
%doc %attr (0755,root,root) scripts/convert-from-106
|
||||||
|
|
||||||
%attr (-,root,root) /usr/man/man1/gpg*.1*
|
%attr (-,root,root) /usr/man/man1/gpg*.1*
|
||||||
%attr (-,root,root) /usr/man/man7/gnupg.7*
|
%attr (-,root,root) /usr/man/man7/gnupg.7*
|
||||||
|
Loading…
Reference in New Issue
Block a user