00:46:47 sellout [n=greg@c-24-128-50-176.hsd1.ma.comcast.net] has joined #ccl 00:47:09 -!- sellout is now known as Guest50114 00:51:29 -!- Guest50114 is now known as sellout 01:25:16 mdc_mobile [n=mdc_mobi@ds9.entity.com] has joined #ccl 02:44:38 -!- pem_ is now known as pem 02:46:14 -!- pem [n=pem@159.226.35.246] has left #ccl 02:58:59 Modius [n=Modius@ppp-70-129-200-84.dsl.austtx.swbell.net] has joined #ccl 03:21:36 gbyers [n=gbyers@c-68-35-15-143.hsd1.nm.comcast.net] has joined #ccl 03:29:21 CyAC_fuqsuk [n=CyAC_fuq@203.141.155.36.static.zoot.jp] has joined #ccl 04:02:09 -!- CyAC_fuqsuk [n=CyAC_fuq@203.141.155.36.static.zoot.jp] has quit ["Leaving..."] 08:37:13 -!- Modius [n=Modius@ppp-70-129-200-84.dsl.austtx.swbell.net] has quit [Read error: 110 (Connection timed out)] 09:52:01 alms_ [n=alms@209-150-48-250.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has joined #ccl 10:00:13 -!- alms [n=alms@209.150.48.250] has quit [Read error: 145 (Connection timed out)] 10:28:37 Modius [n=Modius@adsl-66-143-164-171.dsl.austtx.swbell.net] has joined #ccl 11:56:28 pem [n=pem@159.226.35.246] has joined #ccl 12:42:53 -!- alms_ [n=alms@209-150-48-250.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has quit [] 14:18:33 alms [n=alms@static-72-85-235-154.bstnma.east.verizon.net] has joined #ccl 14:48:29 vatic [n=vatic@pool-162-83-233-2.ny5030.east.verizon.net] has joined #ccl 14:52:01 -!- alms [n=alms@static-72-85-235-154.bstnma.east.verizon.net] has quit [] 14:52:48 Hi- I'm a newbie to ccl and common lisp. I was able to successfully install Albert via asdf, but when I "require 'albert", ccl can't find the modules. I assume I need to add something (like ~/.asdf-install-dir/systems") to *module-search-path*, but I'm having trouble figuring out to do/say such a thing. 14:56:40 The usual incantation is something like: 14:56:42 (pushnew (truename (merge-pathnames path *source-directory*)) asdf:*central-registry*) 14:56:46 (asdf:oos 'asdf:load-op system) 14:56:55 Where system would be :albert in your case 14:57:21 After (require "asdf"), of course 14:58:06 Assuming there's an "albert.asd" file 14:58:34 It's the directory contains "albert.asd" that you want to push on asdf:*central-registry*& 14:58:43 "&" was a typo 14:58:54 vatic? 14:59:07 billstclair: thanks! Let me fiddle around with that a bit and see... 14:59:12 k 15:01:24 billstclair: one thing you're implying here is that I need to read the asdf documentation, right? 15:01:39 I've never bothered with that. Those two forms manage to load most systems 15:01:55 billstclair: ok 15:02:21 Add the dir to *central-registry* and (asdf:oos 'asdf:load-op ...) 15:02:51 Wy there isn't just an (asdf:load ...), I don't know 15:03:26 Actually, there is, but it appears to be a function to load one file 15:04:44 There is some way of getting REQUIRE and one or both of ASDF/ASDF-INSTALL integrated, but I seldom use ASDF and don't remember what it is. 15:07:30 billstclair: so it's "home:.asdf-install-dir;systems;" that I want to substitute for "path *source-directory*" above? 15:07:59 Don't know. Never used asdf-install. 15:08:13 billstclair: Ah! ;-) 15:08:38 I've seen references to it and told myself I should learn about it, but I never have. 15:17:24 milanj [n=milan@93.86.112.17] has joined #ccl 15:52:05 rme [n=rme@pool-70-105-91-64.chi.dsl-w.verizon.net] has joined #ccl 15:54:39 billstclair: Looks like: 15:54:41 (require :asdf) 15:54:51 (pushnew "~/.asdf-install-dir/systems/" asdf:*central-registry* :test #'equal) 15:55:02 (asdf:operate 'asdf:load-op :albert) 15:55:24 Ooh. I didn't know you didn't have to push the albert directory itself 15:55:38 does the trick, but now I'm having difficulties with the CWD (I think) in the ccl-listener. 15:56:13 billstclair: "~/.asdf-install-dir/systems/" is the "personal" install directory that ASDF uses. 15:56:31 I know. But it has an "albert" sub-directory, doesn't it? 15:56:44 so you're just pushing that path onto the *central-registry* 15:57:27 No. There's an "albert.asd" in "~/.asdf-install-dir/systems/". Actually a symlink. 15:57:40 OK. So that makes sense 15:57:44 SO that would work for all asdf packages. 15:58:13 It should work for all packages installed with asdf-install 15:58:14 After all this (provisionally) you don't need to require :albert 15:58:21 right 15:58:23 yup 15:58:48 Note that putting "~" in a pathname isn't portable 15:59:00 billstclair: do you know how to change the current working directory inthe ccl listener IDE? 15:59:05 thanks re: ~ 15:59:09 Not off the top of my head 15:59:28 billstclair: ok, I'll move to the terminal version then... 15:59:37 billstclair: thanks again for your help! 15:59:47 You're most welcome. Glad you figured it out. 15:59:49 Have to run... 16:00:02 ? :cd "~? 16:00:09 -!- Modius [n=Modius@adsl-66-143-164-171.dsl.austtx.swbell.net] has quit [Read error: 104 (Connection reset by peer)] 16:00:28 -> #P"/Users/gb" 16:00:30 Modius [n=Modius@adsl-66-143-164-171.dsl.austtx.swbell.net] has joined #ccl 16:00:30 I'm currently using Slime for all my CCL work. It's all in Linux, so the IDE isn't applicable 16:00:56 gbye 16:01:09 bye vatic 16:01:23 gbyers: Thanks. I couldn't find that in the ccl documentation for some reason. 16:01:50 I think that it's there (think I saw it recently). Not IDE-specific. 16:02:20 Thanks again both of you! Bye... 16:02:29 -!- vatic [n=vatic@pool-162-83-233-2.ny5030.east.verizon.net] has quit [">poof<"] 17:28:04 alms [n=alms@static-72-85-235-154.bstnma.east.verizon.net] has joined #ccl 18:59:50 -!- Modius [n=Modius@adsl-66-143-164-171.dsl.austtx.swbell.net] has quit [Read error: 110 (Connection timed out)] 19:12:34 -!- alms [n=alms@static-72-85-235-154.bstnma.east.verizon.net] has quit [] 19:31:07 anRch [n=markmill@m145a36d0.tmodns.net] has joined #ccl 19:42:48 -!- lichtblau [n=user@port-212-202-18-15.dynamic.qsc.de] has quit [Read error: 104 (Connection reset by peer)] 19:43:52 lichtblau [n=user@port-212-202-18-15.dynamic.qsc.de] has joined #ccl 19:57:13 alms [n=alms@209-150-48-250.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has joined #ccl 20:28:49 -!- anRch [n=markmill@m145a36d0.tmodns.net] has quit [] 22:03:22 -!- milanj [n=milan@93.86.112.17] has quit ["Leaving"] 22:40:35 -!- billstclair [n=billstcl@unaffiliated/billstclair] has quit [] 23:57:43 billstclair [n=billstcl@dsl-67-158-180-148.taconic.net] has joined #ccl