[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Can I share ~/.emacs.d/elpa with two machines?
From: |
Phillip Lord |
Subject: |
Re: Can I share ~/.emacs.d/elpa with two machines? |
Date: |
Sat, 03 Oct 2015 21:04:38 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux) |
Rainer M Krug <Rainer@krugs.de> writes:
> Kaushal Modi <kaushal.modi@gmail.com> writes:
>
>> @Stefan, sharing elpa/ between at least emacs 24.5 and emacs 25.x (git
>> master) does not work as the complied .elc files are not compatible between
>> the two versions.
>
> Just jumping in as I have the two version problem.
>
> I am fine with most of my stuff managed by cask, therefore aware of
> versions. But how can I manage org, which is via git? Any smart
> suggestion how I can use this between two versions on one machine?
I use "use-package" and ":ensure" which pulls down everything from ELPA.
So I share my .emacs between machines but not my elpa directory.
In terms of supporting multiple versions of Emacs, I use this....
(setq package-user-dir (concat "~/.emacs.d/elpa/"
;; if we use emacs-version we get a
;; LOT of pre-release directories.
(int-to-string emacs-major-version)
"."
(int-to-string emacs-minor-version)))
With org, not sure what the problem is? You want to run this directly off
a git clone? I wrote "git-update.el" for use with use-package -- you
should just be able to clone org twice.
Phil
- Re: Can I share ~/.emacs.d/elpa with two machines?, (continued)
- Re: Can I share ~/.emacs.d/elpa with two machines?, Rainer M Krug, 2015/10/08
- Re: Can I share ~/.emacs.d/elpa with two machines?, Kaushal Modi, 2015/10/08
- Solved: Can I share ~/.emacs.d/elpa with two machines?, Rainer M Krug, 2015/10/08
- Re: Can I share ~/.emacs.d/elpa with two machines?, Suvayu Ali, 2015/10/08
- Re: Can I share ~/.emacs.d/elpa with two machines?, Kaushal Modi, 2015/10/08
- Re: Can I share ~/.emacs.d/elpa with two machines?, Suvayu Ali, 2015/10/08
- Re: Can I share ~/.emacs.d/elpa with two machines?, Kaushal Modi, 2015/10/08
- Re: Can I share ~/.emacs.d/elpa with two machines?, Rainer M Krug, 2015/10/08
- Re: Can I share ~/.emacs.d/elpa with two machines?, Suvayu Ali, 2015/10/08
- Re: Can I share ~/.emacs.d/elpa with two machines?, Rainer M Krug, 2015/10/08
- Re: Can I share ~/.emacs.d/elpa with two machines?,
Phillip Lord <=
Re: Can I share ~/.emacs.d/elpa with two machines?, Kaushal Modi, 2015/10/08