eschulte/emacs-starter-kit

after i update the git submodules and make auctex, etc... i get this error

emaxerrno opened this issue · 10 comments

idle-highlight not available for installation.

I'm running ubntu 10.10 32 bit. emacs 23

thanks

I believe this is due to missing package.el code adding additional ELPA sources, what is the value of your package-archives variable? It should be

(("original" . "http://tromey.com/elpa/")
 ("gnu" . "http://elpa.gnu.org/packages/")
 ("technomancy" . "http://repo.technomancy.us/emacs/"))

I would suggest ensuring that you have the latest version of the starter kit installed, and trying a restart. This looks very similar to this previous closed issue https://github.com/eschulte/emacs-starter-kit/issues/closed#issue/4

where can i find this variable i've done

find * | grep 'original' * and only the starter-kit.org file comes up.

from inside Emacs do C-h v package-archives RET which will call the describe-variable function on the package-archives variable.

yes, is exactly the same. I mean i just pulled your repo again and tried it and the same problem happens.

What is the value of your package-archives variable?

When you run M-x package-list-packages do you see hline? If so then installing hline through this interface should fix your problem.

What is the value of your package-archives variable?
(("original" . "http://tromey.com/elpa/")
("gnu" . "http://elpa.gnu.org/packages/")
("technomancy" . "http://repo.technomancy.us/emacs/"))

When you run M-x package-list-packages do you see hline? If so then installing hline through this interface should fix your problem.

I think this is the problem, it says:

Fialed to download 'technomancy' archive.

Thank you !

now, how would i fix that failed download thing ? any ideas ?

I'd recommend trying again, I have the same configuration as you but I am able to reach the technomancy archive, so I would guess this is a connectivity problem. I'd recommend trying again. Also you could try removing the technomancy archive from your package-archives variable with code like the following in your scratch archive or in your Emacs config.

(setq package-archives
          '(("original" . "http://tromey.com/elpa/")
            ("gnu" . "http://elpa.gnu.org/packages/")))

hmm nope, didn't work. Tired again, pull the repo, compiled all the stuff added this snippet to USER.el it still says idle-highlight not available for installation.

thanks

I had the exact same issue, also on ubuntu 10.10.
Manually installing highline in elpa and then restarting emacs solved the issue.