[Orgmode] Aquamacs and latest org-mode

2010-05-26 Thread Yuri de Wit
Could someone point me in the right direction here?

I just installed the latest Aquamacs 2.0. Afaik, it has emacs 22.2.1 and
org-mode 6.33x. How can I update org-mode to the latest version?

I am familiar with git, cloning, building etc. But I am not sure how to hook
that up to Aquamacs.

thanks,
-- yuri
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Aquamacs and latest org-mode

2010-05-26 Thread Stefan Vollmar
Dear Yuri,

On 27.05.2010, at 00:23, Yuri de Wit wrote:

> Could someone point me in the right direction here? 
> 
> I just installed the latest Aquamacs 2.0. Afaik, it has emacs 22.2.1 and 
> org-mode 6.33x. How can I update org-mode to the latest version?
> 
> I am familiar with git, cloning, building etc. But I am not sure how to hook 
> that up to Aquamacs. 


there are several ways, here is one:

(1) git clone git://repo.or.cz/org-mode.git
(2) In the Makefile change EMACS to
EMACS=/Applications/Aquamacs.app/Contents/MacOS/Aquamacs
assuming you installed Aquamcs in /Applications
(3) make compile; make lisp/org-install.el
(4) In your .emacs

(defvar org-sys-directory "/path/to/org-mode/lisp")
(setq load-path (cons org-sys-directory load-path))
(require 'org-install)
[other org-specific setup]

Warm regards,
 Stefan
-- 
Dr. Stefan Vollmar, Dipl.-Phys.
Head of IT group
Max-Planck-Institut für neurologische Forschung
Gleuelerstr. 50, 50931 Köln, Germany
Tel.: +49-221-4726-213  FAX +49-221-4726-298
Tel.: +49-221-478-5713  Mobile: 0160-93874279
Email: voll...@nf.mpg.de   http://www.nf.mpg.de








smime.p7s
Description: S/MIME cryptographic signature
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Aquamacs and latest org-mode

2010-05-27 Thread Yuri de Wit
Hi Stefan,

Thanks for the directions.

I noticed that /Application/Aquamacs.app/Contents/Resources/lisp/org has the
org lisp files and the org-mode Makefile is generating elc files in
/usr/local/... Would Aquamacs automatically pick them up from there or do I
need to generate the elc into the Aquamacs folder?

thanks,
-- yuri

On Wed, May 26, 2010 at 6:36 PM, Stefan Vollmar  wrote:

> Dear Yuri,
>
> On 27.05.2010, at 00:23, Yuri de Wit wrote:
>
> > Could someone point me in the right direction here?
> >
> > I just installed the latest Aquamacs 2.0. Afaik, it has emacs 22.2.1 and
> org-mode 6.33x. How can I update org-mode to the latest version?
> >
> > I am familiar with git, cloning, building etc. But I am not sure how to
> hook that up to Aquamacs.
>
>
> there are several ways, here is one:
>
> (1) git clone git://repo.or.cz/org-mode.git
> (2) In the Makefile change EMACS to
> EMACS=/Applications/Aquamacs.app/Contents/MacOS/Aquamacs
> assuming you installed Aquamcs in /Applications
> (3) make compile; make lisp/org-install.el
> (4) In your .emacs
>
> (defvar org-sys-directory "/path/to/org-mode/lisp")
> (setq load-path (cons org-sys-directory load-path))
> (require 'org-install)
> [other org-specific setup]
>
> Warm regards,
>  Stefan
> --
> Dr. Stefan Vollmar, Dipl.-Phys.
> Head of IT group
> Max-Planck-Institut für neurologische Forschung
> Gleuelerstr. 50, 50931 Köln, Germany
> Tel.: +49-221-4726-213  FAX +49-221-4726-298
> Tel.: +49-221-478-5713  Mobile: 0160-93874279
> Email: voll...@nf.mpg.de   http://www.nf.mpg.de
>
>
>
>
>
>
>
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Aquamacs and latest org-mode

2010-05-27 Thread Nick Dokos
Yuri de Wit  wrote:

> Hi Stefan,
> 
> Thanks for the directions.
> 
> I noticed that /Application/Aquamacs.app/Contents/Resources/lisp/org has th=
> e
> org lisp files and the org-mode Makefile is generating elc files in
> /usr/local/... Would Aquamacs automatically pick them up from there or do I
> need to generate the elc into the Aquamacs folder?
> 

Are you sure they are generated in /usr/local/...? In my case, the .elc
files are generated in the same directory as the corresponding .el
files.

But in any case, if aquamacs is more-or-less normal emacs, then setting
the load-path as Stefan indicated should be enough for them to be found.
You can make sure by evaluating the following

(locate-library "org")

Just put the cursor after the closing paren and type C-x C-e

HTH,
Nick

> thanks,
> -- yuri
> 
> On Wed, May 26, 2010 at 6:36 PM, Stefan Vollmar  wrote:
> 
> > Dear Yuri,
> >
> > On 27.05.2010, at 00:23, Yuri de Wit wrote:
> >
> > > Could someone point me in the right direction here?
> > >
> > > I just installed the latest Aquamacs 2.0. Afaik, it has emacs 22.2.1 an=
> d
> > org-mode 6.33x. How can I update org-mode to the latest version?
> > >
> > > I am familiar with git, cloning, building etc. But I am not sure how to
> > hook that up to Aquamacs.
> >
> >
> > there are several ways, here is one:
> >
> > (1) git clone git://repo.or.cz/org-mode.git
> > (2) In the Makefile change EMACS to
> > EMACS=3D/Applications/Aquamacs.app/Contents/MacOS/Aquamacs
> > assuming you installed Aquamcs in /Applications
> > (3) make compile; make lisp/org-install.el
> > (4) In your .emacs
> >
> > (defvar org-sys-directory "/path/to/org-mode/lisp")
> > (setq load-path (cons org-sys-directory load-path))
> > (require 'org-install)
> > [other org-specific setup]
> >
> > Warm regards,
> >  Stefan
> > --
> > Dr. Stefan Vollmar, Dipl.-Phys.
> > Head of IT group
> > Max-Planck-Institut f=FCr neurologische Forschung
> > Gleuelerstr. 50, 50931 K=F6ln, Germany
> > Tel.: +49-221-4726-213  FAX +49-221-4726-298
> > Tel.: +49-221-478-5713  Mobile: 0160-93874279
> > Email: voll...@nf.mpg.de   http://www.nf.mpg.de
> >
> >
> >
> >
> >
> >
> >
> 
> --000e0cd5156a93c68e04879b219d
> Content-Type: text/html; charset=ISO-8859-1
> Content-Transfer-Encoding: quoted-printable
> 
> Hi Stefan,=A0Thanks for the directions.=A0 r>I noticed that /Application/Aquamacs.app/Contents/Resources/li=
> sp/org has the org lisp files and the org-mode Makefile is generating elc f=
> iles in /usr/local/... Would Aquamacs automatically pick them up from there=
>  or do I need to generate the elc into the Aquamacs folder?
> thanks,-- yuri ote">On Wed, May 26, 2010 at 6:36 PM, Stefan Vollmar <=
> mailto:voll...@nf.mpg.de";>voll...@nf.mpg.de> wrote=
> :
>  x #ccc solid;padding-left:1ex;">Dear Yuri,
> 
> On 27.05.2010, at 00:23, Yuri de Wit wrote:
> 
> > Could someone point me in the right direction here?
> >
> > I just installed the latest Aquamacs 2.0. Afaik, it has emacs 22.2.1 a=
> nd org-mode 6.33x. How can I update org-mode to the latest version?
> >
> > I am familiar with git, cloning, building etc. But I am not sure how t=
> o hook that up to Aquamacs.
> 
> 
> there are several ways, here is one:
> 
> (1) git clone git://http://repo.or.cz/org-mode.git"; target=3D"_b=
> lank">repo.or.cz/org-mode.git
> (2) In the Makefile change EMACS to
> EMACS=3D/Applications/Aquamacs.app/Contents/MacOS/Aquamacs
> assuming you installed Aquamcs in /Applications
> (3) make compile; make lisp/org-install.el
> (4) In your .emacs
> 
> (defvar org-sys-directory "/path/to/org-mode/lisp")
> (setq load-path (cons org-sys-directory load-path))
> (require 'org-install)
> [other org-specific setup]
> 
> Warm regards,
> =A0Stefan
> --
> Dr. Stefan Vollmar, Dipl.-Phys.
> Head of IT group
> Max-Planck-Institut f=FCr neurologische Forschung
> Gleuelerstr. 50, 50931 K=F6ln, Germany
> Tel.: +49-221-4726-213 =A0FAX +49-221-4726-298
> Tel.: +49-221-478-5713 =A0Mobile: 0160-93874279
> Email: mailto:voll...@nf.mpg.de";>voll...@nf.mpg.de =A0  ef=3D"http://www.nf.mpg.de"; target=3D"_blank">http://www.nf.mpg.de
> 
> 
> 
> 
> 
> 
> 
> 
> --000e0cd5156a93c68e04879b219d--
> 
> 
> --===1748008595==
> Content-Type: text/plain; charset="us-ascii"
> MIME-Version: 1.0
> Content-Transfer-Encoding: 7bit
> Content-Disposition: inline
> 
> ___
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
> 
> --===1748008595==--
> 

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Aquamacs and latest org-mode

2010-05-27 Thread Yuri de Wit
Hi Nick,

Indeed, it is not going to /usr/local but staying in the same directory as
the .el files.

Very nice. I added (add-to-list 'load-path
"~/.emacs.d/org-mode/contrib/lisp") and tested it out with C-x C-e
on (locate-library "org") to confirm (it
was "/Applications/Aquamacs.app/Contents/Resources/lisp/org/org.elc").

Thanks a million,
-- yuri


On Thu, May 27, 2010 at 8:23 PM, Nick Dokos  wrote:

> Yuri de Wit  wrote:
>
> > Hi Stefan,
> >
> > Thanks for the directions.
> >
> > I noticed that /Application/Aquamacs.app/Contents/Resources/lisp/org has
> th=
> > e
> > org lisp files and the org-mode Makefile is generating elc files in
> > /usr/local/... Would Aquamacs automatically pick them up from there or do
> I
> > need to generate the elc into the Aquamacs folder?
> >
>
> Are you sure they are generated in /usr/local/...? In my case, the .elc
> files are generated in the same directory as the corresponding .el
> files.
>
> But in any case, if aquamacs is more-or-less normal emacs, then setting
> the load-path as Stefan indicated should be enough for them to be found.
> You can make sure by evaluating the following
>
>(locate-library "org")
>
> Just put the cursor after the closing paren and type C-x C-e
>
> HTH,
> Nick
>
> > thanks,
> > -- yuri
> >
> > On Wed, May 26, 2010 at 6:36 PM, Stefan Vollmar 
> wrote:
> >
> > > Dear Yuri,
> > >
> > > On 27.05.2010, at 00:23, Yuri de Wit wrote:
> > >
> > > > Could someone point me in the right direction here?
> > > >
> > > > I just installed the latest Aquamacs 2.0. Afaik, it has emacs 22.2.1
> an=
> > d
> > > org-mode 6.33x. How can I update org-mode to the latest version?
> > > >
> > > > I am familiar with git, cloning, building etc. But I am not sure how
> to
> > > hook that up to Aquamacs.
> > >
> > >
> > > there are several ways, here is one:
> > >
> > > (1) git clone git://repo.or.cz/org-mode.git
> > > (2) In the Makefile change EMACS to
> > > EMACS=3D/Applications/Aquamacs.app/Contents/MacOS/Aquamacs
> > > assuming you installed Aquamcs in /Applications
> > > (3) make compile; make lisp/org-install.el
> > > (4) In your .emacs
> > >
> > > (defvar org-sys-directory "/path/to/org-mode/lisp")
> > > (setq load-path (cons org-sys-directory load-path))
> > > (require 'org-install)
> > > [other org-specific setup]
> > >
> > > Warm regards,
> > >  Stefan
> > > --
> > > Dr. Stefan Vollmar, Dipl.-Phys.
> > > Head of IT group
> > > Max-Planck-Institut f=FCr neurologische Forschung
> > > Gleuelerstr. 50, 50931 K=F6ln, Germany
> > > Tel.: +49-221-4726-213  FAX +49-221-4726-298
> > > Tel.: +49-221-478-5713  Mobile: 0160-93874279
> > > Email: voll...@nf.mpg.de   http://www.nf.mpg.de
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> >
> > --000e0cd5156a93c68e04879b219d
> > Content-Type: text/html; charset=ISO-8859-1
> > Content-Transfer-Encoding: quoted-printable
> >
> > Hi Stefan,=A0Thanks for the
> directions.=A0 > r>I noticed that
> /Application/Aquamacs.app/Contents/Resources/li=
> > sp/org has the org lisp files and the org-mode Makefile is generating elc
> f=
> > iles in /usr/local/... Would Aquamacs automatically pick them up from
> there=
> >  or do I need to generate the elc into the Aquamacs folder?
> > thanks,-- yuri class=3D"gmail_qu=
> > ote">On Wed, May 26, 2010 at 6:36 PM, Stefan Vollmar  dir=3D"ltr"><=
> > mailto:voll...@nf.mpg.de";>voll...@nf.mpg.de>
> wrote=
> > :
> >  .8ex;border-left:1p=
> > x #ccc solid;padding-left:1ex;">Dear Yuri,
> > 
> > On 27.05.2010, at 00:23, Yuri de Wit wrote:
> > 
> > > Could someone point me in the right direction here?
> > >
> > > I just installed the latest Aquamacs 2.0. Afaik, it has emacs 22.2.1
> a=
> > nd org-mode 6.33x. How can I update org-mode to the latest version?
> > >
> > > I am familiar with git, cloning, building etc. But I am not sure how
> t=
> > o hook that up to Aquamacs.
> > 
> > 
> > there are several ways, here is one:
> > 
> > (1) git clone git://http://repo.or.cz/org-mode.git";
> target=3D"_b=
> > lank">repo.or.cz/org-mode.git
> > (2) In the Makefile change EMACS to
> > EMACS=3D/Applications/Aquamacs.app/Contents/MacOS/Aquamacs
> > assuming you installed Aquamcs in /Applications
> > (3) make compile; make lisp/org-install.el
> > (4) In your .emacs
> > 
> > (defvar org-sys-directory "/path/to/org-mode/lisp")
> > (setq load-path (cons org-sys-directory load-path))
> > (require 'org-install)
> > [other org-specific setup]
> > 
> > Warm regards,
> > =A0Stefan
> > --
> > Dr. Stefan Vollmar, Dipl.-Phys.
> > Head of IT group
> > Max-Planck-Institut f=FCr neurologische Forschung
> > Gleuelerstr. 50, 50931 K=F6ln, Germany
> > Tel.: +49-221-4726-213 =A0FAX +49-221-4726-298
> > Tel.: +49-221-478-5713 =A0Mobile: 0160-93874279
> > Email: mailto:voll...@nf.mpg.de";>voll...@nf.mpg.de =A0  hr=
> > ef=3D"http://www.nf.mpg.de"; target=3D"_blank">http://www.nf.mpg.de
> 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> >
> > --000e0cd5156a93c68e04879b219d--
> >
> >
> > --===1748008595==
> > Content-Type: text/plain; char