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 CFDF3138350 for ; Sat, 22 Feb 2020 08:20:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB820E0891; Sat, 22 Feb 2020 08:20:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 BF17EE0891 for ; Sat, 22 Feb 2020 08:20:23 +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 40DB334EDA4 for ; Sat, 22 Feb 2020 08:20:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33CCB116 for ; Sat, 22 Feb 2020 08:20:03 +0000 (UTC) From: "Andrey Grozin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Grozin" Message-ID: <1582359569.bdfafe0e4cbb664b050ba7c2ff9ba2baa3aa3a08.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/pythontex/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-tex/pythontex/pythontex-0.17.ebuild X-VCS-Directories: dev-tex/pythontex/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: bdfafe0e4cbb664b050ba7c2ff9ba2baa3aa3a08 X-VCS-Branch: master Date: Sat, 22 Feb 2020 08:20:03 +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: 363b558a-dc80-41c8-9337-19bd8ef09154 X-Archives-Hash: 20c63fb401efbfb4a6d7d2f31107db22 commit: bdfafe0e4cbb664b050ba7c2ff9ba2baa3aa3a08 Author: Andrey Grozin gentoo org> AuthorDate: Sat Feb 22 08:19:29 2020 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Sat Feb 22 08:19:29 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdfafe0e dev-tex/pythontex: installation fixed Closes: https://bugs.gentoo.org/show_bug.cgi?id=709882 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Andrey Grozin gentoo.org> dev-tex/pythontex/pythontex-0.17.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-tex/pythontex/pythontex-0.17.ebuild b/dev-tex/pythontex/pythontex-0.17.ebuild index 267d1e51096..31f77063256 100644 --- a/dev-tex/pythontex/pythontex-0.17.ebuild +++ b/dev-tex/pythontex/pythontex-0.17.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/gpoore/pythontex/archive/v${PV}.tar.gz -> ${P}.tar.g SLOT="0" LICENSE="LPPL-1.3 BSD" KEYWORDS="~amd64 ~x86" -IUSE="highlighting" +IUSE="doc highlighting" REQUIRED_USE="${PYTHON_REQUIRED_USE}" @@ -33,7 +33,8 @@ src_compile() { } src_install() { - dodoc ${PN}/README "${S}"/*rst ${PN}_quickstart/* + dodoc *rst + use doc && dodoc ${PN}_quickstart/*pdf ${PN}/*pdf cd ${PN} || die @@ -45,5 +46,5 @@ src_install() { } python_foreach_impl installation - latex-package_src_doinstall dtx ins sty + latex-package_src_doinstall sty }