From albert.schlef at gmail.com Tue Jun 9 08:00:27 2009 From: albert.schlef at gmail.com (Albert Schlef) Date: Tue, 09 Jun 2009 11:00:27 +0300 Subject: [cl-wiki-devel] A problem installing cl-wiki Message-ID: [I'm a Common Lisp newbie.] I want to install cl-wiki (Ubuntu, SBCL). So I do: (asdf-install:install :cl-wiki) ...and a bit later, during compilation, I get an error message telling me that a certain file, ".../cl-wiki-0.3.2/wiki.lisp", is accessing a non-existing package, TBNL-MP. So I install "tbnl": (asdf-install:install :tbnl) ...and get an error message telling me "TBNL is a nickname for the package HUNCHENTOOT" . Great. But package HUNCHENTOOT, which I have installed, doesn't seem to declare any tbnl-mp package. It seems like an "egg and hen" problem. What do I do? From sscholl at common-lisp.net Wed Jun 10 18:50:34 2009 From: sscholl at common-lisp.net (Stefan Scholl) Date: Wed, 10 Jun 2009 20:50:34 +0200 Subject: [cl-wiki-devel] A problem installing cl-wiki In-Reply-To: References: Message-ID: <20090610185034.GI8678@parsec.no-spoon.de> On 2009-06-09 11:00:27, Albert Schlef wrote: > I want to install cl-wiki (Ubuntu, SBCL). So I do: > > (asdf-install:install :cl-wiki) > > ...and a bit later, during compilation, I get an error message telling me > that a certain file, ".../cl-wiki-0.3.2/wiki.lisp", is accessing a > non-existing package, TBNL-MP. Seems like the Hunchentoot project made some changes that broke it. I'll add something on CL-WIKI's project page like "Doesn't work with current version of Hunchentoot." some time later. I removed the package link on the CLiki page http://www.cliki.net/CL-WIKI > It seems like an "egg and hen" problem. What do I do? Nothing much left. This project is looking for a maintainer to take over. From kevin at cavewallarts.com Wed Jun 10 22:47:08 2009 From: kevin at cavewallarts.com (Kevin Griffin) Date: Wed, 10 Jun 2009 15:47:08 -0700 Subject: [cl-wiki-devel] A problem installing cl-wiki In-Reply-To: References: Message-ID: <4A3037EC.9050103@cavewallarts.com> Albert Schlef wrote: > ...and a bit later, during compilation, I get an error message telling me > that a certain file, ".../cl-wiki-0.3.2/wiki.lisp", is accessing a > non-existing package, TBNL-MP. > > Thank you for pointing this out! an (apropos "make-lock") shows that this function has, in fact, moved from tbnl-mp to hunchentoot. If you try to specify that, one gets a warning that make-lock is not external to hunchentoot. So I replaced all instances of tbnl-mp (in wiki.lisp) with nothing. The next problem is the syntax of the start-server and stop-server functions. I'm working on it. Kevin Again, thank you for trying this out and noticing the things are busted! >