[clhp-cvs] CVS update: clhp/clhp.lisp clhp/clhp.asd clhp/Makefile

Anthony Ventimiglia aventimiglia at common-lisp.net
Thu Nov 13 05:10:41 UTC 2003


Update of /project/clhp/cvsroot/clhp
In directory common-lisp.net:/tmp/cvs-serv9587

Modified Files:
	clhp.lisp clhp.asd Makefile 
Log Message:
post release version updates

Date: Thu Nov 13 00:10:40 2003
Author: aventimiglia

Index: clhp/clhp.lisp
diff -u clhp/clhp.lisp:1.19 clhp/clhp.lisp:1.20
--- clhp/clhp.lisp:1.19	Wed Nov 12 23:57:44 2003
+++ clhp/clhp.lisp	Thu Nov 13 00:10:40 2003
@@ -1,5 +1,5 @@
 (ext:file-comment
- "$Id: clhp.lisp,v 1.19 2003/11/13 04:57:44 aventimiglia Exp $")
+ "$Id: clhp.lisp,v 1.20 2003/11/13 05:10:40 aventimiglia Exp $")
 ;;
 ;; CLHP the Common Lisp Hypertext Preprocessor
 ;; (C) 2003 Anthony J Ventimiglia
@@ -28,8 +28,8 @@
 ;; by changing the NIL in the first part of the OR, a release number
 ;; will override the CVS keyword
 (defconstant *CLHP-VERSION*
-  #.(or "0.2.0alpha"				; Set this for releases
-	(let* ((trimmed (string-trim "$ Date:" "$Date: 2003/11/13 04:57:44 $"))
+  #.(or nil				; Set this for releases
+	(let* ((trimmed (string-trim "$ Date:" "$Date: 2003/11/13 05:10:40 $"))
 	       (date (subseq trimmed 0 (search " " trimmed))))
 	  (concatenate 'string
 		       (subseq date 0 4)


Index: clhp/clhp.asd
diff -u clhp/clhp.asd:1.3 clhp/clhp.asd:1.4
--- clhp/clhp.asd:1.3	Wed Nov 12 23:57:44 2003
+++ clhp/clhp.asd	Thu Nov 13 00:10:40 2003
@@ -1,4 +1,4 @@
-#+cmu (ext:file-comment "$Id: clhp.asd,v 1.3 2003/11/13 04:57:44 aventimiglia Exp $")
+#+cmu (ext:file-comment "$Id: clhp.asd,v 1.4 2003/11/13 05:10:40 aventimiglia Exp $")
 ;; 
 ;; CLHP the Common Lisp Hypertext Preprocessor
 ;; (C) 2003 Anthony J Ventimiglia
@@ -30,8 +30,8 @@
   :name "net.common-lisp.aventimiglia.clhp"
   :author "Anthony Ventimiglia <anthony at ventimiglia.org>"
   :maintainer "Anthony Ventimiglia <anthony at ventimiglia.org>"
-  :version  #.(or "0.2.0alpha"
-		  (let* ((trimmed (string-trim "$ Date:" "$Date: 2003/11/13 04:57:44 $"))
+  :version  #.(or nil
+		  (let* ((trimmed (string-trim "$ Date:" "$Date: 2003/11/13 05:10:40 $"))
 			 (date (subseq trimmed 0 (search " " trimmed))))
 		    (concatenate 'string
 				 (subseq date 0 4)


Index: clhp/Makefile
diff -u clhp/Makefile:1.21 clhp/Makefile:1.22
--- clhp/Makefile:1.21	Wed Nov 12 23:57:44 2003
+++ clhp/Makefile	Thu Nov 13 00:10:40 2003
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.21 2003/11/13 04:57:44 aventimiglia Exp $
+# $Id: Makefile,v 1.22 2003/11/13 05:10:40 aventimiglia Exp $
 #
 # CLHP the Common Lisp Hypertext Preprocessor
 # (C) 2003 Anthony J Ventimiglia
@@ -84,11 +84,11 @@
 # makefile most likeley will not match the cvs version ID in
 # clhp.lisp, since they depend on their own file's cvs date keyword.
 
-CVSID=$(shell echo $Date: 2003/11/13 04:57:44 $ | \
+CVSID=$(shell echo $Date: 2003/11/13 05:10:40 $ | \
 	awk '{print $$2}'| sed s/\\///g )cvs
 
-#VERSION=$(CVSID)
-VERSION=0.2.0alpha
+VERSION=$(CVSID)
+#VERSION=0.2.0alpha
 TARROOT=clhp-$(VERSION)
 TARBALL=$(TARROOT).tar.gz
 





More information about the Clhp-cvs mailing list