[Python-checkins] CVS: distutils/doc/dist dist.tex,1.8,1.9

Greg Ward python-dev@python.org
Fri, 21 Apr 2000 00:35:29 -0400 (EDT)


Update of /projects/cvsroot/distutils/doc/dist
In directory newcnri:/tmp/cvs-serv17512

Modified Files:
	dist.tex 
Log Message:
Patch from Andrew Kuchling: document the new multiple pattern feature in the
manifest template.

Index: dist.tex
===================================================================
RCS file: /projects/cvsroot/distutils/doc/dist/dist.tex,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** dist.tex	2000/04/19 22:48:09	1.8
--- dist.tex	2000/04/21 04:35:25	1.9
***************
*** 407,412 ****
  \begin{verbatim}
  include *.txt
! recursive-include examples *.txt
! recursive-include examples *.py
  prune examples/sample?/build
  \end{verbatim}
--- 407,411 ----
  \begin{verbatim}
  include *.txt
! recursive-include examples *.txt *.py
  prune examples/sample?/build
  \end{verbatim}
***************
*** 653,666 ****
  The manifest template commands are:
  \begin{tableii}{ll}{command}{Command}{Description}
!   \lineii{include \var{pat}}{include all files matching \var{pat}}
!   \lineii{exclude \var{pat}}{exclude all files matching \var{pat}}
!   \lineii{recursive-include \var{dir} \var{pat}}
!     {include all files under \var{dir} matching \var{pat}}
!   \lineii{recursive-exclude \var{dir} \var{pat}}
!     {exclude all files under \var{dir} matching \var{pat}}
!   \lineii{global-include \var{pat}}
!     {include all files anywhere in the source tree matching \var{pat}}
!   \lineii{global-exclude \var{pat}}
!     {exclude all files anywhere in the source tree matching \var{pat}}
    \lineii{prune \var{dir}}{exclude all files under \var{dir}}
    \lineii{graft \var{dir}}{include all files under \var{dir}}
--- 652,669 ----
  The manifest template commands are:
  \begin{tableii}{ll}{command}{Command}{Description}
!   \lineii{include \var{pat1} \var{pat2} ... }
!     {include all files matching any of the listed patterns}
!   \lineii{exclude \var{pat1} \var{pat2} ... }
!     {exclude all files matching any of the listed patterns}
!   \lineii{recursive-include \var{dir} \var{pat1} \var{pat2} ... }
!     {include all files under \var{dir} matching any of the listed patterns}
!   \lineii{recursive-exclude \var{dir} \var{pat1} \var{pat2} ...}
!     {exclude all files under \var{dir} matching any of the listed patterns}
!   \lineii{global-include \var{pat1} \var{pat2} ...}
!     {include all files anywhere in the source tree matching 
!      any of the listed patterns}
!   \lineii{global-exclude \var{pat1} \var{pat2} ...}
!     {exclude all files anywhere in the source tree matching 
!      any of the listed patterns}
    \lineii{prune \var{dir}}{exclude all files under \var{dir}}
    \lineii{graft \var{dir}}{include all files under \var{dir}}