From angelpopov at yahoo.com Sun Jul 19 21:19:34 2009 From: angelpopov at yahoo.com (Angel Popov) Date: Sun, 19 Jul 2009 14:19:34 -0700 (PDT) Subject: [asdf-install-devel] Darcs repo and latest asdf-install Message-ID: <66935.87046.qm@web33204.mail.mud.yahoo.com> Hi, I have tried to download the latest asdf-install using darcs as it is on page http://common-lisp.net/project/asdf-install/ - darcs get http://common-lisp.net/project/asdf-install but it gives me darcs failed: Failed to download URL http://common-lisp.net/project/asdf-install/_darcs/inventory : HTTP error (404?) Can you point me at what I am doing wrong? Regards, AngelP From angelpopov at yahoo.com Sun Jul 19 21:14:33 2009 From: angelpopov at yahoo.com (Angel Popov) Date: Sun, 19 Jul 2009 14:14:33 -0700 (PDT) Subject: [asdf-install-devel] Wrong link to asdf Message-ID: <931289.12145.qm@web33205.mail.mud.yahoo.com> Hi, It looks that in page with prerequisites - http://common-lisp.net/project/asdf-install/tutorial/setup.html, link Download ASDF points to asdf-install . From gwking at metabang.com Mon Jul 20 13:44:42 2009 From: gwking at metabang.com (Gary King) Date: Mon, 20 Jul 2009 09:44:42 -0400 Subject: [asdf-install-devel] Wrong link to asdf In-Reply-To: <931289.12145.qm@web33205.mail.mud.yahoo.com> References: <931289.12145.qm@web33205.mail.mud.yahoo.com> Message-ID: <39A55A9E-F2C3-4EC7-B5F9-699FE06B0464@metabang.com> Hi Angle, > It looks that in page with prerequisites - http://common-lisp.net/project/asdf-install/tutorial/setup.html > , link Download ASDF points to asdf-install > . Right you were; I've fixed the link. Thanks, -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM * gwking on twitter From angelpopov at yahoo.com Mon Jul 20 14:03:32 2009 From: angelpopov at yahoo.com (Angel Popov) Date: Mon, 20 Jul 2009 07:03:32 -0700 (PDT) Subject: [asdf-install-devel] asdf-install on clisp and :win32 Message-ID: <765358.9447.qm@web33205.mail.mud.yahoo.com> Hi I have installed native clisp. Following the tutorial get to (asdf-install:install there was a problem. After consultation with c.l.l http://groups.google.com/group/comp.lang.lisp/browse_thread/thread/fb03db7f0b58ba38/2dde6c5236497d4c?lnk=gst&q=asdf-installing#2dde6c5236497d4c It looks, there is a typo in port.lisp - Here is the original code: #+(and :clisp :win32) (defun return-output-from-program (program args) (with-output-to-string (out-stream) (let ((stream (ext:run-shell-command (format nil "~A~{ ~A~}" program args :output :stream :wait nil)))) (loop for line = (ignore-errors (read-line stream nil)) while line do (write-line line out-stream))))) There is misplaced bracket. If I move the bracket, asdf-install works fine. Regards, AngelP From gwking at metabang.com Mon Jul 20 13:11:48 2009 From: gwking at metabang.com (Gary King) Date: Mon, 20 Jul 2009 09:11:48 -0400 Subject: [asdf-install-devel] Darcs repo and latest asdf-install In-Reply-To: <66935.87046.qm@web33204.mail.mud.yahoo.com> References: <66935.87046.qm@web33204.mail.mud.yahoo.com> Message-ID: Hi Angel, Embarrassingly enough, there was a problem with the symbolic-link. This is now fixed. Thanks for letting me know and please let me know if you have any other questions. On Jul 19, 2009, at 5:19 PM, Angel Popov wrote: > > Hi, I have tried to download the latest asdf-install using darcs as > it is on page http://common-lisp.net/project/asdf-install/ - > > darcs get http://common-lisp.net/project/asdf-install > but it gives me > darcs failed: Failed to download URL http://common-lisp.net/project/asdf-install/_darcs/inventory > : HTTP error (404?) > > Can you point me at what I am doing wrong? > > Regards, AngelP > > > > > > _______________________________________________ > asdf-install-devel mailing list > asdf-install-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-install-devel -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM * gwking on twitter From gwking at metabang.com Tue Jul 21 17:13:53 2009 From: gwking at metabang.com (Gary King) Date: Tue, 21 Jul 2009 13:13:53 -0400 Subject: [asdf-install-devel] ASDF-install and CL-Yacc: wrong system name In-Reply-To: <7iiqmbnjmn.fsf@lanthane.pps.jussieu.fr> References: <7iiqmbnjmn.fsf@lanthane.pps.jussieu.fr> Message-ID: <16B2A9B5-9041-46DE-9DB0-B1D9ABAE1601@metabang.com> Hi Juliusz, (firstly, my apologies for losing track of your e-mail in limbo for so long...). Secondly, ASDF-Install used to load all of the system defs that came in a tarball. This caused problems because sometimes those system-defs were meant for specific OSes or architectures and so caused errors. Therefore, ASDF-install change to loading only the system def that it thought it was supposed to be finding (via the canonical name). This, as you point one, breaks CL-Yacc. One heuristic solution would be for ASDF-install handle the case where it cannot find the canonical system by then loading any other system defs. This would handle your case and, I think, be simpler than trying to add a new metafile). Unless you disagree, I'll make this change in ASDF-Install shortly. On Mar 15, 2009, at 6:52 AM, Juliusz Chroboczek wrote: > Hi, > > I'm the author of CL-Yacc, which is ASDF-installable. Or at least > used to > be. > > CL-Yacc lives in a tarball called cl-yacc-0.3.tar.gz. It also lives > in > a Debian package called cl-yacc. > > Since the ``cl-'' prefix makes no sense in a system name, the system > it > defines is called ``yacc'' and lives in a file called ``yacc.asd''. > This > is fine for Debian's Common Lisp stuff. > > OTOH, recent versions of ASDF-Install complain that they cannot find > the > ``cl-yacc'' system. I'm not going to rename the system, since that > would > break my users' code, and I'm not going to include two systems, as > that > would cause useless confusion. > > I can see two solutions: > > 1. ASDF-Install could strip the ``cl-'' prefix when searching for a > system; > 2. there could be a way for the package author (me) to specify the > actual > system name in a metadata file. > > Either would be fine with me, as long as people stop e-mailing me > with the > problem. > > Juliusz > > _______________________________________________ > asdf-install-devel mailing list > asdf-install-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-install-devel -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM * gwking on twitter From gwking at metabang.com Tue Jul 21 17:33:15 2009 From: gwking at metabang.com (Gary King) Date: Tue, 21 Jul 2009 13:33:15 -0400 Subject: [asdf-install-devel] Gracefully degrade in case of missing .asc In-Reply-To: <8C4613CF-30BE-4557-90D6-B3A8B95734CD@csail.mit.edu> References: <8C4613CF-30BE-4557-90D6-B3A8B95734CD@csail.mit.edu> Message-ID: <4C1869AA-BF30-4F2A-94A5-C72EA42E6B2F@metabang.com> Hi Jeff, This sounds like a great idea. Thanks! My apologies for losing track of it in mailman limbo for so long. I will commit shortly. On Jun 8, 2009, at 5:23 PM, Jeff Palmucci wrote: > Hi. > > I've written a small patch so that asdf-install falls into the > "install-anyway" restart rather than dying with a 404 if the .asc > signature is not on the server. > > The current error message was confusing (at least to me). > > Thanks. > > > _______________________________________________ > asdf-install-devel mailing list > asdf-install-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-install-devel -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM * gwking on twitter From gwking at metabang.com Wed Jul 22 02:24:29 2009 From: gwking at metabang.com (Gary King) Date: Tue, 21 Jul 2009 22:24:29 -0400 Subject: [asdf-install-devel] asdf-install on clisp and :win32 In-Reply-To: <765358.9447.qm@web33205.mail.mud.yahoo.com> References: <765358.9447.qm@web33205.mail.mud.yahoo.com> Message-ID: Hi Angel, Thanks for this report; I'm looking into updating ASDF-install with the fix soon. On Jul 20, 2009, at 10:03 AM, Angel Popov wrote: > > Hi > I have installed native clisp. Following the tutorial get to (asdf- > install:install there was a problem. After consultation with c.l.l http://groups.google.com/group/comp.lang.lisp/browse_thread/thread/fb03db7f0b58ba38/2dde6c5236497d4c?lnk=gst&q=asdf-installing#2dde6c5236497d4c > > It looks, there is a typo in port.lisp - > Here is the original code: > > #+(and :clisp :win32) > (defun return-output-from-program (program args) > (with-output-to-string (out-stream) > (let ((stream > (ext:run-shell-command > (format nil "~A~{ ~A~}" program args > :output :stream > :wait nil)))) > (loop for line = (ignore-errors (read-line stream nil)) > while line > do (write-line line out-stream))))) > > There is misplaced bracket. If I move the bracket, > asdf-install works fine. > > Regards, AngelP > > > > > _______________________________________________ > asdf-install-devel mailing list > asdf-install-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-install-devel -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM * gwking on twitter