mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-04-04 18:26:20 +02:00
- added source tarball decompression
This commit is contained in:
parent
e94d2f483b
commit
35bdc07ebd
@ -29,8 +29,8 @@ def make_tarball(tarball_path, sources, base_dir, prefix_dir=''):
|
|||||||
path_in_tar = archive_name(path)
|
path_in_tar = archive_name(path)
|
||||||
tar.add(path, path_in_tar )
|
tar.add(path, path_in_tar )
|
||||||
compression = TARGZ_DEFAULT_COMPRESSION_LEVEL
|
compression = TARGZ_DEFAULT_COMPRESSION_LEVEL
|
||||||
fileobj = gzip.GzipFile( tarball_path, 'wb', compression )
|
tar = tarfile.TarFile.gzopen( tarball_path, 'w', compresslevel=compression )
|
||||||
tar = tarfile.TarFile(os.path.splitext(tarball_path)[0], 'w', fileobj)
|
try:
|
||||||
for source in sources:
|
for source in sources:
|
||||||
source_path = source
|
source_path = source
|
||||||
if os.path.isdir( source ):
|
if os.path.isdir( source ):
|
||||||
@ -38,4 +38,16 @@ def make_tarball(tarball_path, sources, base_dir, prefix_dir=''):
|
|||||||
else:
|
else:
|
||||||
path_in_tar = archive_name(source_path)
|
path_in_tar = archive_name(source_path)
|
||||||
tar.add(source_path, path_in_tar ) # filename, arcname
|
tar.add(source_path, path_in_tar ) # filename, arcname
|
||||||
|
finally:
|
||||||
|
tar.close()
|
||||||
|
|
||||||
|
def decompress( tarball_path, base_dir ):
|
||||||
|
"""Decompress the gzipped tarball into directory base_dir.
|
||||||
|
"""
|
||||||
|
# !!! This class method is not documented in the online doc
|
||||||
|
# nor is bz2open!
|
||||||
|
tar = tarfile.TarFile.gzopen(tarball_path, mode='r')
|
||||||
|
try:
|
||||||
|
tar.extractall( base_dir )
|
||||||
|
finally:
|
||||||
tar.close()
|
tar.close()
|
||||||
|
@ -167,8 +167,11 @@ Must be started in the project top directory.
|
|||||||
source_tarball_path = 'dist/%s.tar.gz' % source_dir
|
source_tarball_path = 'dist/%s.tar.gz' % source_dir
|
||||||
print 'Generating source tarball to', source_tarball_path
|
print 'Generating source tarball to', source_tarball_path
|
||||||
tarball.make_tarball( source_tarball_path, [export_dir], export_dir, prefix_dir=source_dir )
|
tarball.make_tarball( source_tarball_path, [export_dir], export_dir, prefix_dir=source_dir )
|
||||||
|
|
||||||
|
distcheck_dir = 'dist/distcheck'
|
||||||
|
print 'Decompressing source tarball to', distcheck_dir
|
||||||
|
tarball.decompress( source_tarball_path, distcheck_dir )
|
||||||
#@todo:
|
#@todo:
|
||||||
# decompress source tarball
|
|
||||||
# ?compile & run & check
|
# ?compile & run & check
|
||||||
# ?upload documentation
|
# ?upload documentation
|
||||||
else:
|
else:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user