* Installing Org through the new http://orgmode.org ELPA
@ 2012-09-28 8:37 Bastien
2012-09-28 18:59 ` Eric Schulte
0 siblings, 1 reply; 3+ messages in thread
From: Bastien @ 2012-09-28 8:37 UTC (permalink / raw)
To: emacs-orgmode
Dear all,
you can now install the Complete Org Edition (tm), which includes
contributed files, from M-x list-packages RET.
Add the new Org ELPA with:
(add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/"))
Be aware that you will need to initialize packages early in your
Emacs init file -- i.e. put (package-initialize) before setting any
Org options.
Please read http://orgmode.org/elpa/ for details.
Packages are not updated every day anymore, they are updated
every week. As these packages are created from the stable maint
branch, a weekly basis seems reasonable.
Thanks to those who help pushing this forward, especially Jambunathan,
Achim and Eric!
Enjoy,
--
Bastien
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Installing Org through the new http://orgmode.org ELPA
2012-09-28 8:37 Installing Org through the new http://orgmode.org ELPA Bastien
@ 2012-09-28 18:59 ` Eric Schulte
2012-09-29 5:49 ` Bastien
0 siblings, 1 reply; 3+ messages in thread
From: Eric Schulte @ 2012-09-28 18:59 UTC (permalink / raw)
To: Bastien; +Cc: emacs-orgmode
Bastien <bzg@altern.org> writes:
> Dear all,
>
> you can now install the Complete Org Edition (tm), which includes
> contributed files, from M-x list-packages RET.
>
> Add the new Org ELPA with:
>
> (add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/"))
>
> Be aware that you will need to initialize packages early in your
> Emacs init file -- i.e. put (package-initialize) before setting any
> Org options.
>
> Please read http://orgmode.org/elpa/ for details.
>
> Packages are not updated every day anymore, they are updated
> every week. As these packages are created from the stable maint
> branch, a weekly basis seems reasonable.
>
> Thanks to those who help pushing this forward, especially Jambunathan,
> Achim and Eric!
>
> Enjoy,
This is great, thanks!
Perhaps the following elisp snippet on the orgmode.org/elpa page
;; -*- emacs-lisp -*-
(package-initialize) ;; Initialize Package
(require 'org-install) ;; Initialize Org
;; (setq org-...) ;; Custom settings
should be expanded to
;; -*- emacs-lisp -*-
(package-initialize) ;; Initialize & Install Package
(unless package-archive-contents (package-refresh-contents))
(unless (package-installed-p 'org) (package-install 'org))
(require 'org-install) ;; Initialize Org
;; (setq org-...) ;; Custom settings
--
Eric Schulte
http://cs.unm.edu/~eschulte
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Installing Org through the new http://orgmode.org ELPA
2012-09-28 18:59 ` Eric Schulte
@ 2012-09-29 5:49 ` Bastien
0 siblings, 0 replies; 3+ messages in thread
From: Bastien @ 2012-09-29 5:49 UTC (permalink / raw)
To: Eric Schulte; +Cc: emacs-orgmode
Hi Eric,
Eric Schulte <eric.schulte@gmx.com> writes:
> should be expanded to
>
> ;; -*- emacs-lisp -*-
> (package-initialize) ;; Initialize & Install Package
> (unless package-archive-contents (package-refresh-contents))
> (unless (package-installed-p 'org) (package-install 'org))
> (require 'org-install) ;; Initialize Org
> ;; (setq org-...) ;; Custom settings
I gave these instructrion, but in a separate chunk as I want to
keep the first one very short and clear... Thanks for this!
--
Bastien
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-09-29 6:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-28 8:37 Installing Org through the new http://orgmode.org ELPA Bastien
2012-09-28 18:59 ` Eric Schulte
2012-09-29 5:49 ` Bastien
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.