emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* batch compiling problem
@ 2015-07-10 15:34 henry atting
  2015-07-17  9:31 ` henry atting
  0 siblings, 1 reply; 2+ messages in thread
From: henry atting @ 2015-07-10 15:34 UTC (permalink / raw)
  To: emacs-orgmode

Hi,

as of recently I cannot convert org files to html on the commandline
(though converting flawlessly works within emacs).

Org-mode version 8.3beta (release_8.3beta-1274-gc76fef 

The error message is:

Symbol's value as variable is void: cl-struct-cl-structure-object-tags
Makefile:10: recipe for target 'sheet' failed
make: *** [sheet] Error 255

The according makefile recipe is:

sheet: $(HOME)/misc/horg/ledger-queries.org $(HOME)/.org_batch_publish
	touch $(HOME)/misc/horg/ledger-queries.org
	emacs --batch -Q -l $(HOME)/.org_batch_publish --eval '(org-publish "org")'

And the batch file:

--8<---------------cut here---------------start------------->8---
  ;; -*- mode: emacs-lisp  -*-


(let* ((my-lisp-dir "~/dummy_layer/rechner/emacs+/")
       (default-directory my-lisp-dir)
       (orig-load-path load-path))
  (setq load-path (cons my-lisp-dir nil))
  (normal-top-level-add-subdirs-to-load-path)
  (nconc load-path orig-load-path))

(require 'org)
;;____________________________________________________________________setup


 (org-babel-do-load-languages 
	'org-babel-load-languages
				       '((emacs-lisp . t)
                                        (dot . t)
    					(ledger . t)
 					(shell . t)
                                        (gnuplot . t)
                                        (latex . t)))
                          

;; I don't want to be prompted on every code block evaluation
(setq org-confirm-babel-evaluate nil)

 (setq 
 org-export-allow-BIND t
 org-export-creator-info nil
 org-html-creator-string ""
 org-html-date-format-string "%d/%m/%Y %R"
 org-html-postamble nil)


 (setq org-publish-project-alist
           '(("org"
              :base-directory "~/misc/horg/"
              :publishing-directory "~/misc/public"
              :section-numbers nil
;              :table-of-contents t
;              :html-preamble nil
	      :publishing-function org-html-publish-to-html
              :style "<link rel=\"stylesheet\" href=\"../.style.css\" type=\"text/css\"/>")
		("org-static"
		 :base-directory "~/misc/horg/"
                 :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf"
                 :publishing-directory "~/misc/public/"
                 :recursive t
                 :publishing-function org-publish-attachment
 )
))



;(org-src-fontify-natively t)


--8<---------------cut here---------------end--------------->8---



henry

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: batch compiling problem
  2015-07-10 15:34 batch compiling problem henry atting
@ 2015-07-17  9:31 ` henry atting
  0 siblings, 0 replies; 2+ messages in thread
From: henry atting @ 2015-07-17  9:31 UTC (permalink / raw)
  To: emacs-orgmode

Apparently fixed in Org-mode version 8.3beta (release_8.3beta-1288-ga98553)

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-07-17  9:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-10 15:34 batch compiling problem henry atting
2015-07-17  9:31 ` henry atting

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).