Gentoo Archives: gentoo-commits

From: "Amadeusz Piotr Żołnowski" <aidecoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/notmuch/
Date: Fri, 03 Jun 2016 21:33:06
Message-Id: 1464989426.2ba58f85d7005cbcd997f1a3be246cf4009c261c.aidecoe@gentoo
1 commit: 2ba58f85d7005cbcd997f1a3be246cf4009c261c
2 Author: Amadeusz Żołnowski <aidecoe <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 3 21:27:47 2016 +0000
4 Commit: Amadeusz Piotr Żołnowski <aidecoe <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 3 21:30:26 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ba58f85
7
8 net-mail/notmuch: Don't block app-crypt/gnupg and dev-libs/gmime[smime]
9
10 Test fails if GnuPG is installed and GMime is compiled without S/MIME.
11 This could occur when 'crypt' flag is disabled but GnuPG is installed
12 anyway. Although test requires 'crypt', therefore this doesn't occur and
13 blocking anything when particular feature is disabled is not needed.
14
15 Package-Manager: portage-2.3.0_rc1
16
17 net-mail/notmuch/notmuch-0.22-r1.ebuild | 7 ++-----
18 1 file changed, 2 insertions(+), 5 deletions(-)
19
20 diff --git a/net-mail/notmuch/notmuch-0.22-r1.ebuild b/net-mail/notmuch/notmuch-0.22-r1.ebuild
21 index 9357a32..41765a4 100644
22 --- a/net-mail/notmuch/notmuch-0.22-r1.ebuild
23 +++ b/net-mail/notmuch/notmuch-0.22-r1.ebuild
24 @@ -35,7 +35,6 @@ CDEPEND="
25 >=sys-libs/zlib-1.2.5.2
26 sys-libs/talloc
27 crypt? ( >=dev-libs/gmime-2.6.20-r2:2.6[smime] )
28 - !crypt? ( >=dev-libs/gmime-2.6.20-r2:2.6[-smime] )
29 debug? ( dev-util/valgrind )
30 emacs? ( >=virtual/emacs-23 )
31 python? ( ${PYTHON_DEPS} )
32 @@ -45,17 +44,15 @@ DEPEND="${CDEPEND}
33 doc? ( app-doc/doxygen )
34 test? ( app-misc/dtach || ( >=app-editors/emacs-23[libxml2]
35 >=app-editors/emacs-vcs-23[libxml2] ) sys-devel/gdb
36 - crypt? ( dev-libs/openssl ) )
37 + crypt? ( app-crypt/gnupg dev-libs/openssl ) )
38 "
39 RDEPEND="${CDEPEND}
40 crypt? ( app-crypt/gnupg )
41 - !crypt? ( !app-crypt/gnupg )
42 nmbug? ( dev-vcs/git )
43 mutt? ( dev-perl/File-Which dev-perl/Mail-Box dev-perl/MailTools
44 dev-perl/String-ShellQuote dev-perl/Term-ReadLine-Gnu
45 virtual/perl-Digest-SHA virtual/perl-File-Path virtual/perl-Getopt-Long
46 - virtual/perl-Pod-Parser
47 - )
48 + virtual/perl-Pod-Parser )
49 "
50
51 DOCS=( AUTHORS NEWS README )