From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/63053 Path: news.gmane.org!not-for-mail From: Steinar Bang Newsgroups: gmane.emacs.gnus.general Subject: Re: bundle no gnus with emacs CVS Date: Fri, 28 Apr 2006 09:48:15 +0200 Organization: Probably a good idea Message-ID: <87hd4ekuo0.fsf@dod.no> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: sea.gmane.org 1146210720 13775 80.91.229.2 (28 Apr 2006 07:52:00 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 28 Apr 2006 07:52:00 +0000 (UTC) Original-X-From: ding-owner+m11580@lists.math.uh.edu Fri Apr 28 09:51:57 2006 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FZNlU-0006Ml-Rr for ding-account@gmane.org; Fri, 28 Apr 2006 09:51:49 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1FZNlO-0002Bj-00; Fri, 28 Apr 2006 02:51:42 -0500 Original-Received: from nas01.math.uh.edu ([129.7.128.39]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1FZNiY-0002Bb-00 for ding@lists.math.uh.edu; Fri, 28 Apr 2006 02:48:46 -0500 Original-Received: from quimby.gnus.org ([80.91.224.244]) by nas01.math.uh.edu with esmtp (Exim 4.52) id 1FZNiW-0001bT-Iw for ding@lists.math.uh.edu; Fri, 28 Apr 2006 02:48:46 -0500 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1FZNiV-0000OA-00 for ; Fri, 28 Apr 2006 09:48:43 +0200 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1FZNiK-0005sr-RE for ding@gnus.org; Fri, 28 Apr 2006 09:48:32 +0200 Original-Received: from pat-gw.osl.fast.no ([217.144.235.5]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 28 Apr 2006 09:48:32 +0200 Original-Received: from sb by pat-gw.osl.fast.no with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 28 Apr 2006 09:48:32 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org Original-To: ding@gnus.org Original-Lines: 33 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: pat-gw.osl.fast.no Mail-Copies-To: never User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/21.4 (gnu/linux) Cancel-Lock: sha1:4q/M1WX/+UwPhwFsFmKacKun4hE= X-Spam-Score: -2.6 (--) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:63053 Archived-At: >>>>> Leon : > I want to upgrade gnus in my local emacs cvs tree to No Gnus. But I > don't know how to cleanly do this i.e. can I just upgrade lisp/gnus > to the latest gnus. Why not just check out No Gnus separately and put it into the load-path before the system elisp files? >From my .emacs (I'm sure it can be made more elegant, I'm no lisp expert): (defvar cvs-workspace (if windows-emacs (expand-file-name "~/workspacecvs/") (expand-file-name "~/cvs/")) "The place where I check out CVS workspaces. On linux I like this to be lowercase \"cvs\" for shortness. But on Win32, that name conflicts with the \"CVS\" directory in my CVS-versioned home directory, so it has to be something different.") ;; CVS version of Gnus: (let ((cvs-gnus-directory (if (string-match "XEmacs" emacs-version) (concat cvs-workspace "gnus.xemacs") (concat cvs-workspace "gnus")))) (add-to-list 'load-path (concat cvs-gnus-directory "/lisp")) (let ((cvs-gnus-info-dir (concat cvs-gnus-directory "/texi"))) (if (boundp 'Info-directory-list) (add-to-list 'Info-directory-list cvs-gnus-info-dir) (setq Info-directory-list (append (list cvs-gnus-info-dir) Info-default-directory-list)))))