From mboxrd@z Thu Jan 1 00:00:00 1970 From: William Case Subject: FUD on my part re: downloading revisions? Date: Tue, 01 Jan 2008 13:45:43 -0500 Message-ID: <1199213143.3102.18.camel@CASE> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J9m94-0001Qw-Hq for emacs-orgmode@gnu.org; Tue, 01 Jan 2008 13:47:22 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J9m92-0001N1-FA for emacs-orgmode@gnu.org; Tue, 01 Jan 2008 13:47:21 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J9m92-0001Mp-BU for emacs-orgmode@gnu.org; Tue, 01 Jan 2008 13:47:20 -0500 Received: from smtp108.rog.mail.re2.yahoo.com ([68.142.225.206]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1J9m91-0006Ae-UF for emacs-orgmode@gnu.org; Tue, 01 Jan 2008 13:47:20 -0500 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Emacs Orgmode Hi; I have tried to amend Pete Phillips' download script so that it works for me but I have some Fears, Uncertainties and Doubts about whether I got it right or not. Here are my changes and notes: #!/bin/bash # script to automate pulling the latest org from Carsten's site # PJP pete@smtl.co.uk # $Revision: 1.1 $ # $Log: update-org.sh,v $ # Revision 1.1 2007/04/26 05:53:54 pete # Initial revision ##### # emacs 22.1 on Fedora 8 ##### # directory where the org directory is located DIR=$HOME/Docs/Work/emacs ORGDIR=$DIR/org TMP=/tmp TMPTAR=$TMP/org.tar.gz # This is where I my copy of the emacs exicutable is kept/installed. EMACSBIN=/usr/bin/emacs ##### # The only place I have a lisp file # (/usr/share/emacs/22.1/lisp/textmodes/org.elc) is here. # Do I need or want to create a lisp directory in my home directroy? # If so, why? I don't have or want a CVS version if I have to climb a # steep CVS learning curve. I am somewhat familiar with svn. ##### # you should not need to edit anything else below here # go to the tmp dir cd $TMP # make sure we have the emacs [lisp] dir mkdir -p $DIR ###### # $DIR = $HOME/Docs/Work/emacs the way I have it set up. # Is this all right? ####### # get the tar file ... etc. etc. Any suggestions, warnings or tips would be appreciated. -- Regards Bill