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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9AC651581EC for ; Fri, 22 Nov 2024 17:13:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 68DA4E085B; Fri, 22 Nov 2024 17:13:57 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 52811E085B for ; Fri, 22 Nov 2024 17:13:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 885B7342FB5 for ; Fri, 22 Nov 2024 17:13:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8BCA41DF4 for ; Fri, 22 Nov 2024 17:13:54 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1732295626.40d363e312b2f189035520d682f6439db125e095.flow@gentoo> Subject: [gentoo-commits] proj/tex-overlay:main commit in: dev-tex/latex2pydata/ X-VCS-Repository: proj/tex-overlay X-VCS-Files: dev-tex/latex2pydata/latex2pydata-0.4.0.ebuild X-VCS-Directories: dev-tex/latex2pydata/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 40d363e312b2f189035520d682f6439db125e095 X-VCS-Branch: main Date: Fri, 22 Nov 2024 17:13:54 +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: 49098ff8-153d-4109-95fb-44315d0057f1 X-Archives-Hash: 094999296a97e7ed0e05aa69dab01a89 commit: 40d363e312b2f189035520d682f6439db125e095 Author: Florian Schmaus gentoo org> AuthorDate: Fri Nov 22 17:13:46 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Fri Nov 22 17:13:46 2024 +0000 URL: https://gitweb.gentoo.org/proj/tex-overlay.git/commit/?id=40d363e3 dev-tex/latex2pydata: add dodoc Signed-off-by: Florian Schmaus gentoo.org> dev-tex/latex2pydata/latex2pydata-0.4.0.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-tex/latex2pydata/latex2pydata-0.4.0.ebuild b/dev-tex/latex2pydata/latex2pydata-0.4.0.ebuild index e747653..b754ce5 100644 --- a/dev-tex/latex2pydata/latex2pydata-0.4.0.ebuild +++ b/dev-tex/latex2pydata/latex2pydata-0.4.0.ebuild @@ -30,7 +30,7 @@ PATCHES=( "${DISTDIR}"/${PN}-0.4.0-explicitly-set-build-backend.patch ) -# DEPEND=">=dev-texlive/texlive-latexextra-2024" +BDEPEND=">=dev-texlive/texlive-latexextra-2024" src_compile() { pushd python &> /dev/null || die @@ -43,15 +43,17 @@ src_compile() { } src_install() { + dodoc README.md + pushd python &> /dev/null || die distutils-r1_src_install docinto python - dodoc *.md + dodoc CHANGELOG.md README.md popd &> /dev/null || die pushd latex/latex2pydata &> /dev/null || die latex-package_src_install docinto latex - dodoc *.md + dodoc CHANGELOG.md README.md popd &> /dev/null || die }