From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Okamsn Newsgroups: gmane.emacs.devel Subject: How to install documentation in sub-directory with Package VC? Date: Tue, 14 Mar 2023 03:13:11 +0000 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="1573"; mail-complaints-to="usenet@ciao.gmane.io" To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Tue Mar 14 04:25:39 2023 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pbvIA-00007G-RE for ged-emacs-devel@m.gmane-mx.org; Tue, 14 Mar 2023 04:25:38 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pbvHI-0004q7-SH; Mon, 13 Mar 2023 23:24:44 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pbv6b-0003iM-9b for emacs-devel@gnu.org; Mon, 13 Mar 2023 23:13:41 -0400 Original-Received: from mail-4316.protonmail.ch ([185.70.43.16]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pbv6Y-0001KQ-Uf for emacs-devel@gnu.org; Mon, 13 Mar 2023 23:13:40 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1678763609; x=1679022809; bh=cLgnGItVS9rRcAejZeeH3JsfPX6PTsXC7PVDb/UQtAE=; h=Date:To:From:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=Qm7ofRMgCuvQTliryzJADFPyD63L0XkFVW4XUKsxJcywP4LTrR6eggGE9+rS3dvT3 gU8w2mTCW7ZVvg7Oi8mnL00uURkc3yFCk9jtXj26TN+2tBtFZJRNh88s4ssErlAuu2 RJM3HTYG3VuaKD0ESFlgKWeppHPC7D0riD3rPfkfR9qo7pxA7JvzzhR2LWshkQTEe+ sZlSu8plQrl2GUOsqoWsvPdEgP9LZAox+m0M3P8cCoG1/0Ka09wC0oL9NfpIKgX8jD NBrBbxI+pOazhSmN8MZk7cBKEw3oDu73NW8dby7c/7Xa7WzqYgLjFvGyCHigrw7+15 caTwubpKXbK8A== Feedback-ID: 25935600:user:proton Received-SPF: pass client-ip=185.70.43.16; envelope-from=okamsn@protonmail.com; helo=mail-4316.protonmail.ch X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Mailman-Approved-At: Mon, 13 Mar 2023 23:24:44 -0400 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:304419 Archived-At: Hello, I am trying to install a package I wrote using Package VC from Github: https://github.com/okamsn/loopy/tree/fix-comp-warnings The lisp files, which are in the root of the project, are installed, but the documentation file "loopy.texi" is in a subfolder "doc": https://github.com/okamsn/loopy/tree/fix-comp-warnings/doc The presence of this file does not trigger the call to makeinfo. The function `package-vc--unpack-1` seems to look for the keyword ":doc" in the package description or package spec, which I have tried adding to the file "loopy-pkg.el" and to the list passed to `package-vc-install` as `:doc "doc/loopy.texi"`. What is the correct way to make Package VC install the documentation contained in the sub-folder? Thank you.