emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* dropping the debian version
@ 2014-08-26 18:40 Sharon Kimble
  2014-08-26 19:08 ` Eric S Fraga
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Sharon Kimble @ 2014-08-26 18:40 UTC (permalink / raw)
  To: org-mode

[-- Attachment #1: Type: text/plain, Size: 1442 bytes --]

This has been probably been asked many times before but auntie google
can't find it if so.

I've just updated my git clone of org-mode to its version
'409913b253de2de1b49f9468a4b77b9292e090c4' from 'ORIG_HEAD' and I've
done
--8<---------------cut here---------------start------------->8---
M-x org-version
--8<---------------cut here---------------end--------------->8---

which now shows

╭────
│Org-mode version 8.2.6 (release_8.2.6-1 @ /usr/local/share/emacs/24.3.93/lisp/org/)
╰────

How do I drop the debian version and stick with the git version please?

I have this as part of my init file.
--8<---------------cut here---------------start------------->8---
;;; -*- emacs-lisp-mode -*- --- init file
;;; mine from 27-11-13. Heavily influenced by http://www.aaronbedra.com/emacs.d/
;; Show errors in this file:
(setq debug-on-error t
debug-on-signal nil
debug-on-quit nil)

(setq load-path (cons "/home/boudiccas/.emacs.d/lisp" load-path))
(add-to-list 'load-path "/home/boudiccas/git/org-mode/lisp" load-path) (require 'org-install)
(add-to-list 'load-path "/home/boudiccas/git/org-mode/contrib/lisp" load-path)
--8<---------------cut here---------------end--------------->8---

Thanks
Sharon.
-- 
A taste of linux = http://www.sharons.org.uk
my git repo = https://bitbucket.org/boudiccas/dots
TGmeds = http://www.tgmeds.org.uk
Debian testing, fluxbox 1.3.5, emacs 24.3.93.1

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

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

* Re: dropping the debian version
  2014-08-26 18:40 dropping the debian version Sharon Kimble
@ 2014-08-26 19:08 ` Eric S Fraga
  2014-08-26 21:59   ` Sharon Kimble
  2014-08-26 19:32 ` Achim Gratz
  2014-08-26 21:19 ` Charles Millar
  2 siblings, 1 reply; 7+ messages in thread
From: Eric S Fraga @ 2014-08-26 19:08 UTC (permalink / raw)
  To: Sharon Kimble; +Cc: org-mode

On Tuesday, 26 Aug 2014 at 19:40, Sharon Kimble wrote:
> This has been probably been asked many times before but auntie google
> can't find it if so.

It has been asked many times. :)

> I've just updated my git clone of org-mode to its version
> '409913b253de2de1b49f9468a4b77b9292e090c4' from 'ORIG_HEAD' and I've
> done
>
> M-x org-version
>
>
> which now shows
>
> ╭────
> │Org-mode version 8.2.6 (release_8.2.6-1 @ /usr/local/share/emacs/24.3.93/lisp/org/)
> ╰────
>
> How do I drop the debian version and stick with the git version please?

I have pretty much what you have:

#+begin_src emacs-lisp
  (add-to-list 'load-path "~/git/org-mode/lisp")
  (add-to-list 'load-path "~/git/org-mode/contrib/lisp/")
  (require 'org)
#+end_src

and this works fine.  These lines come before anything that may
reference org in any way, mind you.

-- 
: Eric S Fraga (0xFFFCF67D), Emacs 24.4.50.1, Org release_8.3beta-246-g77d0da

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

* Re: dropping the debian version
  2014-08-26 18:40 dropping the debian version Sharon Kimble
  2014-08-26 19:08 ` Eric S Fraga
