From hblazeviczx6r at gmail.com Tue Sep 14 08:16:11 2021 From: hblazeviczx6r at gmail.com (Hrvoje Blazevic) Date: Tue, 14 Sep 2021 16:16:11 +0800 Subject: Slime installation instructions via elpa package-install no longer working! Message-ID: I'm repeating this because it was rejected. Hi, I don't know if anybody is aware of this situation. I have been using slime for working with CL for years (on and off - I mean Lisp). Last time i set up SBCL and Slime on Fedora in March this year (I think) That time M-x package-install was still working. But a few days ago I tried to set up SBCL and Slime on raspberry pi 4B (just for fun) and this does not work any more! Somebody (or something) has overwritten slime package, and replaced it with slime-voleyball package, apparently some BS game. How to fix this??? -------------- next part -------------- An HTML attachment was scrubbed... URL: From luismbo at gmail.com Tue Sep 14 10:43:56 2021 From: luismbo at gmail.com (=?UTF-8?Q?Lu=C3=ADs_Oliveira?=) Date: Tue, 14 Sep 2021 11:43:56 +0100 Subject: Slime installation instructions via elpa package-install no longer working! In-Reply-To: References: Message-ID: Hello Hrvoje, On Tue, 14 Sept 2021 at 09:17, Hrvoje Blazevic wrote: > I don't know if anybody is aware of this situation. > I have been using slime for working with CL for years (on and off - I mean Lisp). Last time i set up SBCL and Slime on Fedora in March this year (I think) > That time M-x package-install was still working. > But a few days ago I tried to set up SBCL and Slime on raspberry pi 4B (just for fun) and this does not work any more! > Somebody (or something) has overwritten slime package, and replaced it with slime-voleyball package, apparently some BS game. > > How to fix this??? $ cat minimal-config.el (setq user-emacs-directory "/tmp/temp-emacs-home") (ignore-errors (delete-directory user-emacs-directory t)) (require 'package) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) (package-initialize) (package-refresh-contents) (package-install 'slime) (setq inferior-lisp-program "sbcl") (slime) $ emacs -Q -l minimal-config.el This works for me. Can you try that? HTH, Luís