From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sacha Chua Subject: Re: Can ELPA package split contrib part? Date: Fri, 18 Apr 2014 10:46:03 -0400 Message-ID: <86eh0u66hg.fsf@sachachua.com> References: <87ob008mbg.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42389) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WbA3d-0000Dx-UX for emacs-orgmode@gnu.org; Fri, 18 Apr 2014 10:46:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WbA3Y-00075a-0v for emacs-orgmode@gnu.org; Fri, 18 Apr 2014 10:46:25 -0400 Received: from plane.gmane.org ([80.91.229.3]:41663) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WbA3X-00074l-Rv for emacs-orgmode@gnu.org; Fri, 18 Apr 2014 10:46:19 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WbA3X-0003Rv-8C for emacs-orgmode@gnu.org; Fri, 18 Apr 2014 16:46:19 +0200 Received: from 184.175.19.126 ([184.175.19.126]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 18 Apr 2014 16:46:19 +0200 Received: from sacha by 184.175.19.126 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 18 Apr 2014 16:46:19 +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: emacs-orgmode@gnu.org Bastien writes: Hello, Bastien, all! >> While I use "org-plus-contrib" package from orgmode ELPA, >> With other package which requires (updated) "org", it isn't >> recognized as I expect. > You should really not have both installed, I'd recommend using > `org-plus-contrib' only. > If that's not feasible because of some compatibility constraint > you have, then use git or the .tar.gz/.zip archives, it's easy > enough. I find that the following snippet seems to load Org fine even if I'm mixing org-plus-contrib (which is needed for some of the other Org packages like org-drill-table) with Org from git: ;; Set up load path, but don't actually load packages yet (package-initialize nil) ;; Override the packages with the git version of Org and other packages (add-to-list 'load-path "~/elisp/org-mode/lisp") (add-to-list 'load-path "~/elisp/org-mode/contrib/lisp") ;; Load the rest of the packages (package-initialize t) Sacha