blob: fafc49c0bde3ff94d15c52aea5474686dd86946b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
ver_old="$2"
if [ "$(apk version -t "$ver_old" '1.15.1-r3')" = '<' ]; then
cat >&2 <<-EOF
*
* gpgme, gpgmepp and qgpgme don't install a full GnuPG suite (gnupg package)
* anymore, but only gpg. However, some programs using gpgme needs more GnuPG
* components. If you encounter a problem, install gnupg package and report it
* on https://gitlab.alpinelinux.org/alpine/aports/-/issues/.
*
EOF
fi
exit 0
|