Diff notqmail-1.08-r5 with a notqmail-1.08-r6

/usr/portage/mail-mta/notqmail/notqmail-1.08-r6.ebuild 2023-10-09 14:52:31.588368403 +0300
19 19
	EGIT_REPO_URI="https://github.com/notqmail/notqmail.git"
20 20
	inherit git-r3
21 21
else
22
	inherit verify-sig
22 23
	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
23
	SRC_URI="https://github.com/notqmail/notqmail/releases/download/${P}/${P}.tar.xz"
24
	SRC_URI="
25
		https://github.com/notqmail/notqmail/releases/download/${P}/${P}.tar.xz
26
		verify-sig? (
27
			https://github.com/notqmail/notqmail/releases/download/${P}/${P}.tar.xz.sig
28
		)
29
	"
24 30
fi
25 31

  
26 32
DESCRIPTION="Collaborative open-source successor to qmail"
......
54 60
	)
55 61
"
56 62

  
63
VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/notqmail.asc
64

  
57 65
LICENSE="public-domain"
58 66
SLOT="0"
59
IUSE=" gencertdaily highvolume pop3 qmail-spp ssl test vanilla"
67
IUSE="gencertdaily highvolume pop3 qmail-spp ssl test vanilla"
60 68
REQUIRED_USE="vanilla? ( !ssl !qmail-spp !highvolume !gencertdaily ) gencertdaily? ( ssl )"
61 69
RESTRICT="!test? ( test )"
62 70

  
71
if [[ ${PV} != 9999 ]] ; then
72
	BDEPEND="verify-sig? ( sec-keys/openpgp-keys-notqmail )"
73
fi
63 74
DEPEND="
64 75
	net-dns/libidn2
65 76
	net-mail/queue-repair
......
98 109
	genqmail_src_unpack
99 110

  
100 111
	[[ ${PV} == "9999" ]] && git-r3_src_unpack
101
	[[ ${PV} != "9999" ]] && default
112
	if [[ ${PV} != "9999" ]]; then
113
		default
114
		if use verify-sig; then
115
			verify-sig_verify_detached "${DISTDIR}"/${P}.tar.xz{,.sig}
116
		fi
117
	fi
102 118
}
103 119

  
104 120
PATCHES=(
Thank you!