Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt/
Date: Sun, 10 Dec 2017 16:31:16
Message-Id: 1512923468.61ed2944f8c0f58ea84a9441f02a6f676a945007.grobian@gentoo
1 commit: 61ed2944f8c0f58ea84a9441f02a6f676a945007
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 10 16:30:58 2017 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 10 16:31:08 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61ed2944
7
8 mail-client/mutt: add rdeps for crypt/smime flags to finish #637178
9
10 Package-Manager: Portage-2.3.13, Repoman-2.3.3
11
12 mail-client/mutt/mutt-1.9.1-r3.ebuild | 28 ++++++++++------------------
13 1 file changed, 10 insertions(+), 18 deletions(-)
14
15 diff --git a/mail-client/mutt/mutt-1.9.1-r3.ebuild b/mail-client/mutt/mutt-1.9.1-r3.ebuild
16 index fab20c02df2..1cd2ae74c65 100644
17 --- a/mail-client/mutt/mutt-1.9.1-r3.ebuild
18 +++ b/mail-client/mutt/mutt-1.9.1-r3.ebuild
19 @@ -65,6 +65,10 @@ DEPEND="${CDEPEND}
20 )"
21 RDEPEND="${CDEPEND}
22 selinux? ( sec-policy/selinux-mutt )
23 + smime? ( || ( dev-libs/libressl >=dev-libs/openssl-0.9.6:0 ) )
24 + smime_classic? ( || ( dev-libs/libressl >=dev-libs/openssl-0.9.6:0 ) )
25 + crypt? ( app-crypt/gnupg )
26 + pgp_classic? ( app-crypt/gnupg )
27 "
28
29 src_prepare() {
30 @@ -240,25 +244,13 @@ pkg_postinst() {
31 elog "the Gentoo QuickStart Guide to Mutt E-Mail:"
32 elog " https://wiki.gentoo.org/wiki/Mutt"
33 echo
34 - else
35 - local ver
36 - local preconddate=
37 - for ver in ${REPLACING_VERSIONS} ; do
38 - [[ ${ver} == "1.5"* || ${ver} == "1.6"* ]] && preconddate=true
39 - done
40 - if [[ -n ${preconddate} ]] ; then
41 - echo
42 - elog "The SmartTime functionality has been replaced with"
43 - elog "CondDate feature. To mimic SmartTime, use this CondDate formatter:"
44 - elog "%<[12m?%<[7d?%<[12H?%[%H:%M ]&%[%a-%d]>&%[%d-%b]>&%[%b-%y]>"
45 - echo
46 - fi
47 fi
48 - ewarn "Pleae note that the crypto related USE flags of neomutt have changed."
49 - ewarn "(https://bugs.gentoo.org/637176)"
50 - ewarn "crypt -> pgp_classic"
51 - ewarn "gpg -> gpgme"
52 - ewarn "smime -> smime_classic"
53 + ewarn "Please note that the crypto related USE-flags of mutt have changed."
54 + ewarn "To remove some unclarity, the following USE-flags are renamed:"
55 + ewarn "(see https://bugs.gentoo.org/637176)"
56 + ewarn " crypt -> pgp_classic"
57 + ewarn " gpg -> gpgme"
58 + ewarn " smime -> smime_classic"
59 ewarn "The old USE flags still work but their use is deprecated and will"
60 ewarn "be removed in a future release."
61 }