From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ted Zlatanov Newsgroups: gmane.emacs.help Subject: Re: el-get question Date: Wed, 16 Mar 2011 13:11:05 -0500 Organization: =?utf-8?B?0KLQtdC+0LTQvtGAINCX0LvQsNGC0LDQvdC+0LI=?= @ Cienfuegos Message-ID: <878vwfue9y.fsf@lifelogs.com> References: <87lj0fw3kg.fsf@lifelogs.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1300300856 13789 80.91.229.12 (16 Mar 2011 18:40:56 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 16 Mar 2011 18:40:56 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Mar 16 19:40:50 2011 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PzveK-0006CU-So for geh-help-gnu-emacs@m.gmane.org; Wed, 16 Mar 2011 19:40:49 +0100 Original-Received: from localhost ([127.0.0.1]:60296 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PzveK-0003kl-DX for geh-help-gnu-emacs@m.gmane.org; Wed, 16 Mar 2011 14:40:48 -0400 Original-Path: usenet.stanford.edu!goblin2!goblin.stu.neva.ru!feeder.erje.net!news.albasani.net!.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 47 Original-X-Trace: news.albasani.net dgzWbe9v+XA/xiwEMPJa6o4UCx1fgmM90/y2KRfDFE40fLJ9kkhf1JxACnDh5/lDxRuZ+O1OppXcNH6xHdy5Fhm1xh3Tf2qTSOCrGJohq9zWTlHilPmalBnBnC9g7oQE Original-NNTP-Posting-Date: Wed, 16 Mar 2011 18:11:07 +0000 (UTC) Injection-Info: news.albasani.net; logging-data="npHmr1lNH0HH8e9aSgiQ1ALPhOpXLVthfqsO99nE3Quu7TFXKpHXa1jJj3qw2T2YwSldVOP5e8lxMwImdoDEMsObQuEajBwEW7p/y3XB3Nq+FvnHJwdcZLR2HUtROa/i"; mail-complaints-to="abuse@albasani.net" User-Agent: Gnus/5.110014 (No Gnus v0.14) Emacs/24.0.50 (gnu/linux) X-Face: bd.DQ~'29fIs`T_%O%C\g%6jW)yi[zuz6; d4V0`@y-~$#3P_Ng{@m+e4o<4P'#(_GJQ%TT= D}[Ep*b!\e,fBZ'j_+#"Ps?s2!4H2-Y"sx" Cancel-Lock: sha1:KPlt7qeWb6zykCm4TZL60p0Zw24= sha1:t5pk5Ye5VY8I0ANyKSqYWM5706k= Original-Xref: usenet.stanford.edu gnu.emacs.help:186038 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:80182 Archived-At: On Wed, 16 Mar 2011 17:38:11 +0100 henry atting wrote: ha> Thanks! With some effort I got it working now with orgmode from git; - ha> okay, it's not bad. Having said that I find it's too much work to do. ha> In my opinion a `git pull` to obtain the current orgmode version and ha> adding the directory to the load path is far less time consuming. So ha> most probably I will refrain from using el-get. I use el-get for the built-in recipes, but here are two Git-based recipes mixed in with some built-in ones. I prefer leaving emacs-w3m uncompiled, in case you're wondering about the commented-out build prop. (el-get 'wait (setq el-get-sources '( (:name emacs_w3m :type git :url "https://github.com/sjatkinson/emacs-w3m.git" :module "emacs-w3m" ;;:build `("autoconf" ("./configure" ,(concat "--with-emacs=" el-get-emacs)) "make") :build '("") :info "doc" :features w3m) (:name zencoding-mode :type git :url "https://github.com/rooney/zencoding" :module "zencoding-mode" :build '("make") :features zencoding-mode) bbdb csv htmlize markdown-mode pg session tc))) I also use package.el: (setq package-archives '(("ELPA" . "http://tromey.com/elpa/") ("marmalade" . "http://marmalade-repo.org/packages/") ("gnu" . "http://elpa.gnu.org/packages/"))) ...which may fit your needs as well, though el-get definitely handles Git pulls better. What may interest you is that the GNU ELPA has the daily org-mode build, which you can see at http://elpa.gnu.org/packages/ so if using the daily build suits you, you may be happy just using that through the `package-list-packages' interface. Ted