abo-abo / oremacs

My Emacs config
https://oremacs.com/
296 stars 33 forks source link

Failure during make install #31

Open S0methingWicked opened 4 years ago

S0methingWicked commented 4 years ago

Cloned today per readme.md. Failed on 'make install' leaving emacs running with message "Tried to load cl-seq' beforecl'!" displayed. Related to recent commit for change in packages.el?

abo-abo commented 4 years ago

Thanks. I've moved from package.el to straight.el. Please check if make up works now.

S0methingWicked commented 4 years ago

Same error. Commands entered:

510 git clone https://github.com/abo-abo/oremacs 511 cd oremacs/ 512 make up

etc/log:

-- mode: compilation -- Already up to date. Submodule 'git/cc-chainsaw' (https://github.com/abo-abo/cc-chainsaw) registered for path 'git/cc-chainsaw' Submodule 'git/lpy' (https://github.com/abo-abo/lpy) registered for path 'git/lpy' Submodule 'git/magit' (https://github.com/abo-abo/magit) registered for path 'git/magit' Submodule 'git/org-fu' (https://github.com/abo-abo/org-fu) registered for path 'git/org-fu' Submodule 'git/profile-dotemacs' (https://github.com/abo-abo/profile-dotemacs) registered for path 'git/profile-dotemacs' Cloning into '/Users/alex/git/oremacs/git/cc-chainsaw'... Cloning into '/Users/alex/git/oremacs/git/lpy'... Cloning into '/Users/alex/git/oremacs/git/magit'... Cloning into '/Users/alex/git/oremacs/git/org-fu'... Cloning into '/Users/alex/git/oremacs/git/profile-dotemacs'... Submodule path 'git/cc-chainsaw': checked out '165dfeb1614f268e1dbdea9ff0d6c90f988c4e2f' Submodule path 'git/lpy': checked out 'f6623adc3cb8b3d7517baceb92c59da5e109f6ed' Submodule path 'git/magit': checked out '95aa0126ccfc25b1761b21102563d94830fc798b' Submodule path 'git/org-fu': checked out '0498ab73c3c5ae89f5d009b9504b2580f39b6d62' Submodule path 'git/profile-dotemacs': checked out 'db9c08cb4c5d736fe9159a5d341a7d48a552c4ae' Tried to load cl-seq' beforecl'!

S0methingWicked commented 4 years ago

In case it helps, here's info about my emacs (installed using MacPorts):

GNU Emacs 26.3 (build 1, x86_64-apple-darwin17.7.0, NS appkit-1561.61 Version 10.13.6 (Build 17G10021)) of 2020-01-22

abo-abo commented 4 years ago

I can't reproduce with Emacs 26.3 and GNU/Linux. Here's what I did:

git clone https://github.com/abo-abo/oremacs
cd oremacs
env HOME=$(pwd) make up

"Tried to load cl-seq before cl" seems like an issue in Emacs core. Maybe add (require 'cl) as the first line of init.el?

S0methingWicked commented 4 years ago

Thanks. I'll try setting HOME, and I'll try requiring cl in init.el.