From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alan Schmitt Subject: Re: [ANN] orgbox: Mailbox-like task scheduling in org-agenda. Date: Tue, 25 Mar 2014 15:34:51 +0100 Message-ID: References: <8738i7bdnu.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43009) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WSSRV-0008V2-DC for Emacs-orgmode@gnu.org; Tue, 25 Mar 2014 10:35:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WSSRO-00029V-4r for Emacs-orgmode@gnu.org; Tue, 25 Mar 2014 10:35:05 -0400 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:62803) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WSSRN-00029E-UC for Emacs-orgmode@gnu.org; Tue, 25 Mar 2014 10:34:58 -0400 In-Reply-To: <8738i7bdnu.fsf@gmail.com> (Aaron Ecay's message of "Mon, 24 Mar 2014 15:35:30 -0400") 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 Hi Aaron, Aaron Ecay writes: > Hi Alan, > > I installed the attached file with M-x package-install-file to avoid > getting org pulled in via (M)ELPA. The large version number means that > new versions of org don=E2=80=99t look like upgrades, preventing them from > overwriting this package. Obviously, you should edit the path to your > git checkout of org. You=E2=80=99ll additionally have to add the org/lis= p and > org/contrib/lisp (if desired) directories from the git checkout to > load-path in your init.el (before calling package-initialize). > > (I think the copyright line was put there because package.el would > fuss if it was missing. This code is so short I doubt it is actually > copyrightable.) > > > ;;; org.el --- Dummy org mode package > > ;; Copyright (C) 2013 Aaron Ecay > > ;; Version: 30000101 > > (let ((org-dir "/home/aecay/development/org-mode/lisp/")) > (load (concat org-dir "org.el"))) > > ;;; org.el ends here This is a great suggestion! As I'm already loading org, I follow a similar approach. I installed the following file (with an updated copyright ;-)) #+begin_src emacs-lisp ;;; org.el --- Dummy org mode package ;; Copyright (C) 2014 Alan Schmitt ;; Version: 30000101 () ;;; org.el ends here #+end_src Thanks, Alan