From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 90D3D138334 for ; Tue, 2 Apr 2019 05:51:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98BF7E0BEA; Tue, 2 Apr 2019 05:51:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 70FE8E0BEA for ; Tue, 2 Apr 2019 05:51:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 140DA335C60 for ; Tue, 2 Apr 2019 05:50:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 846E5545 for ; Tue, 2 Apr 2019 05:50:56 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1554184249.1ded2ac69bd0fcf0edca8a4ee073e6a41dc9bbe4.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/notmuch/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/notmuch/notmuch-0.28.3.ebuild X-VCS-Directories: net-mail/notmuch/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 1ded2ac69bd0fcf0edca8a4ee073e6a41dc9bbe4 X-VCS-Branch: master Date: Tue, 2 Apr 2019 05:50:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ae74ace5-cce1-4e7c-a0ea-5bc0c95b2e5d X-Archives-Hash: 1ce2db8987b978e5ddc587f6b5d4188f commit: 1ded2ac69bd0fcf0edca8a4ee073e6a41dc9bbe4 Author: Robin H. Johnson gentoo org> AuthorDate: Tue Apr 2 05:48:56 2019 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Tue Apr 2 05:50:49 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ded2ac6 net-mail/notmuch: manpages need USE=doc & mock Manpages are not built without USE=doc, which needs unittest.mock. Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Robin H. Johnson gentoo.org> net-mail/notmuch/notmuch-0.28.3.ebuild | 33 ++++++++++++++++++++++++--------- 1 file changed, 24 insertions(+), 9 deletions(-) diff --git a/net-mail/notmuch/notmuch-0.28.3.ebuild b/net-mail/notmuch/notmuch-0.28.3.ebuild index 445fa176ab4..9a03251ba48 100644 --- a/net-mail/notmuch/notmuch-0.28.3.ebuild +++ b/net-mail/notmuch/notmuch-0.28.3.ebuild @@ -41,19 +41,32 @@ CDEPEND=" " DEPEND="${CDEPEND} virtual/pkgconfig - doc? ( app-doc/doxygen ) - test? ( app-misc/dtach || ( >=app-editors/emacs-23[libxml2] - >=app-editors/emacs-vcs-23[libxml2] ) sys-devel/gdb - crypt? ( app-crypt/gnupg dev-libs/openssl ) ) + doc? ( + app-doc/doxygen + dev-python/mock[${PYTHON_USEDEP}] + ) + test? ( + app-misc/dtach + || ( >=app-editors/emacs-23[libxml2] >=app-editors/emacs-vcs-23[libxml2] ) + sys-devel/gdb + crypt? ( app-crypt/gnupg dev-libs/openssl ) + ) valgrind? ( dev-util/valgrind ) " RDEPEND="${CDEPEND} crypt? ( app-crypt/gnupg ) nmbug? ( dev-vcs/git ) - mutt? ( dev-perl/File-Which dev-perl/Mail-Box dev-perl/MailTools - dev-perl/String-ShellQuote dev-perl/Term-ReadLine-Gnu - virtual/perl-Digest-SHA virtual/perl-File-Path virtual/perl-Getopt-Long - virtual/perl-Pod-Parser ) + mutt? ( + dev-perl/File-Which + dev-perl/Mail-Box + dev-perl/MailTools + dev-perl/String-ShellQuote + dev-perl/Term-ReadLine-Gnu + virtual/perl-Digest-SHA + virtual/perl-File-Path + virtual/perl-Getopt-Long + virtual/perl-Pod-Parser + ) " DOCS=( AUTHORS NEWS README ) @@ -169,7 +182,9 @@ src_test() { src_install() { default - doman doc/_build/man/man?/*.? + if use doc; then + doman doc/_build/man/man?/*.? + fi if use emacs; then elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die