@ 2014-08-26 19:32 ` Achim Gratz
  2014-08-26 22:16   ` Sharon Kimble
  2014-08-26 21:19 ` Charles Millar
  2 siblings, 1 reply; 7+ messages in thread
From: Achim Gratz @ 2014-08-26 19:32 UTC (permalink / raw)
  To: emacs-orgmode

Sharon Kimble writes:
> How do I drop the debian version and stick with the git version please?

make up2

> (setq load-path (cons "/home/boudiccas/.emacs.d/lisp" load-path))

You shouldn't need this unless you really have some stuff in there
that's just for you.  I'd suggest moving those things to site-lisp if
possible (which is already in load-path and therefore doesn't need any
gymnastics).

> (add-to-list 'load-path "/home/boudiccas/git/org-mode/lisp" load-path) (require 'org-install)
> (add-to-list 'load-path "/home/boudiccas/git/org-mode/contrib/lisp" load-path)

Drop this, too.  Do add

(require 'org-loaddefs)

instead since at least the standard Debian Emacs is too old to work
without it.


Regards,
Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

Wavetables for the Waldorf Blofeld:
http://Synth.Stromeko.net/Downloads.html#BlofeldUserWavetables

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

* Re: dropping the debian version
  2014-08-26 18:40 dropping the debian version Sharon Kimble
  2014-08-26 19:08 ` Eric S Fraga
  2014-08-26 19:32 ` Achim Gratz
@ 2014-08-26 21:19 ` Charles Millar
  2 siblings, 0 replies; 7+ messages in thread
From: Charles Millar @ 2014-08-26 21:19 UTC (permalink / raw)
  To: emacs-orgmode

Sharon,

