David Lichteblau | 27 Jan 2008 15:51
Gravatar

CVS for Cells 2.0?

Hi,

is there an up-to-date CVS repository for Cells 2.0 (or whatever version
of cells it is that I need for cells-gtk)?

I was thinking about adding cells-gtk to clbuild, and we strongly prefer
version-controlled methods like CVS/SVN/darcs/git over tarball
downloads.

Thanks,
David
Ken Tilton | 27 Jan 2008 22:16
Favicon

Re: CVS for Cells 2.0?

David Lichteblau wrote:
> Hi,
> 
> is there an up-to-date CVS repository for Cells 2.0 (or whatever version
> of cells it is that I need for cells-gtk)?

No. Ah, hang on, cells-gtk does seem to have pulled a copy into their cvs:

    http://common-lisp.net/cgi-bin/viewcvs.cgi/cells/?root=cells-gtk

I would check with the cells-gtk people to confirm that the cvs aligns 
with the tarball.

kt
Peter Hildebrandt | 27 Jan 2008 22:21
Picon

Re: CVS for Cells 2.0?


Ken Tilton wrote:
>    http://common-lisp.net/cgi-bin/viewcvs.cgi/cells/?root=cells-gtk

Looks right to me.

Peter.

> I would check with the cells-gtk people to confirm that the cvs aligns 
> with the tarball.
> 
> kt
> _______________________________________________
> cells-devel site list
> cells-devel <at> common-lisp.net
> http://common-lisp.net/mailman/listinfo/cells-devel
Peter Hildebrandt | 27 Jan 2008 23:11
Picon

cells3


I'm trying to get cells3 + Celtk up and running on sbcl/linux, and I 
found three issues:

(i) in utils-kt/core.lisp, defmacro export!:  sbcl does not like the 
export at compile time:
     `(eval-when (#-sbcl :compile-toplevel :load-toplevel :execute)

(ii) in Celtk/run.lisp, defun run-window:
      (CG:kill-splash-screen)
      ---> CG is an unknown package for me.  This is Allegro Common 
Graphics, I assume?  I changed that to #+allegro (CG:...

(iii) in Celtk/tk-interp.lisp, the names do not match the latest tcl/tk. 
  Something with :or would work better:

(define-foreign-library Tcl
     (:darwin (:framework "Tcl"))
   (:windows (:or "Tcl85.dll"))
   (:unix (:or "libtcl.so" "libtcl8.5.so.0" "libtcl8.5.so" 
"libtcl8.4.so.0" "libtcl8.5.so"))
   (t (:default "libtcl")))

(define-foreign-library Tk
     (:darwin (:framework "Tk"))
   (:windows (:or "Tk85.dll"))
   (:unix (:or "libtk.so" "libtk8.5.so.0" "libtk8.5.so" "libtk8.4.so.0" 
"libtk8.4.so"))
   (t (:default "libtk")))

(Continue reading)


Gmane