From: Kevin M. Rosenberg Date: Sat, 19 Apr 2003 03:57:43 +0000 (+0000) Subject: r4535: Auto commit for Debian build X-Git-Tag: v2.5.5~98 X-Git-Url: http://git.kpe.io/?p=lml.git;a=commitdiff_plain;h=17f82ef6c56d393c9a63d42c4659928432545666;hp=d5efacf3fe09226f7945730a433f5931c95b709c r4535: Auto commit for Debian build --- diff --git a/debian/changelog b/debian/changelog index 8d2b90c..2e704d0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ cl-lml (2.4.0-1) unstable; urgency=low - * Create lml-base system that loads without the read macro. + * Move read-macro to it's own file. -- Kevin M. Rosenberg Fri, 18 Apr 2003 21:47:19 -0600 diff --git a/debian/rules b/debian/rules index d1abbd5..d163ddb 100755 --- a/debian/rules +++ b/debian/rules @@ -41,9 +41,8 @@ install: build dh_clean -k # Add here commands to install the package into debian/lml. dh_installdirs $(clc-systems) $(clc-lml) $(doc-dir) - dh_install lml.asd lml-base.asd $(shell echo *.lisp) $(clc-lml) + dh_install lml.asd $(shell echo *.lisp) $(clc-lml) dh_install $(shell echo doc/*.html) $(doc-dir) - dh_link $(clc-lml)/lml-base.asd $(clc-systems)/lml-base.asd dh_link $(clc-lml)/lml.asd $(clc-systems)/lml.asd # Build architecture-independent files here. diff --git a/lml.asd b/lml.asd index 63160b4..ec28c2e 100644 --- a/lml.asd +++ b/lml.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: lml.asd,v 1.13 2003/04/19 03:50:12 kevin Exp $ +;;;; $Id: lml.asd,v 1.14 2003/04/19 03:56:40 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -27,11 +27,16 @@ :description "Lisp Markup Language" :long-description "LML provides creation of XHTML for Lisp programs." - :depends-on (:lml-base) - :components - ((:file "read-macro")) - ) + ((:file "package") + (:file "utils" :depends-on ("package")) + (:file "files" :depends-on ("utils")) + (:file "base" :depends-on ("files")) + (:file "read-macro" :depends-on ("base")) + (:file "stdsite" :depends-on ("base")) + (:file "downloads" :depends-on ("base")) + )) +