Skip to content

Commit

Permalink
package-build--generate-info-files: Support export_file_name
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsius committed Sep 15, 2024
1 parent 8ad877c commit 6ec1436
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions package-build.el
Original file line number Diff line number Diff line change
Expand Up @@ -1046,18 +1046,23 @@ file. The source and destination file paths are expanded in
`default-directory' and TARGET-DIR respectively.
If an org file appears in FILES and in RCP's `org-exports' slot
as well, then export it to texinfo and then the result to info."
as well, then export it to texinfo and then the result to info.
If the org file sets `export_file_name', then the corresponding
entry in `org-exports' must have the form (ORG TEXI), where TEXI
is the same as the value of `export_file_name'."
(pcase-dolist (`(,src . ,_) files)
(let* ((ext (file-name-extension src))
(orgs (oref rcp org-exports))
(org (and (equal ext "org")
package-build-run-recipe-org-exports
(member src (oref rcp org-exports))
(or (member src orgs) (assoc src orgs))
src))
(texi (and (member ext '("texi" "texinfo")) src))
(info (and (equal ext "info") src)))
(when org
(let ((default-directory (file-name-directory (expand-file-name org)))
(next (file-name-with-extension org ".texi"))
(next (or (cadr (assoc src orgs))
(file-name-with-extension org ".texi")))
(org (file-name-nondirectory org)))
(delete-file (expand-file-name org target-dir))
(package-build--message "Generating %s" (file-name-nondirectory next))
Expand Down

0 comments on commit 6ec1436

Please sign in to comment.