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 6F185139694 for ; Tue, 11 Jul 2017 07:56:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 964002741A0; Tue, 11 Jul 2017 07:56:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 765B02741A0 for ; Tue, 11 Jul 2017 07:56:27 +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 8D69C341B21 for ; Tue, 11 Jul 2017 07:56:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 326147490 for ; Tue, 11 Jul 2017 07:56:25 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1499759779.e57a5c17a88e5ed93f126895610725d610c4948b.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/nikola/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/nikola/nikola-7.8.8.ebuild X-VCS-Directories: www-apps/nikola/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: e57a5c17a88e5ed93f126895610725d610c4948b X-VCS-Branch: master Date: Tue, 11 Jul 2017 07:56:25 +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: c23a4d72-5e53-487b-b7f5-b97fe01ce065 X-Archives-Hash: 8fac8b6cc6de648aad8cebf173ea70e1 commit: e57a5c17a88e5ed93f126895610725d610c4948b Author: Patrice Clement gentoo org> AuthorDate: Tue Jul 11 07:45:16 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Tue Jul 11 07:56:19 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e57a5c17 www-apps/nikola: add missing die. Package-Manager: Portage-2.3.6, Repoman-2.3.1 www-apps/nikola/nikola-7.8.8.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/www-apps/nikola/nikola-7.8.8.ebuild b/www-apps/nikola/nikola-7.8.8.ebuild index 43a622c0fae..b5dd7d51926 100644 --- a/www-apps/nikola/nikola-7.8.8.ebuild +++ b/www-apps/nikola/nikola-7.8.8.ebuild @@ -3,6 +3,7 @@ EAPI=6 PYTHON_COMPAT=( python{2_7,3_4} ) # 3.5 and 3.6 wait for dependencies + inherit distutils-r1 MY_PN="Nikola" @@ -47,14 +48,14 @@ RDEPEND="${DEPEND} websocket? ( ~dev-python/ws4py-0.3.4[${PYTHON_USEDEP}] )" # typography? ( >=dev-python/typogrify-2.0.4[${PYTHON_USEDEP}] ) # needs smartypants -S="${WORKDIR}"/${MY_P} +S="${WORKDIR}/${MY_P}" src_install() { distutils-r1_src_install # hackish way to remove docs that ended up in the wrong place - rm -rf "${D}"/usr/share/doc/${PN} + rm -rv "${D}/usr/share/doc/${PN}" || die dodoc AUTHORS.txt CHANGES.txt README.rst docs/*.txt - doman docs/man/${PN}.1.gz + doman "docs/man/${PN}.1.gz" }