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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EC849158083 for ; Sun, 15 Sep 2024 08:51:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DFB4DE29A7; Sun, 15 Sep 2024 08:51:21 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CC0AFE29A7 for ; Sun, 15 Sep 2024 08:51:21 +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 0DEAD341B52 for ; Sun, 15 Sep 2024 08:51:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 462E427B3 for ; Sun, 15 Sep 2024 08:51:19 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1726390275.6825370b102642e01b585f36b107cd4cb2dd4d51.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/plz/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/plz/plz-0.9.1.ebuild X-VCS-Directories: app-emacs/plz/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 6825370b102642e01b585f36b107cd4cb2dd4d51 X-VCS-Branch: master Date: Sun, 15 Sep 2024 08:51:19 +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: 7f95d5ae-f93b-4238-a9cd-8d72cd230333 X-Archives-Hash: 3784d22bc2c3203e68dc95cccbc3af03 commit: 6825370b102642e01b585f36b107cd4cb2dd4d51 Author: Maciej Barć gentoo org> AuthorDate: Sun Sep 15 08:48:29 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sun Sep 15 08:51:15 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6825370b app-emacs/plz: fix install - export texinfo Closes: https://bugs.gentoo.org/939680 Signed-off-by: Maciej Barć gentoo.org> app-emacs/plz/plz-0.9.1.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app-emacs/plz/plz-0.9.1.ebuild b/app-emacs/plz/plz-0.9.1.ebuild index 59d90c291da1..ea9edda1493a 100644 --- a/app-emacs/plz/plz-0.9.1.ebuild +++ b/app-emacs/plz/plz-0.9.1.ebuild @@ -30,12 +30,12 @@ RDEPEND=" " DOCS=( README.org ) +ELISP_TEXINFO="${PN}.texi" SITEFILE="50${PN}-gentoo.el" elisp-enable-tests ert tests -l tests/test-plz.el -src_install() { - elisp_src_install - - doinfo "${PN}.info" +src_compile() { + elisp-org-export-to texinfo README.org + elisp_src_compile }