From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kyle Meyer Subject: Re: Bug: Orgguide missing in Org-9.3 package [9.3 (9.3-elpa @ /home/David/.emacs.d/elpa/org-9.3/)] Date: Fri, 13 Dec 2019 03:23:32 +0000 Message-ID: <871rt8rjrf.fsf@kyleam.com> References: <87tv65rkdw.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:56852) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ifbYI-0007xf-E5 for emacs-orgmode@gnu.org; Thu, 12 Dec 2019 22:23:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ifbYG-0007It-81 for emacs-orgmode@gnu.org; Thu, 12 Dec 2019 22:23:37 -0500 Received: from pb-smtp2.pobox.com ([64.147.108.71]:53203) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ifbYG-0007F7-1A for emacs-orgmode@gnu.org; Thu, 12 Dec 2019 22:23:36 -0500 In-Reply-To: <87tv65rkdw.fsf@nicolasgoaziou.fr> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Nicolas Goaziou , David Masterson Cc: "emacs-orgmode@gnu.org" Nicolas Goaziou writes: > David Masterson writes: > >> Subject says it all -- I didn't have orgguide in the installation of the >> org-9.3 package, so I pulled the latest git master and copied it from >> there. I guess the build process needs a fix. > > AFAICT, the build process properly generates the texinfo file for the > Org guide. It may be an issue related to how Org was merged with Emacs. > > I'm Cc'ing Kyle, as I think he has write access to Emacs repository, and > can fix it. Sorry, I don't have write access. But this issue seems to be about the Org ELPA tarball, so I don't understand how it'd be related to the recent Org sync with the Emacs repo. Checking the tarball at as well as some recent ones at , I didn't spot orgguide in any of them. And when I run `make elpa' from the Org repo, the tarball indeed seems to be missing the orgguide info file. Assuming there's not a good reason that orgguide is omitted, I think fixing this is just a matter of adding orgguide to server.mk's ORGELPA variable. -- >8 -- Subject: [PATCH] server.mk: Add orgguide to ELPA package * mk/server.mk (ORGELPA): Include orgguide. Reported-by: David Masterson --- mk/server.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/server.mk b/mk/server.mk index 94818bb84..2c5294507 100644 --- a/mk/server.mk +++ b/mk/server.mk @@ -38,7 +38,7 @@ ORGFULL = README COPYING lisp/ \ etc/ contrib/ doc/ testing/ ORGFULL := $(ORGFULL:%/=%/*) ORGELPA = README_ELPA COPYING etc/ORG-NEWS lisp/ \ - doc/dir doc/org doc/orgcard.pdf \ + doc/dir doc/org doc/orgguide doc/orgcard.pdf \ etc/styles/ org-pkg.el ORGELPA := $(ORGELPA:%/=%/*) ORGELPAPLUS := $(ORGELPA:org-pkg%=org-plus-contrib-pkg%) -- 2.24.0