forked from Lainports/freebsd-ports
- Makefile
adopt the port;
pet portlint;
remove comment about 'applying patches' on the post-patch stage;
unmute post-patch.
- files/*
patch src/share/mh/revoke_keys, to use gpg2;
move patch-gpg2 (410 lines), and split it to have separated patches;
regen all patches using makepatch.
Approved by: rene (mentor)
Differential Revision: https://reviews.freebsd.org/D18871
20 lines
670 B
Text
20 lines
670 B
Text
--- src/monkeysphere-authentication.orig 2018-10-16 16:24:55 UTC
|
|
+++ src/monkeysphere-authentication
|
|
@@ -73,7 +73,7 @@ gpg_core() {
|
|
GNUPGHOME="$GNUPGHOME_CORE"
|
|
export GNUPGHOME
|
|
|
|
- gpg --fixed-list-mode --no-greeting --quiet --no-tty "$@"
|
|
+ gpg2 --fixed-list-mode --no-greeting --quiet --no-tty "$@"
|
|
}
|
|
|
|
# function to interact with the gpg sphere keyring
|
|
@@ -81,7 +81,7 @@ gpg_sphere() {
|
|
GNUPGHOME="$GNUPGHOME_SPHERE"
|
|
export GNUPGHOME
|
|
|
|
- su_monkeysphere_user gpg --fixed-list-mode --no-greeting --quiet --no-tty "$@"
|
|
+ su_monkeysphere_user gpg2 --fixed-list-mode --no-greeting --quiet --no-tty "$@"
|
|
}
|
|
|
|
check_openpgp2ssh_sanity() {
|