summaryrefslogtreecommitdiffstats
path: root/lib/bb/fetch2/__init__.py
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2014-10-26 16:09:47 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-10-28 14:57:01 +0000
commit9027b1273b5405c7269b013604ab417771b5eafe (patch)
tree34a3e0f39c65e8f799c6114a12089c2a08910ddd /lib/bb/fetch2/__init__.py
parent2ac33aac3446cb12227f1b8daa5f27f417c9bb9e (diff)
downloadopenembedded-core-contrib-9027b1273b5405c7269b013604ab417771b5eafe.tar.gz
fetch2: add .lz compression support
See http://www.nongnu.org/lzip/lzip.html for details on the compression format. Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/fetch2/__init__.py')
-rw-r--r--lib/bb/fetch2/__init__.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py
index c0a4763a8b..3696e242e9 100644
--- a/lib/bb/fetch2/__init__.py
+++ b/lib/bb/fetch2/__init__.py
@@ -1198,7 +1198,7 @@ class FetchMethod(object):
(file, urldata.parm.get('unpack')))
dots = file.split(".")
- if dots[-1] in ['gz', 'bz2', 'Z', 'xz']:
+ if dots[-1] in ['gz', 'bz2', 'Z', 'xz', 'lz']:
efile = os.path.join(rootdir, os.path.basename('.'.join(dots[0:-1])))
else:
efile = file
@@ -1219,6 +1219,10 @@ class FetchMethod(object):
cmd = 'xz -dc %s | tar x --no-same-owner -f -' % file
elif file.endswith('.xz'):
cmd = 'xz -dc %s > %s' % (file, efile)
+ elif file.endswith('.tar.lz'):
+ cmd = 'lzip -dc %s | tar x --no-same-owner -f -' % file
+ elif file.endswith('.lz'):
+ cmd = 'lzip -dc %s > %s' % (file, efile)
elif file.endswith('.zip') or file.endswith('.jar'):
try:
dos = bb.utils.to_boolean(urldata.parm.get('dos'), False)