Created
May 8, 2013 12:05
-
-
Save AaronTheApe/5540012 to your computer and use it in GitHub Desktop.
Emacs 24 CentOS Repo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[emacs] | |
name=Emacs 24.2 repo | |
baseurl=http://pj.freefaculty.org/EL/6/x86_64/ | |
failovermethod=priority | |
enabled=1 | |
gpgcheck=1 | |
gpgkey=http://pj.freefaculty.org/EL/PaulJohnson-BinaryPackageSigningKey |
Thanks! This now also includes Emacs 24.3
Thanks for this!!
Emacs 24.3 i686?
Complains about emacs-common :'(
On Redhat / CentOS 6.6, I was missing a few updates to package dependencies. I sidestepped this primarily by doing the following:
wget -r -l1 --no-parent -Alibwmf* http://mirror.centos.org/centos/6.7/os/x86_64/Packages/
wget -r -l1 --no-parent -AImageMagick* http://mirror.centos.org/centos/6.7/os/x86_64/Packages/
cd mirror.centos.org/centos/6.7/os/x86_64/Packages/
rm libwmf-devel-0.2.8.4-23.el6.*
rm *i686*
sudo yum remove ImageMagick-6.5.4.7-7.el6_5.i686 libwmf-lite-0.2.8.4-23.el6.x86_64 # or whatever your current packages are
sudo rpm -Uvh *x86_64*.rpm
sudo yum update emacs emacs-common --nogpgcheck
Of course you may want to delete all rpm files after.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!