#!/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