From mboxrd@z Thu Jan 1 00:00:00 1970 From: Robert Horn Subject: ELPA vs 9.0.1 release (still issues) Date: Sun, 20 Nov 2016 15:42:47 -0500 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52083) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c8Yww-0004S3-3V for emacs-orgmode@gnu.org; Sun, 20 Nov 2016 15:42:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c8Ywt-0004hd-0V for emacs-orgmode@gnu.org; Sun, 20 Nov 2016 15:42:54 -0500 Received: from mailbackend.panix.com ([166.84.1.89]:60212) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1c8Yws-0004f8-Th for emacs-orgmode@gnu.org; Sun, 20 Nov 2016 15:42:50 -0500 Received: from quad.robs.office (panix3.panix.com [166.84.1.3]) by mailbackend.panix.com (Postfix) with ESMTP id 0DB9213BF6 for ; Sun, 20 Nov 2016 15:42:47 -0500 (EST) 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: emacs-orgmode@gnu.org I'm not enough of an ELPA guru to figure this out. I tried org-mode 9.0.1 using ELPA, found some issues I'll describe, and find that using the direct git version does not have those issues. All of this is with Emacs 24.5.2, GTK+ version 2.24.31. This is a fresh setup, no other packages installed, but my .emacs is from a working setup. My first test of a new version is a babel invocation of R with a large table sent as a variable to R: #+name: glucose_analysis #+begin_src R :file 1.png :results graphics :var data=glucose :width 1200 :height 600 library(ggplot2) ... Test results: 1) The ELPA install from org repository of 20161118 had numerous compile issues. The immediately relevant one is: Compiling file /home/hornrj/.emacs.d/elpa/org-20161118/org-element.el at Sun Nov 20 13:33:22 2016 In org-element--get-node-properties: org-element.el:938:25:Warning: reference to free variable `org-planning-line-re' In org-element--get-time-properties: org-element.el:953:45:Warning: reference to free variable `org-planning-line-re' In org-element--current-element: org-element.el:3850:26:Warning: reference to free variable `org-planning-line-re' org-element.el:3862:21:Warning: reference to free variable `org-clock-line-re' In end of data: org-element.el:6124:1:Warning: the following functions are not known to be defined: org-link-types, org-macro-extract-arguments The invocation of R failed with an error that org-link-types was not known. 2) I deleted all the .elc files in the ELPA directory The result was an incredibly slow invocation of R. It took 6 minutes to parse and prepare the table. (It's only about 2,000 line table.) Then it invoked R, generated the diagram, etc. So it passed the test but was incredibly slow. 3) I removed the ELPA installed directory, cloned the git repository, did a "make compile" which generated no errors, and linked from elpa to the lisp directory. The test ran in a few seconds. So there remains something wrong in the ELPA setup. R Horn rjhorn@alum.mit.edu