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 8BBBF1581F3 for ; Tue, 26 Nov 2024 10:45:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1477E0819; Tue, 26 Nov 2024 10:45:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 BD39CE0819 for ; Tue, 26 Nov 2024 10:45:25 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F04D2342F97 for ; Tue, 26 Nov 2024 10:45:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8ED151EC5 for ; Tue, 26 Nov 2024 10:45:23 +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: <1732617921.dbf5c7b665591e303b59761a467c5f154e2b374a.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: dbf5c7b665591e303b59761a467c5f154e2b374a X-VCS-Branch: main Date: Tue, 26 Nov 2024 10:45:23 +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: 1fe8082c-0f32-46fd-aae9-ffde52805855 X-Archives-Hash: 6f24f5ef91856f6be78720d626af5d8a commit: dbf5c7b665591e303b59761a467c5f154e2b374a Author: Florian Schmaus gentoo org> AuthorDate: Tue Nov 26 10:43:56 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Tue Nov 26 10:45:21 2024 +0000 URL: https://gitweb.gentoo.org/proj/tex-overlay.git/commit/?id=dbf5c7b6 dev-tex/latex2pydata: fix dodoc Signed-off-by: Florian Schmaus gentoo.org> dev-tex/latex2pydata/latex2pydata-0.4.0.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-tex/latex2pydata/latex2pydata-0.4.0.ebuild b/dev-tex/latex2pydata/latex2pydata-0.4.0.ebuild index b754ce5..07e75cb 100644 --- a/dev-tex/latex2pydata/latex2pydata-0.4.0.ebuild +++ b/dev-tex/latex2pydata/latex2pydata-0.4.0.ebuild @@ -51,9 +51,12 @@ src_install() { dodoc CHANGELOG.md README.md popd &> /dev/null || die - pushd latex/latex2pydata &> /dev/null || die - latex-package_src_install + pushd latex &> /dev/null || die docinto latex dodoc CHANGELOG.md README.md popd &> /dev/null || die + + pushd latex/latex2pydata &> /dev/null || die + latex-package_src_install + popd &> /dev/null || die }