Lisp student
Lisp student
Just so you know, any time I run `ravensw` I get warning, `Warning: Major OS version upgrade detected. Running "pkg-static install -f pkg" recommended`
Would this be correct? > 1. Uninstall any package installed via synth, in this case, just `joe` `# pkg remove joe` Question: how would one uninstall _all_ packages coming from...
But If I would just apply the 3 `rm`, wouldn't the `joe` package, installed via `synth` ports, still be in the system but no more upgreadable (repo would be gone)?...
Everything works with no hiccups now: ``` fetch http://www.ravenports.com/repository/ravensw-freebsd64-bootstrap.tar.gz tar -C / -xzf ravensw-freebsd64-bootstrap.tar.gz nano /raven/etc/ravensw.conf /raven/sbin/ravensw upgrade /raven/sbin/ravensw install -y synth-single-standard synth just-build editors/joe synth install editors/joe ``` Interestingly,...
Ah, all clear now. There were leftover directories: ``` Synth configuration profile: LiveSystem =============================================================================== [A] Ports directory /usr/ports [B] Packages directory /var/synth/live_packages [C] Distfiles directory /usr/ports/distfiles [D] Port options directory...
> LispWorks 8: I assume this works as expected, since LispWorks 7.2.1 got two patches fixing it. But I haven't tested it. Maybe someone else can check this. I can...
Would it be enough (and healthily so) to keep repositories in sync with respective origins via [a shell script](https://edwardthomson.com/blog/mirroring_git_repositories.html) on system side? Or is there some kind of data maintained...
I had same issue. This invocation fixed it for me: ```elisp (use-package helm :defer 3 :config (require 'helm-config) (helm-mode 1) :bind (("M-x" . helm-M-x) ("C-x b" . helm-mini) ("C-x r...
Thank you for the detailed instructions. I have cloned the repo in `C:\home\lisp\quicklisp\local-projects\lw-multiplication` ```lisp (push #P"C:/home/lisp/quicklisp/local-projects/lw-multiplication/" ASDF:*central-registry*) (#P"C:/home/lisp/quicklisp/local-projects/lw-multiplication/" #P"c:/home/lisp/quicklisp/quicklisp/") ``` But it seems it can't compile `LEXICAL`: ```lisp CL-USER 1...
```lisp CL-USER 11 > (ql:where-is-system :arnesi) #P"c:/home/lisp/quicklisp/dists/quicklisp/software/arnesi-20170403-git/" CL-USER 12 > (ql-dist:all-dists) (# #) ``` Should I try using ultralisp?