[Python-checkins] python/dist/src/Doc Makefile, 1.269, 1.270 Makefile.deps, 1.113, 1.114

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Sat Sep 27 18:07:06 EDT 2003


Update of /cvsroot/python/python/dist/src/Doc
In directory sc8-pr-cvs1:/tmp/cvs-serv2614

Modified Files:
	Makefile Makefile.deps 
Log Message:
Load the version information from ../Include/patchlevel.h, so there are
fewer changes to make to version numbers after a release.


Index: Makefile
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/Makefile,v
retrieving revision 1.269
retrieving revision 1.270
diff -C2 -d -r1.269 -r1.270
*** Makefile	27 Sep 2003 07:48:25 -0000	1.269
--- Makefile	27 Sep 2003 22:07:04 -0000	1.270
***************
*** 65,71 ****
  TOOLSDIR=	tools
  
! # This is the *documentation* release, and is used to construct the file
! # names of the downloadable tarballs.
! RELEASE=2.4a0
  
  PYTHON=	   python
--- 65,76 ----
  TOOLSDIR=	tools
  
! # This is the *documentation* release, and is used to construct the
! # file names of the downloadable tarballs.  It is initialized by the
! # getversioninfo script to ensure that the right version number is
! # used; the script will also write commontex/patchlevel.tex if that
! # doesn't exist or needs to be changed.  Documents which depend on the
! # version number should use \input{patchlevel} and include
! # commontex/patchlevel.tex in their dependencies.
! RELEASE=$(shell $(PYTHON) tools/getversioninfo)
  
  PYTHON=	   python

Index: Makefile.deps
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/Makefile.deps,v
retrieving revision 1.113
retrieving revision 1.114
diff -C2 -d -r1.113 -r1.114
*** Makefile.deps	27 Sep 2003 07:11:16 -0000	1.113
--- Makefile.deps	27 Sep 2003 22:07:04 -0000	1.114
***************
*** 8,11 ****
--- 8,12 ----
  COMMONTEX=commontex/copyright.tex \
  	commontex/license.tex \
+ 	commontex/patchlevel.tex \
  	commontex/boilerplate.tex
  





More information about the Python-checkins mailing list