Jonathon McKitrick | 13 Mar 2007 04:26

Getting arnesi to load


Hi,

I went through 5 pages of googling on 'arnesi swank' so I thought I'd just
ask...

what's the most direct way to get arnesi to load into slime without
complaining that it can't find :swank package?

I'm running sbcl 1.0.3, and I just got arnesi_dev from darcs today.

Thanks!

--

-- 
Jonathon McKitrick
Reed Larkey Group
Attila Lendvai | 13 Mar 2007 12:26
Picon
Gravatar

Re: Getting arnesi to load

> what's the most direct way to get arnesi to load into slime without
> complaining that it can't find :swank package?
>
> I'm running sbcl 1.0.3, and I just got arnesi_dev from darcs today.

that's strange, it works fine here with the cvs sbcl and cvs slime and
so did for a long time.

the swank package should be available when slime is operational, so i
have no idea what is different in your config.

maybe common lisp controller?

--

-- 
- attila

"- The truth is that I've been too considerate, and so became
unintentionally cruel...
 - I understand.
 - No, you don't understand! We don't speak the same language!"
(Ingmar Bergman - Smultronstället)
_______________________________________________
bese-devel mailing list
bese-devel <at> common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/bese-devel
Attila Lendvai | 13 Mar 2007 13:26
Picon
Gravatar

Fwd: arnesi patches

dear list,

i've received this mail directly, but i don't feel authoritive to
apply all of them myself, so here it is forwarded. (except the csv
fix, i've pushed it already)

- attila

---------- Forwarded message ----------
From: Kilian Sprotte <kilian.sprotte <at> googlemail.com>
Date: Mar 1, 2007 5:34 PM
Subject: arnesi patches
To: Attila Lendvai <attila.lendvai <at> gmail.com>

Hi Attila,

can I asked you to push the following patches?
They result from a cleaning up process of my local branch....

arnesi.patch contains everything, but basically it concerns three
different things:

* csv.patch adds a few testcases and one that is fixed by the changes
to parse-csv-string
(double quoting like in 1,2,3,"hallo""" was not parsed correctly, but
would be printed like that)

* disjoin.patch just adds one new function

* matcher.patch makes some small changes and adds a load-time-value
(Continue reading)

Jonathon McKitrick | 13 Mar 2007 19:08

Re: Getting arnesi to load


On Tue, March 13, 2007 7:26 am, Attila Lendvai said:
>> what's the most direct way to get arnesi to load into slime without
>> complaining that it can't find :swank package?
>>
>> I'm running sbcl 1.0.3, and I just got arnesi_dev from darcs today.
>
> that's strange, it works fine here with the cvs sbcl and cvs slime and
> so did for a long time.
>
> the swank package should be available when slime is operational, so i
> have no idea what is different in your config.
>
> maybe common lisp controller?

I'm not sure.  I don't use the common lisp controller.  I'm running on an
Intel Mac, and I have all my packages installed in .sbcl/site and systems.

Is there another way to get arnesi to load swank?  Like I said, I'm
loading it from SLIME, so it's obviously there.

--

-- 
Jonathon McKitrick
Reed Larkey Group
Daniel Janus | 13 Mar 2007 19:14

Re: Getting arnesi to load

On Tuesday 13 of March 2007 19:08, Jonathon McKitrick wrote:

> Is there another way to get arnesi to load swank?  Like I said, I'm
> loading it from SLIME, so it's obviously there.

Are you loading arnesi via ASDF?  If so, you want your swank.asd (or at least 
a symlink to it) be visible on one of the paths in ASDF:*CENTRAL-REGISTRY*.  
I usually have one directory containing symlinks to all my .asd's, and I push
that onto the central registry, and everything works fine.

--

-- 
(with-best-regards '(Daniel Janus)
   :of 'Sentivision)
Jonathon McKitrick | 13 Mar 2007 22:02

Re: Getting arnesi to load


On Tue, March 13, 2007 2:14 pm, Daniel Janus said:
> Are you loading arnesi via ASDF?  If so, you want your swank.asd (or at
> least
> a symlink to it) be visible on one of the paths in
> ASDF:*CENTRAL-REGISTRY*.
> I usually have one directory containing symlinks to all my .asd's, and I
> push
> that onto the central registry, and everything works fine.

Thank you!  That solves the problem.  Perhaps the documentation should
have a note near the beginning that it is necessary to add a link to
swank.asd in the systems directory even if you have slime installed and
working.

--

-- 
Jonathon McKitrick
Reed Larkey Group
Marco Baringer | 14 Mar 2007 06:00

New patches to arnesi_dev: 13-Mar-2007


Wed Feb 28 11:32:22 EST 2007  kilian.sprotte <at> gmail.com
  * fixed test csv.2

    M ./src/csv.lisp -1 +7
    M ./t/csv.lisp -1 +4

Wed Feb 28 10:57:17 EST 2007  kilian.sprotte <at> gmail.com
  * added test-suite :it.bese.arnesi.csv; csv.2 fails

    M ./arnesi.asd +1
    A ./t/csv.lisp

An updated tarball of arnesi_dev's source can be downloaded here:
http://common-lisp.net/project/bese/tarballs/arnesi_dev-20070313.tar.gz

Darcsweb URL:
http://uncommon-web.com/darcsweb/darcsweb.cgi?r=arnesi_dev;a=summary
John Fremlin | 15 Mar 2007 10:56

Patch to allow macrolet to work under with-call/cc

It delays the evaluation of lambda forms making things more
inefficient but allowing macrolet to work on cmucl/sbcl and clisp. It
didn't before because they cannot serialise the lambda functions into
fasl files.

Any comments welcome as I am very new to lisp.

_______________________________________________
bese-devel mailing list
bese-devel <at> common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/bese-devel
Jonathon McKitrick | 20 Mar 2007 17:43

Question about 5am macro design

I have a lisp-related question about the design of the fixtures macro.

I know that macros can have &body as a param, and then 'splice in' those
forms with , <at> body without actually using the symbol BODY in the
macro-calling code.  But what is different about the fixture definition
macro that we have to use (&body) in our own macro?

--

-- 
Jonathon McKitrick
Reed Larkey Group
Marco Baringer | 27 Mar 2007 07:05

New patches to fiveam: 26-Mar-2007


Sat Mar 24 11:43:10 EST 2007  Marco Baringer <mb <at> bese.it>
  * Added def-suite* macro

    M ./src/suite.lisp +5

Fri Mar 23 14:59:18 EST 2007  Marco Baringer <mb <at> bese.it>
  * Drop spurious newline

    M ./src/packages.lisp -1

Fri Mar 23 14:56:25 EST 2007  Marco Baringer <mb <at> bese.it>
  * Added :default-test-args parameter to def-suite.

    M ./src/classes.lisp -1 +5
    M ./src/packages.lisp +1
    M ./src/suite.lisp -8 +13
    M ./src/test.lisp -36 +37
    M ./t/tests.lisp -2 +7

Fri Mar 23 14:41:33 EST 2007  Marco Baringer <mb <at> bese.it>
  * Added :fixture argument to TEST macro

    M ./src/test.lisp -11 +20

An updated tarball of fiveam's source can be downloaded here:
http://common-lisp.net/project/bese/tarballs/fiveam-20070326.tar.gz

Darcsweb URL:
http://uncommon-web.com/darcsweb/darcsweb.cgi?r=fiveam;a=summary
(Continue reading)


Gmane