Update of /project/clhp/cvsroot/clhp In directory common-lisp.net:/tmp/cvs-serv4958
Modified Files: clhp.lisp clhp.asd Makefile Log Message: Versioning changes post release
Date: Fri Nov 14 17:45:40 2003 Author: aventimiglia
Index: clhp/clhp.lisp diff -u clhp/clhp.lisp:1.22 clhp/clhp.lisp:1.23 --- clhp/clhp.lisp:1.22 Fri Nov 14 17:32:10 2003 +++ clhp/clhp.lisp Fri Nov 14 17:45:39 2003 @@ -1,5 +1,5 @@ (ext:file-comment - "$Id: clhp.lisp,v 1.22 2003/11/14 22:32:10 aventimiglia Exp $") + "$Id: clhp.lisp,v 1.23 2003/11/14 22:45:39 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.1alpha" ; Set this for releases - (let* ((trimmed (string-trim "$ Date:" "$Date: 2003/11/14 22:32:10 $")) + #.(or nil ; Set this for releases + (let* ((trimmed (string-trim "$ Date:" "$Date: 2003/11/14 22:45:39 $")) (date (subseq trimmed 0 (search " " trimmed)))) (concatenate 'string (subseq date 0 4)
Index: clhp/clhp.asd diff -u clhp/clhp.asd:1.5 clhp/clhp.asd:1.6 --- clhp/clhp.asd:1.5 Fri Nov 14 17:32:10 2003 +++ clhp/clhp.asd Fri Nov 14 17:45:39 2003 @@ -1,4 +1,4 @@ -#+cmu (ext:file-comment "$Id: clhp.asd,v 1.5 2003/11/14 22:32:10 aventimiglia Exp $") +#+cmu (ext:file-comment "$Id: clhp.asd,v 1.6 2003/11/14 22:45:39 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@ventimiglia.org" :maintainer "Anthony Ventimiglia anthony@ventimiglia.org" - :version #.(or "0.2.1alpha" - (let* ((trimmed (string-trim "$ Date:" "$Date: 2003/11/14 22:32:10 $")) + :version #.(or nil + (let* ((trimmed (string-trim "$ Date:" "$Date: 2003/11/14 22:45:39 $")) (date (subseq trimmed 0 (search " " trimmed)))) (concatenate 'string (subseq date 0 4)
Index: clhp/Makefile diff -u clhp/Makefile:1.23 clhp/Makefile:1.24 --- clhp/Makefile:1.23 Fri Nov 14 17:32:13 2003 +++ clhp/Makefile Fri Nov 14 17:45:39 2003 @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.23 2003/11/14 22:32:13 aventimiglia Exp $ +# $Id: Makefile,v 1.24 2003/11/14 22:45:39 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/14 22:32:13 $ | \ +CVSID=$(shell echo $Date: 2003/11/14 22:45:39 $ | \ awk '{print $$2}'| sed s/\///g )cvs
-#VERSION=$(CVSID) -VERSION=0.2.1alpha +VERSION=$(CVSID) +#VERSION=0.2.1alpha TARROOT=clhp-$(VERSION) TARBALL=$(TARROOT).tar.gz