From e741d288978f9a65554235ecb3115db8eef60b54 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Mon, 30 Sep 2002 10:28:40 +0000 Subject: [PATCH] r2915: *** empty log message *** --- debian/changelog | 6 ++++++ debian/rules | 4 ++-- debian/upload.sh | 2 +- doc/Makefile | 2 +- doc/{make.cl => make.lisp} | 0 downloads.cl => downloads.lisp | 2 +- files.cl => files.lisp | 0 lml.asd | 5 +---- lml.cl => lml.lisp | 2 +- package.cl => package.lisp | 2 +- stdsite.cl => stdsite.lisp | 2 +- utils.cl => utils.lisp | 2 +- 12 files changed, 16 insertions(+), 13 deletions(-) rename doc/{make.cl => make.lisp} (100%) rename downloads.cl => downloads.lisp (98%) rename files.cl => files.lisp (100%) rename lml.cl => lml.lisp (99%) rename package.cl => package.lisp (95%) rename stdsite.cl => stdsite.lisp (97%) rename utils.cl => utils.lisp (97%) diff --git a/debian/changelog b/debian/changelog index 37ea6bf..59b7675 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-lml (1.1.0-1) unstable; urgency=low + + * Rename .cl files to .lisp + + -- Kevin M. Rosenberg Mon, 30 Sep 2002 04:23:11 -0600 + cl-lml (1.0.9-2) unstable; urgency=low * Add missing dependency (closes: 162090) diff --git a/debian/rules b/debian/rules index 0bafb8a..36fca29 100755 --- a/debian/rules +++ b/debian/rules @@ -44,7 +44,7 @@ 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 $(shell echo *.cl) $(clc-lml) + dh_install lml.asd $(shell echo *.lisp) $(clc-lml) dh_install $(shell echo doc/*.html) $(doc-dir) dh_link $(clc-lml)/lml.asd $(clc-systems)/lml.asd @@ -58,7 +58,7 @@ binary-arch: build install dh_testroot # dh_installdebconf dh_installdocs - dh_installexamples doc/Makefile doc/make.cl $(shell echo doc/*.lml) + dh_installexamples doc/Makefile doc/make.lisp $(shell echo doc/*.lml) # dh_installmenu # dh_installlogrotate # dh_installemacsen diff --git a/debian/upload.sh b/debian/upload.sh index 252e13d..1b922b7 100755 --- a/debian/upload.sh +++ b/debian/upload.sh @@ -1,4 +1,4 @@ #!/bin/bash -e -dup lml -Uftp.med-info.com -D/home/ftp/lml -C"(cd /opt/apache/htdocs/lml; make install-doc)" $* +dup lml -Uftp.med-info.com -D/home/ftp/lml -C"(cd /opt/apache/htdocs/lml; make install-doc)" -su $* diff --git a/doc/Makefile b/doc/Makefile index dadee61..531aded 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -3,7 +3,7 @@ all: site site: - lisp -init `pwd`/make.cl + lisp -init `pwd`/make.lisp clean: @rm -f *~ \#*\# .\#* memdump diff --git a/doc/make.cl b/doc/make.lisp similarity index 100% rename from doc/make.cl rename to doc/make.lisp diff --git a/downloads.cl b/downloads.lisp similarity index 98% rename from downloads.cl rename to downloads.lisp index 7b528d4..226095e 100644 --- a/downloads.cl +++ b/downloads.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: downloads.cl,v 1.7 2002/09/16 03:43:44 kevin Exp $ +;;;; $Id: downloads.lisp,v 1.1 2002/09/30 10:26:43 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; diff --git a/files.cl b/files.lisp similarity index 100% rename from files.cl rename to files.lisp diff --git a/lml.asd b/lml.asd index 0e5c4b5..ed9244f 100644 --- a/lml.asd +++ b/lml.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: lml.asd,v 1.9 2002/09/20 06:37:38 kevin Exp $ +;;;; $Id: lml.asd,v 1.10 2002/09/30 10:26:43 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -39,9 +39,6 @@ (:file "downloads" :depends-on ("lml")) )) -(defmethod source-file-type ((c cl-source-file) (s (eql (find-system 'lml)))) - "cl") - (when (ignore-errors (find-class 'load-compiled-op)) (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :lml)))) (pushnew :lml cl:*features*))) diff --git a/lml.cl b/lml.lisp similarity index 99% rename from lml.cl rename to lml.lisp index c3542bb..c3a3c98 100644 --- a/lml.cl +++ b/lml.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: lml.cl,v 1.13 2002/09/16 10:18:19 kevin Exp $ +;;;; $Id: lml.lisp,v 1.1 2002/09/30 10:26:43 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; diff --git a/package.cl b/package.lisp similarity index 95% rename from package.cl rename to package.lisp index cdcba6b..f71ee39 100644 --- a/package.cl +++ b/package.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: package.cl,v 1.4 2002/09/16 07:11:12 kevin Exp $ +;;;; $Id: package.lisp,v 1.1 2002/09/30 10:26:43 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; diff --git a/stdsite.cl b/stdsite.lisp similarity index 97% rename from stdsite.cl rename to stdsite.lisp index 306a65f..5c96142 100644 --- a/stdsite.cl +++ b/stdsite.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: stdsite.cl,v 1.2 2002/09/20 19:13:51 kevin Exp $ +;;;; $Id: stdsite.lisp,v 1.1 2002/09/30 10:26:43 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; diff --git a/utils.cl b/utils.lisp similarity index 97% rename from utils.cl rename to utils.lisp index 28d739f..ed1f6a2 100644 --- a/utils.cl +++ b/utils.lisp @@ -1,4 +1,4 @@ -;;; $Id: utils.cl,v 1.6 2002/09/20 18:55:03 kevin Exp $ +;;; $Id: utils.lisp,v 1.1 2002/09/30 10:26:43 kevin Exp $ ;;;; ;;;; General purpose utilities -- 2.34.1