From elliottslaughter at gmail.com Fri Oct 26 20:58:36 2007 From: elliottslaughter at gmail.com (Elliott Slaughter) Date: Fri, 26 Oct 2007 13:58:36 -0700 Subject: [cl-store-devel] Installing CL-STORE on Windows using Clisp Message-ID: <42c0ab790710261358y5131ce58v9e36588b9121a523@mail.gmail.com> I am attempting to install CL-STORE on Windows XP using Clisp 2.42 (MinGW). I had some trouble getting asdf-install to work properly, so I just unzipped the tar file of the latest version (0.7.2) into my adsf central registry and loaded it with (asdf:oos 'asdf:load-op :cl-store)... It seems to work, at the least the following test code worked properly (this is in emacs using slime and clisp): CL-USER> (setf a '(example (another list) (integers 1 2 3) (ratios 1/2 3/4) (floats 1.0 3.14159) (strings "hello" "world") etc)) (EXAMPLE (ANOTHER LIST) (INTEGERS 1 2 3) (RATIOS 1/2 3/4) (FLOATS 1.0 3.14159) (STRINGS "hello" "world") ETC) CL-USER> (cl-store:store a "test.out") (EXAMPLE (ANOTHER LIST) (INTEGERS 1 2 3) (RATIOS 1/2 3/4) (FLOATS 1.0 3.14159) (STRINGS "hello" "world") ETC) CL-USER> (let ((val (cl-store:restore "test.out"))) val) (EXAMPLE (ANOTHER LIST) (INTEGERS 1 2 3) (RATIOS 1/2 3/4) (FLOATS 1.0 3.14159) (STRINGS "hello" "world") ETC) So thats just fine, but I tried running the regression tests for CL-STORE and they failed. When I typed (asdf:oos 'asdf:test-op :cl-store) I got: component CL-STORE.SYSTEM::RT not found, required by #1=# [Condition of type ASDF:MISSING-DEPENDENCY] I don't know if my system is working properly or not... since I didn't go through the normal asdf-install methods, I don't know if there are other dependencies I didn't satisfy... and I don't know if the tests are that important or not. Thank you for your assistance. -- Elliott Slaughter "Any road followed precisely to its end leads precisely nowhere." - Frank Herbert -------------- next part -------------- An HTML attachment was scrubbed... URL: From rosssd at gmail.com Sat Oct 27 23:56:37 2007 From: rosssd at gmail.com (Sean Ross) Date: Sun, 28 Oct 2007 00:56:37 +0100 Subject: [cl-store-devel] Installing CL-STORE on Windows using Clisp In-Reply-To: <42c0ab790710261358y5131ce58v9e36588b9121a523@mail.gmail.com> References: <42c0ab790710261358y5131ce58v9e36588b9121a523@mail.gmail.com> Message-ID: <5bef28df0710271656j50f88a61wedeb7c66f283f1c3@mail.gmail.com> On 10/26/07, Elliott Slaughter I don't know if my system is working properly or not... since I didn't go > through the normal asdf-install methods, I don't know if there are other > dependencies I didn't satisfy... and I don't know if the tests are that > important or not. Hi Elliott, In order to run the tests for cl-store you will have to have the RT package available (which can be asdf-installed) which is required by cl-store-tests. Cheers, Sean. From elliottslaughter at gmail.com Mon Oct 29 18:40:45 2007 From: elliottslaughter at gmail.com (Elliott Slaughter) Date: Mon, 29 Oct 2007 11:40:45 -0700 Subject: [cl-store-devel] Installing CL-STORE on Windows using Clisp In-Reply-To: <5bef28df0710271656j50f88a61wedeb7c66f283f1c3@mail.gmail.com> References: <42c0ab790710261358y5131ce58v9e36588b9121a523@mail.gmail.com> <5bef28df0710271656j50f88a61wedeb7c66f283f1c3@mail.gmail.com> Message-ID: <42c0ab790710291140v28034d7es80489d8a893feeb6@mail.gmail.com> I installed RT and ran (asdf:oos 'asdf:test-op :cl-store) again and got the following error: ;; Compiling file C:\Program Files\clisp-2.42\asdf\cl-store\tests.lisp ... READ from #1=#: label #1= may not be defined twice Again, thanks your time. On 10/27/07, Sean Ross wrote: > > On 10/26/07, Elliott Slaughter > I don't know if my system is working properly or not... since I didn't > go > > through the normal asdf-install methods, I don't know if there are other > > dependencies I didn't satisfy... and I don't know if the tests are that > > important or not. > > > Hi Elliott, > In order to run the tests for cl-store you will have to have the RT > package available (which can be asdf-installed) which is required by > cl-store-tests. > > Cheers, > Sean. > -- Elliott Slaughter "Any road followed precisely to its end leads precisely nowhere." - Frank Herbert -------------- next part -------------- An HTML attachment was scrubbed... URL: From rosssd at gmail.com Tue Oct 30 16:20:56 2007 From: rosssd at gmail.com (Sean Ross) Date: Tue, 30 Oct 2007 16:20:56 +0000 Subject: [cl-store-devel] Installing CL-STORE on Windows using Clisp In-Reply-To: <42c0ab790710291140v28034d7es80489d8a893feeb6@mail.gmail.com> References: <42c0ab790710261358y5131ce58v9e36588b9121a523@mail.gmail.com> <5bef28df0710271656j50f88a61wedeb7c66f283f1c3@mail.gmail.com> <42c0ab790710291140v28034d7es80489d8a893feeb6@mail.gmail.com> Message-ID: <5bef28df0710300920u4b4e4e53m1a0e9d1696e29427@mail.gmail.com> On 10/29/07, Elliott Slaughter wrote: > I installed RT and ran (asdf:oos 'asdf:test-op :cl-store) again and got the > following error: > > ;; Compiling file C:\Program Files\clisp-2.42\asdf\cl-store\tests.lisp ... > READ from #1=# Files\\clisp- 2.42\\asdf\\cl-store\\tests > .lisp" @537>: label #1= may not be defined twice It appears that this is an issue with clisp, i've just uploaded a new version (0.8) which removes the offending comment (along with many other changes) Please try asdf-installing the package again. Sean. From elliottslaughter at gmail.com Tue Oct 30 17:07:49 2007 From: elliottslaughter at gmail.com (Elliott Slaughter) Date: Tue, 30 Oct 2007 10:07:49 -0700 Subject: [cl-store-devel] Installing CL-STORE on Windows using Clisp In-Reply-To: <5bef28df0710300920u4b4e4e53m1a0e9d1696e29427@mail.gmail.com> References: <42c0ab790710261358y5131ce58v9e36588b9121a523@mail.gmail.com> <5bef28df0710271656j50f88a61wedeb7c66f283f1c3@mail.gmail.com> <42c0ab790710291140v28034d7es80489d8a893feeb6@mail.gmail.com> <5bef28df0710300920u4b4e4e53m1a0e9d1696e29427@mail.gmail.com> Message-ID: <42c0ab790710301007x56b8e0f4t9b1b76eeae11c45e@mail.gmail.com> Great, thanks. All the tests ran correctly on Clisp. On 10/30/07, Sean Ross wrote: > > On 10/29/07, Elliott Slaughter wrote: > > I installed RT and ran (asdf:oos 'asdf:test-op :cl-store) again and got > the > > following error: > > > > ;; Compiling file C:\Program Files\clisp-2.42\asdf\cl-store\tests.lisp... > > READ from #1=# > Files\\clisp- 2.42\\asdf\\cl-store\\tests > > .lisp" @537>: label #1= may not be defined twice > > > It appears that this is an issue with clisp, i've just uploaded a new > version (0.8) which removes the offending comment (along with many > other changes) > > Please try asdf-installing the package again. > > Sean. > -- Elliott Slaughter "Any road followed precisely to its end leads precisely nowhere." - Frank Herbert -------------- next part -------------- An HTML attachment was scrubbed... URL: