Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
87da1ea1
Commit
87da1ea1
authored
Apr 21, 2000
by
Greg Ward
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch from Andrew Kuchling: document the new multiple pattern feature in the
manifest template.
parent
9d5afa98
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
12 deletions
+15
-12
Doc/dist/dist.tex
Doc/dist/dist.tex
+15
-12
No files found.
Doc/dist/dist.tex
View file @
87da1ea1
...
...
@@ -406,8 +406,7 @@ distribution. For an example, again we turn to the Distutils' own
manifest template:
\begin{verbatim}
include *.txt
recursive-include examples *.txt
recursive-include examples *.py
recursive-include examples *.txt *.py
prune examples/sample?/build
\end{verbatim}
The meanings should be fairly clear: include all files in the
...
...
@@ -652,16 +651,20 @@ each, are:
\XXX
{
fragment moved down from above: needs context!
}
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
{
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
}}
\end{tableii}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment