summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/archive_util.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-05-28 12:53:54 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-05-28 12:53:54 (GMT)
commit9e5d2dc6a6915e781dc17e89bb9e9ba081e04362 (patch)
tree820393185c72be54e0e0ecfcf28a2c52cef047e8 /Lib/distutils/archive_util.py
parent6a111027f2c1607d3e03acee6256eef38fafb206 (diff)
downloadcpython-9e5d2dc6a6915e781dc17e89bb9e9ba081e04362.zip
cpython-9e5d2dc6a6915e781dc17e89bb9e9ba081e04362.tar.gz
cpython-9e5d2dc6a6915e781dc17e89bb9e9ba081e04362.tar.bz2
Fixed #6048: Distutils uses the tarfile module instead of the tar command now
Diffstat (limited to 'Lib/distutils/archive_util.py')
-rw-r--r--Lib/distutils/archive_util.py58
1 files changed, 35 insertions, 23 deletions
diff --git a/Lib/distutils/archive_util.py b/Lib/distutils/archive_util.py
index f5959f5..62150b0 100644
--- a/Lib/distutils/archive_util.py
+++ b/Lib/distutils/archive_util.py
@@ -6,6 +6,9 @@ that sort of thing)."""
__revision__ = "$Id$"
import os
+from warnings import warn
+import sys
+
from distutils.errors import DistutilsExecError
from distutils.spawn import spawn
from distutils.dir_util import mkpath
@@ -22,36 +25,45 @@ def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0):
the appropriate compression extension (".gz", ".bz2" or ".Z").
Returns the output filename.
"""
- # XXX GNU tar 1.13 has a nifty option to add a prefix directory.
- # It's pretty new, though, so we certainly can't require it --
- # but it would be nice to take advantage of it to skip the
- # "create a tree of hardlinks" step! (Would also be nice to
- # detect GNU tar to use its 'z' option and save a step.)
-
- compress_ext = {'gzip': ".gz",
- 'bzip2': '.bz2',
- 'compress': ".Z" }
+ tar_compression = {'gzip': 'gz', 'bzip2': 'bz2', None: '', 'compress': ''}
+ compress_ext = {'gzip': '.gz', 'bzip2': '.bz2', 'compress': '.Z'}
# flags for compression program, each element of list will be an argument
- compress_flags = {'gzip': ["-f9"],
- 'compress': ["-f"],
- 'bzip2': ['-f9']}
-
if compress is not None and compress not in compress_ext.keys():
raise ValueError, \
- "bad value for 'compress': must be None, 'gzip', or 'compress'"
+ ("bad value for 'compress': must be None, 'gzip', 'bzip2' "
+ "or 'compress'")
+
+ archive_name = base_name + '.tar'
+ if compress != 'compress':
+ archive_name += compress_ext.get(compress, '')
- archive_name = base_name + ".tar"
mkpath(os.path.dirname(archive_name), dry_run=dry_run)
- cmd = ["tar", "-cf", archive_name, base_dir]
- spawn(cmd, dry_run=dry_run)
- if compress:
- spawn([compress] + compress_flags[compress] + [archive_name],
- dry_run=dry_run)
- return archive_name + compress_ext[compress]
- else:
- return archive_name
+ # creating the tarball
+ import tarfile # late import so Python build itself doesn't break
+
+ log.info('Creating tar archive')
+ if not dry_run:
+ tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress])
+ try:
+ tar.add(base_dir)
+ finally:
+ tar.close()
+
+ # compression using `compress`
+ if compress == 'compress':
+ warn("'compress' will be deprecated.", PendingDeprecationWarning)
+ # the option varies depending on the platform
+ compressed_name = archive_name + compress_ext[compress]
+ if sys.platform == 'win32':
+ cmd = [compress, archive_name, compressed_name]
+ else:
+ cmd = [compress, '-f', archive_name]
+ spawn(cmd, dry_run=dry_run)
+ return compressed_name
+
+ return archive_name
def make_zipfile(base_name, base_dir, verbose=0, dry_run=0):
"""Create a zip file from all the files under 'base_dir'.