r4535: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 19 Apr 2003 03:57:43 +0000 (03:57 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 19 Apr 2003 03:57:43 +0000 (03:57 +0000)
debian/changelog
debian/rules
lml.asd

index 8d2b90c634413b93694ff189c8a3a1a4a1e25907..2e704d0fb870f8252ccbc5d9b0b72fd002b614f5 100644 (file)
@@ -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 <kmr@debian.org>  Fri, 18 Apr 2003 21:47:19 -0600
 
index d1abbd536461145565617e96c5479785ee1956cb..d163ddb24c7a22fb1604d16832131629cd845d92 100755 (executable)
@@ -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 63160b481b76f6f7790b4fa0073288ceabd3b366..ec28c2e3bb5c4f67445d1ff9d39a8480bded5256 100644 (file)
--- 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
 ;;;;
   :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"))
+   ))
+