From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 92B971399E6 for ; Fri, 4 Sep 2015 05:46:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D7711431A; Fri, 4 Sep 2015 05:46:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 46E40142D6 for ; Fri, 4 Sep 2015 05:46:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1B545340955 for ; Fri, 4 Sep 2015 05:46:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C0D5191 for ; Fri, 4 Sep 2015 05:46:17 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1441286280.3086d5c8e1ed671d1a56dbd51d317ce0f314a66d.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/nbconvert/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/nbconvert/ChangeLog dev-python/nbconvert/nbconvert-9999.ebuild X-VCS-Directories: dev-python/nbconvert/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 3086d5c8e1ed671d1a56dbd51d317ce0f314a66d X-VCS-Branch: master Date: Fri, 4 Sep 2015 05:46:17 +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-Archives-Salt: 312250e2-386f-4d5f-aae3-1100192462f8 X-Archives-Hash: cdad881c87b6cc4545439c313f0e0c77 commit: 3086d5c8e1ed671d1a56dbd51d317ce0f314a66d Author: Sean Vig gmail com> AuthorDate: Wed Sep 2 19:47:28 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Sep 3 13:18:00 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=3086d5c8 dev-python/nbconvert: Add note about pandoc dev-python/nbconvert/ChangeLog | 3 +++ dev-python/nbconvert/nbconvert-9999.ebuild | 8 ++++++++ 2 files changed, 11 insertions(+) diff --git a/dev-python/nbconvert/ChangeLog b/dev-python/nbconvert/ChangeLog index d34a29b..a3ec671 100644 --- a/dev-python/nbconvert/ChangeLog +++ b/dev-python/nbconvert/ChangeLog @@ -3,6 +3,9 @@ # $Id$ 02 Sep 2015; Sean Vig nbconvert-9999.ebuild: + dev-python/nbconvert: Add note about pandoc + + 02 Sep 2015; Sean Vig nbconvert-9999.ebuild: dev-python/nbconvert: Add doc use flag 27 Aug 2015; Marius Brehler nbconvert-9999.ebuild: diff --git a/dev-python/nbconvert/nbconvert-9999.ebuild b/dev-python/nbconvert/nbconvert-9999.ebuild index b01b8b1..79299b1 100644 --- a/dev-python/nbconvert/nbconvert-9999.ebuild +++ b/dev-python/nbconvert/nbconvert-9999.ebuild @@ -64,3 +64,11 @@ python_install_all() { use doc && HTML_DOCS=( docs/build/html/. ) distutils-r1_python_install_all } + +pkg_postinst() { + if ! has_version app-text/pandoc ; then + einfo "Pandoc is required for converting to formats other than Python," + einfo "HTML, and Markdown. If you need this functionality, install" + einfo "app-text/pandoc." + fi +}