blob: 10ecb2830d12cbf75d4539b45d34284fab42f94c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# -*- coding: utf-8 -*-
"""
utils.py
~~~~~~~~
This module implements some helper functions to work with SVN packages.
:copyright: (c) 2010 by Rafael Goncalves Martins
:license: GPL-2, see LICENSE for more details.
"""
import sys
import tarfile
from contextlib import closing
def create_tarball(src_dir, tarball_file, arcname):
def exclude(filename):
return ('.svn' in filename) or ('autom4te.cache' in filename)
try:
with closing(tarfile.open(tarball_file, 'w:gz')) as tar:
tar.add(src_dir, arcname=arcname, recursive=True, exclude=exclude)
except tarfile.TarError, err:
print >> sys.stderr, 'Failed to create the tarball: %s' % err
|