Diff aerc-0.20.1 with a aerc-9999

/usr/portage/mail-client/aerc/aerc-9999.ebuild 2025-11-06 18:18:08.241504368 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
inherit eapi9-ver go-module xdg
6
inherit go-module optfeature xdg
7 7

  
8 8
DESCRIPTION="Email client for your terminal"
9 9
HOMEPAGE="https://aerc-mail.org"
......
24 24
COMMON_DEPEND="notmuch? ( net-mail/notmuch:= )"
25 25
DEPEND="${COMMON_DEPEND}"
26 26
RDEPEND="${COMMON_DEPEND}"
27
BDEPEND=">=app-text/scdoc-1.11.3"
27
BDEPEND="
28
	>=app-text/scdoc-1.11.3
29
	>=dev-lang/go-1.24.3
30
"
28 31

  
29 32
src_unpack() {
30 33
	if [[ ${PV} == *9999 ]]; then
......
53 56
}
54 57

  
55 58
pkg_postinst() {
56
	if [[ -z ${REPLACING_VERSIONS} ]]; then
57
		elog "If you want to allow your users to activate html email"
58
		elog "processing via w3m as shown in the tutorial, make sure you"
59
		elog "emerge net-proxy/dante and www-client/w3m"
60
	elif ver_replacing -lt 0.3.0-r1; then
61
		elog "The dependencies on net-proxy/dante and www-client/w3m"
62
		elog "have been removed since they are optional."
63
		elog "Please emerge them before the next --depclean if you"
64
		elog "need to use them."
65
	fi
66

  
59
	optfeature "html email processing as shown in the tutorial" "net-proxy/dante www-client/w3m"
67 60
	xdg_pkg_postinst
68 61
}
Thank you!