CMUCL commit: src/contrib (7 files)

Raymond Toy rtoy at common-lisp.net
Wed May 12 04:47:14 CEST 2010


    Date: Tuesday, May 11, 2010 @ 22:47:14
  Author: rtoy
    Path: /project/cmucl/cvsroot/src/contrib

   Added: demos/demos.asd embedded-c/embedded-c.asd
          follow-mouse/follow-mouse.asd games/feebs/feebs.asd hist/hist.asd
          ops/ops.asd psgraph/psgraph.asd

ASD file for contrib module.


-------------------------------+
 demos/demos.asd               |   15 +++++++++++++++
 embedded-c/embedded-c.asd     |   12 ++++++++++++
 follow-mouse/follow-mouse.asd |   15 +++++++++++++++
 games/feebs/feebs.asd         |   10 ++++++++++
 hist/hist.asd                 |   13 +++++++++++++
 ops/ops.asd                   |   20 ++++++++++++++++++++
 psgraph/psgraph.asd           |   15 +++++++++++++++
 7 files changed, 100 insertions(+)


Index: src/contrib/demos/demos.asd
diff -u /dev/null src/contrib/demos/demos.asd:1.1
--- /dev/null	Tue May 11 22:47:14 2010
+++ src/contrib/demos/demos.asd	Tue May 11 22:47:14 2010
@@ -0,0 +1,15 @@
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+
+(in-package :asdf)
+
+(defsystem :demos
+  :name "demos"
+  :maintainer "CMU Common Lisp Group"
+  :licence "Public Domain"
+  :description "MIT Regression Tester"
+  :long-description "Graphics demonstration programs for CMU Common Lisp using version 11
+of the X Window System."
+  :components
+  ((:file "demos")))
+
+
Index: src/contrib/embedded-c/embedded-c.asd
diff -u /dev/null src/contrib/embedded-c/embedded-c.asd:1.1
--- /dev/null	Tue May 11 22:47:15 2010
+++ src/contrib/embedded-c/embedded-c.asd	Tue May 11 22:47:14 2010
@@ -0,0 +1,12 @@
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+
+(in-package :asdf)
+
+(defsystem :embedded-c
+  :name "embedded-c"
+  :author "Helmut Eller"
+  :license "Public Domain"
+  :long-description "This package provides a macro to embed compiled C code in 
+a Lisp fasl file.  It's inspired by GForth FFI."
+  :components
+  ((:file "embedded-c")))
\ No newline at end of file
Index: src/contrib/follow-mouse/follow-mouse.asd
diff -u /dev/null src/contrib/follow-mouse/follow-mouse.asd:1.1
--- /dev/null	Tue May 11 22:47:15 2010
+++ src/contrib/follow-mouse/follow-mouse.asd	Tue May 11 22:47:14 2010
@@ -0,0 +1,15 @@
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+
+(in-package :asdf)
+
+(defsystem :follows-mouse
+  :name "follows-mouse"
+  :maintainer "Todd Kaufman"
+  :licence "Public Domain"
+  :long-description "This Hemlock customization causes Hemlock's current window to be set to
+whatever Hemlock window the mouse enters, except the echo area."
+of the X Window System."
+  :components
+  ((:file "follow-mouse")))
+
+
Index: src/contrib/games/feebs/feebs.asd
diff -u /dev/null src/contrib/games/feebs/feebs.asd:1.1
--- /dev/null	Tue May 11 22:47:15 2010
+++ src/contrib/games/feebs/feebs.asd	Tue May 11 22:47:14 2010
@@ -0,0 +1,10 @@
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+
+(in-package :asdf)
+
+(defsystem :feebs
+  :name "feebs"
+  :description "Planet of the Feebs. A somewhat educational simulation game."
+  :components
+  ((:file "feebs")
+   (:file "brains")))
\ No newline at end of file
Index: src/contrib/hist/hist.asd
diff -u /dev/null src/contrib/hist/hist.asd:1.1
--- /dev/null	Tue May 11 22:47:15 2010
+++ src/contrib/hist/hist.asd	Tue May 11 22:47:14 2010
@@ -0,0 +1,13 @@
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+
+(in-package :asdf)
+
+(defsystem :hist
+  :name "hist"
+  :maintainer "Scott E. Fahlman"
+  :licence "Public Domain"
+  :long-description "Simple histogram facility using Format strings for output."
+  :components
+  ((:file "hist")))
+
+
Index: src/contrib/ops/ops.asd
diff -u /dev/null src/contrib/ops/ops.asd:1.1
--- /dev/null	Tue May 11 22:47:15 2010
+++ src/contrib/ops/ops.asd	Tue May 11 22:47:14 2010
@@ -0,0 +1,20 @@
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+
+(in-package :asdf)
+
+(defsystem :ops
+  :name "ops"
+  :licence "Public Domain"
+  :description "MIT Regression Tester"
+  :long-description "Interpreter for Ops5, a programming language for production systems."
+  :components
+  ((:file "ops-util")
+   (:file "ops-compile")
+   (:file "ops-rhs")
+   (:file "ops-match")
+   (:file "ops-main")
+   (:file "ops-backup")
+   (:file "ops-io")
+   (:file "ops")))
+
+
Index: src/contrib/psgraph/psgraph.asd
diff -u /dev/null src/contrib/psgraph/psgraph.asd:1.1
--- /dev/null	Tue May 11 22:47:15 2010
+++ src/contrib/psgraph/psgraph.asd	Tue May 11 22:47:14 2010
@@ -0,0 +1,15 @@
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+
+(in-package :asdf)
+
+(defsystem :psgraph
+  :name "PSGrapher"
+  :author "Joseph Bates et al."
+  :licence "Public Domain"
+  :description "MIT Regression Tester"
+  :long-description "The PSgrapher is a set of Lisp routines that can be called to produce
+Postscript commands that display a directed acyclic graph."
+  :components
+  ((:file "psgraph")))
+
+



More information about the cmucl-commit mailing list