r4852: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 6 May 2003 16:41:53 +0000 (16:41 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 6 May 2003 16:41:53 +0000 (16:41 +0000)
debian/changelog
package.lisp
pipes.asd
src.lisp

index 8a260ce127b0d720c3093de8b9feb87fd6a3c0ad..42733e1bc942cdfbb556683da36369689931056e 100644 (file)
@@ -1,3 +1,9 @@
+cl-pipes (1.2-1) unstable; urgency=low
+
+  * Improve .asd file
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Tue,  6 May 2003 10:15:25 -0600
+
 cl-pipes (1.1-1) unstable; urgency=low
 
   * Fix bug in examples file. Add ln2 examples to run-examples
 cl-pipes (1.1-1) unstable; urgency=low
 
   * Fix bug in examples file. Add ln2 examples to run-examples
index d8c4bf0390341ae679aa874ce1561b3c3507ae20..24ee18760d1b3fc147560f34e6433362916d2646 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: package.lisp,v 1.2 2002/11/07 20:26:13 kevin Exp $
+;;;; $Id: package.lisp,v 1.3 2003/05/06 16:15:51 kevin Exp $
 ;;;;
 ;;;; This file, part of pipes, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;;
 ;;;; This file, part of pipes, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -16,9 +16,7 @@
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
-(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
-
-(in-package :cl-user)
+(in-package #:cl-user)
 
 (defpackage #:pipes
   (:use #:common-lisp)
 
 (defpackage #:pipes
   (:use #:common-lisp)
index 5922c746769d7615f6f6fdaed949de22fe700978..2ea9b5aa63f68ada90756c4d4616d1cb8513245b 100644 (file)
--- a/pipes.asd
+++ b/pipes.asd
@@ -7,20 +7,15 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: pipes.asd,v 1.3 2003/03/15 00:48:56 kevin Exp $
+;;;; $Id: pipes.asd,v 1.4 2003/05/06 16:15:51 kevin Exp $
 ;;;;
 ;;;; This file, part of PIPES, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;; *************************************************************************
 
 ;;;;
 ;;;; This file, part of PIPES, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;; *************************************************************************
 
-#+allegro (require :pxml)
-#+(and allegro common-lisp-controller) (c-l-c::clc-require :aserve)
-#+(and allegro (not common-lisp-controller)) (require :aserve)
-       
-(in-package :asdf)
+(defpackage #:pipes-system (:use #:cl #:asdf))
+(in-package :pipes-system)
 
 
-(defsystem :pipes
-    :perform (load-op :after (op pipes)
-                     (pushnew :pipes cl:*features*))
+(defsystem pipes
     :components 
     ((:file "package")
      (:file "src" :depends-on ("package"))))
     :components 
     ((:file "package")
      (:file "src" :depends-on ("package"))))
index 61f852bc8c6918ce04552ef67ca33e1765973956..b4edcdc105b865c6ec82ec4640ca5bf3a73398f6 100644 (file)
--- a/src.lisp
+++ b/src.lisp
@@ -7,14 +7,13 @@
 ;;;; Programmers:   Kevin M. Rosenberg and Peter Norvig
 ;;;; Date Started:  Apr 2000
 ;;;;
 ;;;; Programmers:   Kevin M. Rosenberg and Peter Norvig
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: src.lisp,v 1.1 2003/03/15 00:48:56 kevin Exp $
+;;;; $Id: src.lisp,v 1.2 2003/05/06 16:15:51 kevin Exp $
 ;;;;
 ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg and
 ;;;; Copyright (c) 1998-2002 by Peter Norvig. 
 ;;;; *************************************************************************
 
 ;;;;
 ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg and
 ;;;; Copyright (c) 1998-2002 by Peter Norvig. 
 ;;;; *************************************************************************
 
-(in-package :pipes)
-
+(in-package #:pipes)
 
 (defconstant +empty-pipe+ nil)
 
 
 (defconstant +empty-pipe+ nil)