[Python-checkins] python/dist/src/Doc Makefile, 1.266,
1.267 Makefile.deps, 1.112, 1.113
fdrake at users.sourceforge.net
fdrake at users.sourceforge.net
Sat Sep 27 03:11:18 EDT 2003
- Previous message: [Python-checkins] python/dist/src/Doc/commontex - New directory
- Next message: [Python-checkins] python/dist/src/Doc/commontex boilerplate.tex,
NONE, 1.1 copyright.tex, NONE, 1.1 license.tex, NONE,
1.1 reportingbugs.tex, NONE, 1.1 typestruct.h, NONE, 1.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/python/python/dist/src/Doc
In directory sc8-pr-cvs1:/tmp/cvs-serv8642
Modified Files:
Makefile Makefile.deps
Log Message:
Move content input files shared among the documents into a new directory
(commontex/), leaving only style support files in texinputs/. This makes
texinputs/ part of the formatting tools while commontex/ is strictly part
of the actual documentation.
Index: Makefile
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/Makefile,v
retrieving revision 1.266
retrieving revision 1.267
diff -C2 -d -r1.266 -r1.267
*** Makefile 27 Sep 2003 05:52:16 -0000 1.266
--- Makefile 27 Sep 2003 07:11:15 -0000 1.267
***************
*** 72,75 ****
--- 72,82 ----
DVIPS= dvips -N0 -t $(PAPER)
+ PWD=$(shell pwd)
+
+ # (The trailing colon in the value is needed; TeX places it's default
+ # set of paths at the location of the empty string in the path list.)
+ #
+ TEXINPUTS=$(PWD)/commontex:
+
# This is ugly! The issue here is that there are two different levels
# in the directory tree at which we execute mkhowto, so we can't
***************
*** 79,83 ****
# identifying mkhowto using an absolute path.
#
! MKHOWTO= $(PYTHON) $(shell pwd)/tools/mkhowto
MKDVI= $(MKHOWTO) --paper=$(PAPER) --dvi
--- 86,90 ----
# identifying mkhowto using an absolute path.
#
! MKHOWTO= TEXINPUTS=$(TEXINPUTS) $(PYTHON) $(PWD)/tools/mkhowto
MKDVI= $(MKHOWTO) --paper=$(PAPER) --dvi
Index: Makefile.deps
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/Makefile.deps,v
retrieving revision 1.112
retrieving revision 1.113
diff -C2 -d -r1.112 -r1.113
*** Makefile.deps 24 Sep 2003 16:53:02 -0000 1.112
--- Makefile.deps 27 Sep 2003 07:11:16 -0000 1.113
***************
*** 6,12 ****
INDEXSTYLES=texinputs/python.ist
! COMMONTEX= texinputs/copyright.tex \
! texinputs/license.tex \
! texinputs/boilerplate.tex
MANSTYLES= texinputs/fncychap.sty \
--- 6,12 ----
INDEXSTYLES=texinputs/python.ist
! COMMONTEX=commontex/copyright.tex \
! commontex/license.tex \
! commontex/boilerplate.tex
MANSTYLES= texinputs/fncychap.sty \
***************
*** 30,35 ****
api/utilities.tex \
api/veryhigh.tex \
! texinputs/typestruct.h \
! texinputs/reportingbugs.tex
# These files are generated from those listed above, and are used to
--- 30,35 ----
api/utilities.tex \
api/veryhigh.tex \
! commontex/typestruct.h \
! commontex/reportingbugs.tex
# These files are generated from those listed above, and are used to
***************
*** 48,55 ****
paper-$(PAPER)/utilities.tex \
paper-$(PAPER)/veryhigh.tex \
! texinputs/reportingbugs.tex
DOCFILES= $(HOWTOSTYLES) \
! texinputs/boilerplate.tex \
texinputs/ltxmarkup.sty \
doc/doc.tex
--- 48,55 ----
paper-$(PAPER)/utilities.tex \
paper-$(PAPER)/veryhigh.tex \
! commontex/reportingbugs.tex
DOCFILES= $(HOWTOSTYLES) \
! commontex/boilerplate.tex \
texinputs/ltxmarkup.sty \
doc/doc.tex
***************
*** 66,71 ****
ext/noddy4.c \
ext/run-func.c \
! texinputs/typestruct.h \
! texinputs/reportingbugs.tex
TUTFILES= tut/tut.tex tut/glossary.tex $(MANSTYLES) $(COMMONTEX)
--- 66,71 ----
ext/noddy4.c \
ext/run-func.c \
! commontex/typestruct.h \
! commontex/reportingbugs.tex
TUTFILES= tut/tut.tex tut/glossary.tex $(MANSTYLES) $(COMMONTEX)
***************
*** 85,89 ****
# LaTeX source files for the Python Library Reference
LIBFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \
! texinputs/reportingbugs.tex \
lib/lib.tex \
lib/asttable.tex \
--- 85,89 ----
# LaTeX source files for the Python Library Reference
LIBFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \
! commontex/reportingbugs.tex \
lib/lib.tex \
lib/asttable.tex \
- Previous message: [Python-checkins] python/dist/src/Doc/commontex - New directory
- Next message: [Python-checkins] python/dist/src/Doc/commontex boilerplate.tex,
NONE, 1.1 copyright.tex, NONE, 1.1 license.tex, NONE,
1.1 reportingbugs.tex, NONE, 1.1 typestruct.h, NONE, 1.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Python-checkins
mailing list