From rayiner at gmail.com Sat Aug 6 08:25:34 2005 From: rayiner at gmail.com (Rayiner Hashem) Date: Sat, 6 Aug 2005 04:25:34 -0400 Subject: [fetter-devel] Fetter Update #2 Message-ID: Many points: 1) Project name is changed! The project is now called "Verrazano", after the bridge into Staten Island, New York. Kenny seemed to like the bridge motif, so this is what I came up with :) 2) Project web-page is up. http://common-lisp.net/project/fetter. 3) Sources are now in CVS. http://common-lisp.net/cgi-bin/viewcvs.cgi/?cvsroot=fetter 4) The front-end has been refactored and should be more correct. More importantly, it'll be easier to maintain in the coming weeks as I work on C++ support. A couple of new simplification passes have also been added to make the back-end easier to write. 5) The back-end is in the repository. It's a bit sparse right now, it handles functions and types. Tomorrow, I'll add structs, enums, and typedefs. It should be fairly quick work. On Sunday, I'll put together a little demo app, probably using Cairo. 6) I'd like to announce the project on comp.lang.lisp (and send personal e-mails to the people you mentioned, Kenny) on Monday. I think its at a point now where I can usefully respond to any feedback I get. 7) C++ support is next. I'll be updating the design document with a more detailed C++ game plan on Monday. Time is getting a bit short, but I've also got much more time to work on the project than I did in July. I'm figuring around Aug. 20 for usable C++ support. We'll see how that goes :) Sincerely, Rayiner Hashem From rayiner at gmail.com Mon Aug 8 23:09:31 2005 From: rayiner at gmail.com (Rayiner Hashem) Date: Mon, 8 Aug 2005 19:09:31 -0400 Subject: [fetter-devel] Progress Report for Week of Aug 1 Message-ID: This week I: 1) Refactored the front-end to be more correct. As far as I can tell, this component is pretty solid now, and successfully parsers a number of interesting header files properly. 2) Added some new transforms like dependency-sorting the output. Hopefully, C-FFI is less restrictive than UFFI in this regard. For example, I can't figure out how to declare structs that refer to each other (through pointers). It has a special case for self-referencing structs, but nothing general. Luis, how does C-FFI handle this? In my ideal little world, FFI declarations would be like defun's, and not dependent on declaration order. Functional Developer's FFI works this way. Maybe that's too much to ask for :) 3) Worked on a Cairo example. It's a bit more complicated than I thought, since I've got to deal with X too for an interesting demo. Life is kind of hard without callbacks... 4) Promotional work. Put up website, checked code into CVS, posted message on c.l.l Sincerely, Rayiner Hashem From luismbo at gmail.com Tue Aug 9 23:36:38 2005 From: luismbo at gmail.com (Luis Oliveira) Date: Wed, 10 Aug 2005 00:36:38 +0100 Subject: [fetter-devel] Re: Progress Report for Week of Aug 1 In-Reply-To: References: Message-ID: <8a76eacf47bd8f461f4a46d3752016f8@gmail.com> On 9/ago/2005, at 00:09, Rayiner Hashem wrote: > 2) Added some new transforms like dependency-sorting the output. > Hopefully, C-FFI is less restrictive than UFFI in this regard. For > example, I can't figure out how to declare structs that refer to each > other (through pointers). It has a special case for self-referencing > structs, but nothing general. Luis, how does C-FFI handle this? In my > ideal little world, FFI declarations would be like defun's, and not > dependent on declaration order. Functional Developer's FFI works this > way. Maybe that's too much to ask for :) CFFI doesn't have typed pointers yet, so.. you just declare it as a general pointer. That'll change soon, stay tuned. ;-) -- Lu?s Oliveira http://student.dei.uc.pt/~lmoliv/ Equipa Portuguesa do Translation Project http://www2.iro.umontreal.ca/~pinard/po/registry.cgi?team=pt From rayiner at gmail.com Mon Aug 15 00:25:55 2005 From: rayiner at gmail.com (Rayiner Hashem) Date: Sun, 14 Aug 2005 20:25:55 -0400 Subject: [fetter-devel] C-FFI backend, Cairo demo Message-ID: I've commited a C-FFI backend to CVS, along with a Cairo demo application using the C-FFI backend. I've added instructions to the webpage showing how to run the demo. I punted on wrapping all of xlib and used Cairo's PDF backend instead. The C-FFI backend is fairly complete. Structures, functions, enums, etc, are all there. What isn't supported is global variables, but the C-FFI documentation doesn't show how to declare those. Luis, does C-FFI support anything like UFFI's DEF-FOREIGN-VAR? Sincerely, Rayiner Hashem From sketerpot at gmail.com Mon Aug 15 01:31:23 2005 From: sketerpot at gmail.com (Peter Scott) Date: Sun, 14 Aug 2005 20:31:23 -0500 Subject: [fetter-devel] C-FFI backend, Cairo demo In-Reply-To: References: Message-ID: <7e267a9205081418311c36656c@mail.gmail.com> On 8/14/05, Rayiner Hashem wrote: > I've commited a C-FFI backend to CVS, along with a Cairo demo > application using the C-FFI backend. I've added instructions to the > webpage showing how to run the demo. I punted on wrapping all of xlib > and used Cairo's PDF backend instead. Is there any chance that you might post the output from the demo (happy.pdf) on the internet somewhere for people to gawk at? I'd do it myself, but I'm stuck on Windows for a while. By the way, congratulations. This is truly amazing stuff. -Peter From luismbo at gmail.com Mon Aug 15 14:17:08 2005 From: luismbo at gmail.com (Luis Oliveira) Date: Mon, 15 Aug 2005 15:17:08 +0100 Subject: [fetter-devel] Re: C-FFI backend, Cairo demo In-Reply-To: References: Message-ID: <1b7a823d1e462df5fbdf31621dd27ade@gmail.com> On 15/ago/2005, at 01:25, Rayiner Hashem wrote: > Luis, does C-FFI support anything like UFFI's DEF-FOREIGN-VAR? Not James' branch, yet. But mine yes. (defcvar name type &key read-only) -- Lu?s Oliveira http://student.dei.uc.pt/~lmoliv/ Equipa Portuguesa do Translation Project http://www2.iro.umontreal.ca/~pinard/po/registry.cgi?team=pt From ktilton at nyc.rr.com Mon Aug 15 16:21:24 2005 From: ktilton at nyc.rr.com (Kenny Tilton) Date: Mon, 15 Aug 2005 12:21:24 -0400 Subject: [fetter-devel] Re: C-FFI backend, Cairo demo In-Reply-To: <1b7a823d1e462df5fbdf31621dd27ade@gmail.com> References: <1b7a823d1e462df5fbdf31621dd27ade@gmail.com> Message-ID: <4300C104.4020306@nyc.rr.com> Now I know why I "missed" Rayiner's original. I set up my mail reader to auto-sort messages into sub-folders. Good idea, if only I could get into the habit of checking those sub-folders for new mail. :) Luis Oliveira wrote: > On 15/ago/2005, at 01:25, Rayiner Hashem wrote: > >> Luis, does C-FFI support anything like UFFI's DEF-FOREIGN-VAR? > Rayiner, did you use James's or Luis's branch when developing your latest release? I will guess James's based on this. > > Not James' branch, yet. But mine yes. [And while I am being an obnoxious Lisp English language chauvinist, see above for a hint at a grammar rule not known even to most native English speakers. The "no trailing 's'" rule is for /plurals/ ending in 's'.] > > > (defcvar name type &key read-only) > This is getting pretty exciting. The two of you are headed straight for the Lisp Hall of Fame. But we definitely need the Grand Unification: VZN with CFFI/Luis. I was going to retract that and say it was more important that each project be fully finished by summer's end, but then how does Rayiner test callbacks? Come to think of it, does a C/C++ header even give enough information to automatically generate -- oops. Callback stubs? Or will that always be an exercise for the developer? -- Kenny Why Lisp? http://lisp.tech.coop/RtL%20Highlight%20Film "I've wrestled with reality for 35 years, Doctor, and I'm happy to state I finally won out over it." Elwood P. Dowd, "Harvey", 1950 From luismbo at gmail.com Mon Aug 15 17:23:48 2005 From: luismbo at gmail.com (Luis Oliveira) Date: Mon, 15 Aug 2005 18:23:48 +0100 Subject: [fetter-devel] Re: C-FFI backend, Cairo demo In-Reply-To: <4300C104.4020306@nyc.rr.com> References: <1b7a823d1e462df5fbdf31621dd27ade@gmail.com> <4300C104.4020306@nyc.rr.com> Message-ID: <391f795805081510233578f858@mail.gmail.com> On 8/15/05, Kenny Tilton wrote: > [And while I am being an obnoxious Lisp English language chauvinist, see > above for a hint at a grammar rule not known even to most native English > speakers. The "no trailing 's'" rule is for /plurals/ ending in 's'.] Thanks. But you know, sooner or later when the Chinese take over the world all these weird grammar rules will be a thing the past. :-) > > (defcvar name type &key read-only) > > > This is getting pretty exciting. The two of you are headed straight for > the Lisp Hall of Fame. But we definitely need the Grand Unification: VZN > with CFFI/Luis. Ok, what does that mean exactly? More to the point, what do I have to do to help with that? -- Lu?s Oliveira http://student.dei.uc.pt/~lmoliv/ Equipa Portuguesa do Translation Project http://www2.iro.umontreal.ca/~pinard/po/registry.cgi?team=pt From rayiner at gmail.com Mon Aug 15 21:31:23 2005 From: rayiner at gmail.com (Rayiner Hashem) Date: Mon, 15 Aug 2005 17:31:23 -0400 Subject: [fetter-devel] Cairo output In-Reply-To: References: <7e267a9205081418311c36656c@mail.gmail.com> Message-ID: Forwarded, just in case anybody is interested in pictures :) ---------- Forwarded message ---------- From: Rayiner Hashem Date: Aug 15, 2005 5:29 PM Subject: Re: [fetter-devel] C-FFI backend, Cairo demo To: Peter Scott No problem. I updated the demo a bit to produce both a PDF and a PNG, and posted the output on http://common-lisp.net/project/fetter/. The pictures are in the "Downloads" section. The source code used to produce the output is in CVS, under testsuite/cairo/test.lisp. Sincerely, Rayiner Hashem On 8/14/05, Peter Scott wrote: > On 8/14/05, Rayiner Hashem wrote: > > I've commited a C-FFI backend to CVS, along with a Cairo demo > > application using the C-FFI backend. I've added instructions to the > > webpage showing how to run the demo. I punted on wrapping all of xlib > > and used Cairo's PDF backend instead. > > Is there any chance that you might post the output from the demo > (happy.pdf) on the internet somewhere for people to gawk at? I'd do it > myself, but I'm stuck on Windows for a while. > > By the way, congratulations. This is truly amazing stuff. > > -Peter > From rayiner at gmail.com Mon Aug 15 21:53:41 2005 From: rayiner at gmail.com (Rayiner Hashem) Date: Mon, 15 Aug 2005 17:53:41 -0400 Subject: [fetter-devel] Progress Report for Week of August 8 Message-ID: Accomplished: 1) Wrote C-FFI backend. It handles most interesting things, except defining C variables, which I'll do once I get things running on Luis's branch. 2) Rewrote dependency reordering pass to do things The Right Way. This means using a DFS to calculate the finishing time for each vertex, generating a list of all definition edges in the graph, and sorting the list by finishing time. Being the "Right Way", it doesn't handle C semantics correctly. It doesn't messes up the dependencies for the following case: struct foo {bar* myBar}; struct bar {foo* myFoo}; This is fine for C-FFI, which doesn't have typed pointers, but not for UFFI, which I don't think can handle the situation at all. 3) Wrote a Cairo demo application, updated website with output samples. 4) Boring but necessary prerequisite work for C++ support. Wrote a simplification pass to unnest nested declarations, made sure member functions get handled properly, etc. 5) Started the utility library to handled virtual functions calls into C++ code. 6) Conceptual work on semantics of C++ bindings. Will post outline RSN. To Do: 1) Write simplification pass to promote structures with member functions to class-type IR nodes, and demote classes without member functions to struct-type IR nodes. 2) Make generated code use utility library to do virtual function calls. 3) Emit proper declarations for non-virtual member functions. 4) Get things running on CFFI-Luis. From ktilton at nyc.rr.com Tue Aug 16 00:29:22 2005 From: ktilton at nyc.rr.com (Kenny Tilton) Date: Mon, 15 Aug 2005 20:29:22 -0400 Subject: [fetter-devel] Re: Progress Report for Week of August 8 In-Reply-To: References: Message-ID: <43013362.1080202@nyc.rr.com> Rayiner Hashem wrote: >Accomplished: > >1) Wrote C-FFI backend. It handles most interesting things, except >defining C variables, which I'll do once I get things running on >Luis's branch. > >2) Rewrote dependency reordering pass to do things The Right Way. This >means using a DFS to calculate the finishing time for each vertex, >generating a list of all definition edges in the graph, and sorting >the list by finishing time. Being the "Right Way", it doesn't handle C >semantics correctly. It doesn't messes up the dependencies for the >following case: > >struct foo {bar* myBar}; >struct bar {foo* myFoo}; > >This is fine for C-FFI, which doesn't have typed pointers, but not for >UFFI, which I don't think can handle the situation at all. > I would not worry about UFFI. Even KMR believes a UFFI-2 is needed, and by UFFI-2 he means something not necessarily backward compatible with UFFI. Periodically there is a flurry of activity on the UFFI lists that almost but not quite gets work on UFFI-2 launched. My read is that a good job now on CFFI will make it the successor of UFFI. Verrazano will make it easy to replace any UFFI bindings with CFFI bindings, but if the calling application depends on something in UFFI incompatible with CFFI, of course UFFI lives on a while. Probably those calling packages will get ported to CFFI on their next big release. > >3) Wrote a Cairo demo application, updated website with output samples. > >4) Boring but necessary prerequisite work for C++ support. Wrote a >simplification pass to unnest nested declarations, made sure member >functions get handled properly, etc. > >5) Started the utility library to handled virtual functions calls into C++ code. > >6) Conceptual work on semantics of C++ bindings. Will post outline RSN. > >To Do: > >1) Write simplification pass to promote structures with member >functions to class-type IR nodes, and demote classes without member >functions to struct-type IR nodes. > >2) Make generated code use utility library to do virtual function calls. > >3) Emit proper declarations for non-virtual member functions. > >4) Get things running on CFFI-Luis. > > > > Great work. I look forward to tossing Hello-C and redoing all my Cello bindings. And if we really can get to C++, I will be able to eliminate a whole layer of C glue I used to get to FTGL. (Freetype on OpenGL.) -- Kenny Why Lisp? http://lisp.tech.coop/RtL%20Highlight%20Film "I've wrestled with reality for 35 years, Doctor, and I'm happy to state I finally won out over it." Elwood P. Dowd, "Harvey", 1950 From rayiner at gmail.com Tue Aug 16 00:36:02 2005 From: rayiner at gmail.com (Rayiner Hashem) Date: Mon, 15 Aug 2005 20:36:02 -0400 Subject: [fetter-devel] Re: C-FFI backend, Cairo demo In-Reply-To: References: <1b7a823d1e462df5fbdf31621dd27ade@gmail.com> <4300C104.4020306@nyc.rr.com> <391f795805081510233578f858@mail.gmail.com> Message-ID: Great. That fixed it. Verrazano uses CFFI-Luis now :) On 8/15/05, Luis Oliveira wrote: > On 15/ago/2005, at 23:36, Rayiner Hashem wrote: > > Still doesn't work :( Same error... > > Ahrg, sorry... I didn't have the original code at hand and I forget > another thing I broke... > > (defmacro defcenum (name &body values) > "Define an foreign enumerated type." > `(eval-when (:compile-toplevel :load-toplevel :execute) > (notice-foreign-enum ',name :int ',values) > (define-type-translation ,name nil > :to-c (lambda (arg) `(if (keywordp ,arg) > (foreign-enum-value ',',name ,arg) > ,arg)) > :from-c (lambda (arg) `(foreign-enum-keyword ',',name ,arg))))) > > This time I tested it, seems to work. > > -- > Lu?s Oliveira > http://student.dei.uc.pt/~lmoliv/ > Equipa Portuguesa do Translation Project > http://www2.iro.umontreal.ca/~pinard/po/registry.cgi?team=pt > > From ktilton at nyc.rr.com Tue Aug 16 00:44:18 2005 From: ktilton at nyc.rr.com (Kenny Tilton) Date: Mon, 15 Aug 2005 20:44:18 -0400 Subject: [fetter-devel] Re: C-FFI backend, Cairo demo In-Reply-To: <391f795805081510233578f858@mail.gmail.com> References: <1b7a823d1e462df5fbdf31621dd27ade@gmail.com> <4300C104.4020306@nyc.rr.com> <391f795805081510233578f858@mail.gmail.com> Message-ID: <430136E2.50608@nyc.rr.com> Luis Oliveira wrote: >On 8/15/05, Kenny Tilton wrote: > > >>[And while I am being an obnoxious Lisp English language chauvinist, see >>above for a hint at a grammar rule not known even to most native English >>speakers. The "no trailing 's'" rule is for /plurals/ ending in 's'.] >> >> > >Thanks. But you know, sooner or later when the Chinese take over the >world all these weird grammar rules will be a thing the past. :-) > Hen hao! No verb conjugation at all!! Neither for tense nor for person! > > > > >>>(defcvar name type &key read-only) >>> >>> >>> >>This is getting pretty exciting. The two of you are headed straight for >>the Lisp Hall of Fame. But we definitely need the Grand Unification: VZN >>with CFFI/Luis. >> >> > >Ok, what does that mean exactly? More to the point, what do I have to >do to help with that? > I see a CFFI-Luis backend is on Rayiner's do-list, so... not much more than working with Rayiner to support his effort to generate bindings automatically. Hopefully the C++ trial library Rayiner selects will exercise CFFI fully (ie, include callbacks), so that will let you two make some pretty grand claims by summer's end. :) -- Kenny Why Lisp? http://lisp.tech.coop/RtL%20Highlight%20Film "I've wrestled with reality for 35 years, Doctor, and I'm happy to state I finally won out over it." Elwood P. Dowd, "Harvey", 1950 From pupeno at pupeno.com Fri Aug 19 14:33:07 2005 From: pupeno at pupeno.com (Pupeno) Date: Fri, 19 Aug 2005 11:33:07 -0300 Subject: [fetter-devel] CVS repository Message-ID: <200508191133.32013.pupeno@pupeno.com> Hello, It seem you are doing very interesting stuff here. I wanted it to try it for OpenLDAP (the client libraries libldap). If you know this will fail for sure just tell me and I'll keep my mind busy in other stuff, otherwise I'll try it and see how it goes, maybe doing some feedback. My problem now is accessing the repository with CVS, I tried: $ export CVSROOT=:pserver:anonymous at common-lisp.net:/project/fetter/cvsroot/ $ cvs login Logging in to :pserver:anonymous at common-lisp.net:2401/project/fetter/cvsroot CVS password: Fatal error, aborting. anonymous: no such user $ Did you dissabled anonymous access ? Is this on porpouse ? How can I access it ? Thanks. -- Pupeno (http://pupeno.com) Reading ? Science Fiction ? http://sfreaders.com.ar -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From ktilton at nyc.rr.com Fri Aug 19 19:10:34 2005 From: ktilton at nyc.rr.com (Kenny Tilton) Date: Fri, 19 Aug 2005 15:10:34 -0400 Subject: [fetter-devel] CVS repository In-Reply-To: <200508191133.32013.pupeno@pupeno.com> References: <200508191133.32013.pupeno@pupeno.com> Message-ID: <43062EAA.8070901@nyc.rr.com> I do not know anything on your question about Verrazano being ready for general use, but to get the software you can try the web interface, ViewCVS: http://common-lisp.net/cgi-bin/viewcvs.cgi/verrazano/?cvsroot=fetter It has a nightly tarball you can grab. See the link at the bottom of the page. kt Pupeno wrote: >Hello, >It seem you are doing very interesting stuff here. I wanted it to try it for >OpenLDAP (the client libraries libldap). If you know this will fail for sure >just tell me and I'll keep my mind busy in other stuff, otherwise I'll try it >and see how it goes, maybe doing some feedback. >My problem now is accessing the repository with CVS, I tried: > >$ export CVSROOT=:pserver:anonymous at common-lisp.net:/project/fetter/cvsroot/ >$ cvs login >Logging in to :pserver:anonymous at common-lisp.net:2401/project/fetter/cvsroot >CVS password: >Fatal error, aborting. >anonymous: no such user >$ > >Did you dissabled anonymous access ? Is this on porpouse ? How can I access >it ? >Thanks. > > >------------------------------------------------------------------------ > >_______________________________________________ >fetter-devel mailing list >fetter-devel at common-lisp.net >http://common-lisp.net/cgi-bin/mailman/listinfo/fetter-devel > > -- Kenny Why Lisp? http://lisp.tech.coop/RtL%20Highlight%20Film "I've wrestled with reality for 35 years, Doctor, and I'm happy to state I finally won out over it." Elwood P. Dowd, "Harvey", 1950 From rayiner at gmail.com Fri Aug 19 21:49:32 2005 From: rayiner at gmail.com (Rayiner Hashem) Date: Fri, 19 Aug 2005 17:49:32 -0400 Subject: [fetter-devel] CVS repository In-Reply-To: <43062EAA.8070901@nyc.rr.com> References: <200508191133.32013.pupeno@pupeno.com> <43062EAA.8070901@nyc.rr.com> Message-ID: Anonymous CVS was having some problems earlier, but it should have been fixed. I've talked to somebody else who has gotten it to work, and I tried it myself about a week ago. Could you try the first method of checking out listed on the common-lisp.net FAQ? cvs -z3 -d :pserver:anonymous:anonymous at common-lisp.net:/project/fetter/cvsroot co verrazano On 8/19/05, Kenny Tilton wrote: > I do not know anything on your question about Verrazano being ready for > general use, but to get the software you can try the web interface, ViewCVS: > > http://common-lisp.net/cgi-bin/viewcvs.cgi/verrazano/?cvsroot=fetter > > It has a nightly tarball you can grab. See the link at the bottom of the > page. > > kt > > Pupeno wrote: > > >Hello, > >It seem you are doing very interesting stuff here. I wanted it to try it for > >OpenLDAP (the client libraries libldap). If you know this will fail for sure > >just tell me and I'll keep my mind busy in other stuff, otherwise I'll try it > >and see how it goes, maybe doing some feedback. > >My problem now is accessing the repository with CVS, I tried: > > > >$ export CVSROOT=:pserver:anonymous at common-lisp.net:/project/fetter/cvsroot/ > >$ cvs login > >Logging in to :pserver:anonymous at common-lisp.net:2401/project/fetter/cvsroot > >CVS password: > >Fatal error, aborting. > >anonymous: no such user > >$ > > > >Did you dissabled anonymous access ? Is this on porpouse ? How can I access > >it ? > >Thanks. > > > > > >------------------------------------------------------------------------ > > > >_______________________________________________ > >fetter-devel mailing list > >fetter-devel at common-lisp.net > >http://common-lisp.net/cgi-bin/mailman/listinfo/fetter-devel > > > > > > -- > Kenny > > Why Lisp? http://lisp.tech.coop/RtL%20Highlight%20Film > > "I've wrestled with reality for 35 years, Doctor, and I'm happy to state I finally won out over it." > Elwood P. Dowd, "Harvey", 1950 > > > > _______________________________________________ > fetter-devel mailing list > fetter-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/fetter-devel > From pupeno at pupeno.com Fri Aug 19 23:48:23 2005 From: pupeno at pupeno.com (Pupeno) Date: Fri, 19 Aug 2005 20:48:23 -0300 Subject: [fetter-devel] CVS repository In-Reply-To: References: <200508191133.32013.pupeno@pupeno.com> <43062EAA.8070901@nyc.rr.com> Message-ID: <200508192048.29939.pupeno@pupeno.com> On Friday 19 August 2005 18:49, you wrote: > Anonymous CVS was having some problems earlier, but it should have > been fixed. I've talked to somebody else who has gotten it to work, > and I tried it myself about a week ago. Could you try the first method > of checking out listed on the common-lisp.net FAQ? > > cvs -z3 -d > :pserver:anonymous:anonymous at common-lisp.net:/project/fetter/cvsroot co > verrazano It doesn't work: $ cvs -z3 -d :pserver:anonymous:anonymous at common-lisp.net:/project/fetter/cvsroot co verrazano Fatal error, aborting. anonymous: no such user :( -- Pupeno (http://pupeno.com) Reading ? Science Fiction ? http://sfreaders.com.ar -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From pupeno at pupeno.com Fri Aug 26 01:28:57 2005 From: pupeno at pupeno.com (Pupeno) Date: Thu, 25 Aug 2005 22:28:57 -0300 Subject: [fetter-devel] CVS repository In-Reply-To: <200508192048.29939.pupeno@pupeno.com> References: <200508191133.32013.pupeno@pupeno.com> <200508192048.29939.pupeno@pupeno.com> Message-ID: <200508252229.03588.pupeno@pupeno.com> Just in case anybody cares, I still get this error. Thanks. On Friday 19 August 2005 20:48, Pupeno wrote: > On Friday 19 August 2005 18:49, you wrote: > > Anonymous CVS was having some problems earlier, but it should have > > been fixed. I've talked to somebody else who has gotten it to work, > > and I tried it myself about a week ago. Could you try the first method > > of checking out listed on the common-lisp.net FAQ? > > > > cvs -z3 -d > > > > :pserver:anonymous:anonymous at common-lisp.net:/project/fetter/cvsroot co > > > > verrazano > > It doesn't work: > > $ cvs -z3 > -d :pserver:anonymous:anonymous at common-lisp.net:/project/fetter/cvsroot co > verrazano > Fatal error, aborting. > anonymous: no such user > > :( -- Pupeno (http://pupeno.com) Vendo: Placa de video: Asus GeForce FX 5200 (128MB): http://pupeno.com/spa/vendo/#Video -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From rayiner at gmail.com Fri Aug 26 07:09:32 2005 From: rayiner at gmail.com (Rayiner Hashem) Date: Fri, 26 Aug 2005 03:09:32 -0400 Subject: [fetter-devel] CVS repository In-Reply-To: <200508252229.03588.pupeno@pupeno.com> References: <200508191133.32013.pupeno@pupeno.com> <200508192048.29939.pupeno@pupeno.com> <200508252229.03588.pupeno@pupeno.com> Message-ID: Sorry! I care, but I'm a programmer, not a CVS server admin :) I've checked CVSROOT/passwd and CVSROOT/readers, and anonymous access really should work. I can't figure out why it doesn't, though. I know for certain that it worked a few weeks ago, because somebody else downloaded the source and did some testing with various Lisp implementations. Anyway, I'll fire off an e-mail to the common-lisp.net admin and see what I can see. I should note, however, that it's easy to download the source by going to the project page, going to "Browse our CVS repository", and clicking "download tarball". Sincerely, Rayiner Hashem On 8/25/05, Pupeno wrote: > Just in case anybody cares, I still get this error. > Thanks. > > On Friday 19 August 2005 20:48, Pupeno wrote: > > On Friday 19 August 2005 18:49, you wrote: > > > Anonymous CVS was having some problems earlier, but it should have > > > been fixed. I've talked to somebody else who has gotten it to work, > > > and I tried it myself about a week ago. Could you try the first method > > > of checking out listed on the common-lisp.net FAQ? > > > > > > cvs -z3 -d > > > > > > :pserver:anonymous:anonymous at common-lisp.net:/project/fetter/cvsroot co > > > > > > verrazano > > > > It doesn't work: > > > > $ cvs -z3 > > -d :pserver:anonymous:anonymous at common-lisp.net:/project/fetter/cvsroot co > > verrazano > > Fatal error, aborting. > > anonymous: no such user > > > > :( > > -- > Pupeno (http://pupeno.com) > Vendo: Placa de video: Asus GeForce FX 5200 (128MB): > http://pupeno.com/spa/vendo/#Video > > > _______________________________________________ > fetter-devel mailing list > fetter-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/fetter-devel > > > >