From: Kevin M. Rosenberg Date: Tue, 6 May 2003 16:41:53 +0000 (+0000) Subject: r4852: Auto commit for Debian build X-Git-Tag: debian-1.2.1-3~9 X-Git-Url: http://git.kpe.io/?p=pipes.git;a=commitdiff_plain;h=7396369bf8d8c69cbac809fcbe2c7b78cb809961 r4852: Auto commit for Debian build --- diff --git a/debian/changelog b/debian/changelog index 8a260ce..42733e1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-pipes (1.2-1) unstable; urgency=low + + * Improve .asd file + + -- Kevin M. Rosenberg 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 diff --git a/package.lisp b/package.lisp index d8c4bf0..24ee187 100644 --- a/package.lisp +++ b/package.lisp @@ -7,7 +7,7 @@ ;;;; 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 ;;;; @@ -16,9 +16,7 @@ ;;;; (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) diff --git a/pipes.asd b/pipes.asd index 5922c74..2ea9b5a 100644 --- a/pipes.asd +++ b/pipes.asd @@ -7,20 +7,15 @@ ;;;; 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 ;;;; ************************************************************************* -#+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")))) diff --git a/src.lisp b/src.lisp index 61f852b..b4edcdc 100644 --- a/src.lisp +++ b/src.lisp @@ -7,14 +7,13 @@ ;;;; 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. ;;;; ************************************************************************* -(in-package :pipes) - +(in-package #:pipes) (defconstant +empty-pipe+ nil)