summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-01-04 00:04:49 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-01-04 00:04:49 (GMT)
commit85d6fb50221e62e11159ecc915ca3c18d73cfbbb (patch)
treeef59fb988d4fd20bdd2fd793f0a90c97f50b7041 /Lib/distutils/command
parente54aea786ee835a2b28b1d4f7e1263a218f6730b (diff)
downloadcpython-85d6fb50221e62e11159ecc915ca3c18d73cfbbb.zip
cpython-85d6fb50221e62e11159ecc915ca3c18d73cfbbb.tar.gz
cpython-85d6fb50221e62e11159ecc915ca3c18d73cfbbb.tar.bz2
fixed #1702551: distutils sdist was not pruning VCS directories under win32
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r--Lib/distutils/command/sdist.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py
index 961256c..e10e25b 100644
--- a/Lib/distutils/command/sdist.py
+++ b/Lib/distutils/command/sdist.py
@@ -7,6 +7,7 @@ Implements the Distutils 'sdist' command (create a source distribution)."""
__revision__ = "$Id$"
import os, string
+import sys
from types import *
from glob import glob
from distutils.core import Command
@@ -354,8 +355,13 @@ class sdist (Command):
self.filelist.exclude_pattern(None, prefix=build.build_base)
self.filelist.exclude_pattern(None, prefix=base_dir)
- self.filelist.exclude_pattern(r'(^|/)(RCS|CVS|\.svn|\.hg|\.git|\.bzr|_darcs)/.*', is_regex=1)
+ # pruning out vcs directories
+ # both separators are used under win32
+ seps = sys.platform == 'win32' and r'/|\\' or '/'
+ vcs_dirs = ['RCS', 'CVS', '\.svn', '\.hg', '\.git', '\.bzr', '_darcs']
+ vcs_ptrn = r'(^|%s)(%s)(%s).*' % (seps, '|'.join(vcs_dirs), seps)
+ self.filelist.exclude_pattern(vcs_ptrn, is_regex=1)
def write_manifest (self):
"""Write the file list in 'self.filelist' (presumably as filled in