From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Schulte Subject: Re: Installing Org through the new http://orgmode.org ELPA Date: Fri, 28 Sep 2012 12:59:36 -0600 Message-ID: <87zk4arn1j.fsf@gmx.com> References: <87wqzeilvf.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:45069) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1THfnF-0002aJ-A1 for emacs-orgmode@gnu.org; Fri, 28 Sep 2012 15:00:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1THfn7-00023v-T0 for emacs-orgmode@gnu.org; Fri, 28 Sep 2012 15:00:07 -0400 Received: from mailout-eu.gmx.com ([213.165.64.43]:48207) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1THfn7-00021x-Hh for emacs-orgmode@gnu.org; Fri, 28 Sep 2012 15:00:01 -0400 In-Reply-To: <87wqzeilvf.fsf@bzg.ath.cx> (Bastien's message of "Fri, 28 Sep 2012 10:37:24 +0200") 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Bastien Cc: emacs-orgmode@gnu.org Bastien 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