Sharon Kimble wrote:
> This has been probably been asked many times before but auntie google
> can't find it if so.
>
> I've just updated my git clone of org-mode to its version
> '409913b253de2de1b49f9468a4b77b9292e090c4' from 'ORIG_HEAD' and I've
> done
> --8<---------------cut here---------------start------------->8---
> M-x org-version
> --8<---------------cut here---------------end--------------->8---
>
> which now shows
>
> ╭────
> │Org-mode version 8.2.6 (release_8.2.6-1 @ /usr/local/share/emacs/24.3.93/lisp/org/)
> ╰────
>
> How do I drop the debian version and stick with the git version please?
>
> I have this as part of my init file.
> --8<---------------cut here---------------start------------->8---
> ;;; -*- emacs-lisp-mode -*- --- init file
> ;;; mine from 27-11-13. Heavily influenced by http://www.aaronbedra.com/emacs.d/
> ;; Show errors in this file:
> (setq debug-on-error t
> debug-on-signal nil
> debug-on-quit nil)
>
> (setq load-path (cons "/home/boudiccas/.emacs.d/lisp" load-path))
> (add-to-list 'load-path "/home/boudiccas/git/org-mode/lisp" load-path) (require 'org-install)
> (add-to-list 'load-path "/home/boudiccas/git/org-mode/contrib/lisp" load-path)
> --8<---------------cut here---------------end--------------->8---
>
> Thanks
> Sharon.
Pretty much what Eric and Achim have already siad.

I run make update2 each morning; the most recent org mode is in my 
/home/directory/.elisp

and my .emacs.d/init.el loads it via

	(add-to-list 'load-path "/home/directory/.elisp/org-mode/lisp")
   	(add-to-list 'load-path "/home/directory/.elisp/org-mode/contrib/lisp/")

Essentially I copied it from section 1.2 of the manual.

Charlie Millar

---
This email is free from viruses and malware because avast! Antivirus protection is active.
http://www.avast.com

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

* Re: dropping the debian version
  2014-08-26 19:08 ` Eric S Fraga
@ 2014-08-26 21:59   ` Sharon Kimble
  0 siblings, 0 replies; 7+ messages in thread
From: Sharon Kimble @ 2014-08-26 21:59 UTC (permalink / raw)
  To: org-mode

[-- Attachment #1: Type: text/plain, Size: 1488 bytes --]

Eric S Fraga <e.fraga@ucl.ac.uk> writes:

> On Tuesday, 26 Aug 2014 at 19:40, Sharon Kimble wrote:
>> This has been probably been asked many times before but auntie google
>> can't find it if so.
>
> It has been asked many times. :)
>
>> I've just updated my git clone of org-mode to its version
>> '409913b253de2de1b49f9468a4b77b9292e090c4' from 'ORIG_HEAD' and I've
>> done
>>
>> M-x org-version
>>
>>
>> which now shows
>>
>> ╭────
>> │Org-mode version 8.2.6 (release_8.2.6-1 @ /usr/local/share/emacs/24.3.93/lisp/org/)
>> ╰────
>>
>> How do I drop the debian version and stick with the git version please?
>
> I have pretty much what you have:
>
> #+begin_src emacs-lisp
>   (add-to-list 'load-path "~/git/org-mode/lisp")
>   (add-to-list 'load-path "~/git/org-mode/contrib/lisp/")
>   (require 'org)
> #+end_src
>
> and this works fine.  These lines come before anything that may
> reference org in any way, mind you.

Thanks for this Eric.

I've now set up my init with your little stanza in, evaluated it,
restarted org-mode and did version on it. And its showing -

╭────
│Org-mode version 8.2.7c (release_8.2.7c-53-g409913 @ /home/boudiccas/git/org-mode/lisp/)
╰────

Hooray! Result! Thanks :)

Sharon.
-- 
A taste of linux = http://www.sharons.org.uk
my git repo = https://bitbucket.org/boudiccas/dots
TGmeds = http://www.tgmeds.org.uk
Debian testing, fluxbox 1.3.5, emacs 24.3.93.1

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

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

* Re: dropping the debian version
  2014-08-26 19:32 ` Achim Gratz
@ 2014-08-26 22:16   ` Sharon Kimble
  2014-08-27 18:06     ` Achim Gratz
  0 siblings, 1 reply; 7+ messages in thread
From: Sharon Kimble @ 2014-08-26 22:16 UTC (permalink / raw)
  To: Achim Gratz; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 1241 bytes --]

Achim Gratz <Stromeko@nexgo.de> writes:

> Sharon Kimble writes:
>> How do I drop the debian version and stick with the git version please?
>
> make up2

I'm sorry Achim, but what do you mean by that?
>
>> (setq load-path (cons "/home/boudiccas/.emacs.d/lisp" load-path))
>
> You shouldn't need this unless you really have some stuff in there
> that's just for you.  I'd suggest moving those things to site-lisp if
> possible (which is already in load-path and therefore doesn't need any
> gymnastics).

'site-lisp'? Where’s that then please? Its not in the org-mode that
comes with the git output, and I don't have one in my bog-standard emacs
in my /home directory at ~/.emacs.d/
>
>> (add-to-list 'load-path "/home/boudiccas/git/org-mode/lisp" load-path) (require 'org-install)
>> (add-to-list 'load-path "/home/boudiccas/git/org-mode/contrib/lisp" load-path)
>
> Drop this, too.  Do add
>
> (require 'org-loaddefs)
>
> instead since at least the standard Debian Emacs is too old to work
> without it.

Thanks
Sharon.
-- 
A taste of linux = http://www.sharons.org.uk
my git repo = https://bitbucket.org/boudiccas/dots
TGmeds = http://www.tgmeds.org.uk
Debian testing, fluxbox 1.3.5, emacs 24.3.93.1

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

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

* Re: dropping the debian version
  2014-08-26 22:16   ` Sharon Kimble
@ 2014-08-27 18:06     ` Achim Gratz
  0 siblings, 0 replies; 7+ messages in thread
From: Achim Gratz @ 2014-08-27 18:06 UTC (permalink / raw)
  To: emacs-orgmode

Sharon Kimble writes:
> I'm sorry Achim, but what do you mean by that?

Giving that command on the command line.

> 'site-lisp'? Where’s that then please? Its not in the org-mode that
> comes with the git output, and I don't have one in my bog-standard emacs
> in my /home directory at ~/.emacs.d/

On a stock Debian system you'd usually find it in
/usr/share/emacs/site-lisp and the above invocation would install into
subdirectory org.


Regards,
Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

Wavetables for the Terratec KOMPLEXER:
http://Synth.Stromeko.net/Downloads.html#KomplexerWaves

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

end of thread, other threads:[~2014-08-27 18:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-26 18:40 dropping the debian version Sharon Kimble
2014-08-26 19:08 ` Eric S Fraga
2014-08-26 21:59   ` Sharon Kimble
2014-08-26 19:32 ` Achim Gratz
2014-08-26 22:16   ` Sharon Kimble
2014-08-27 18:06     ` Achim Gratz
2014-08-26 21:19 ` Charles Millar

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).