Removed unused code from utils.py
authorEd Bartosh <eduard.bartosh@intel.com>
Fri, 1 Jun 2012 10:38:15 +0000 (13:38 +0300)
committerEd Bartosh <eduard.bartosh@intel.com>
Mon, 4 Jun 2012 10:11:19 +0000 (13:11 +0300)
Change-Id: I53d09b8f927e3aa9983bd1c94453dbd517fb5f61

gitbuildsys/utils.py
tests/02_test_gbs_utils.py [deleted file]

index f22a526efb1e2c8b1f687b6364c7f6528ed0fe51..e44366383e0cb607d3dac31245983654acc27658 100644 (file)
@@ -18,8 +18,6 @@
 
 import os
 import glob
-import platform
-import re
 import tempfile
 import shutil
 
@@ -27,28 +25,6 @@ import msger
 import runner
 import errors
 
-compressor_opts = { 'gzip'  : [ '-n', 'gz' ],
-                    'bzip2' : [ '', 'bz2' ],
-                    'lzma'  : [ '', 'lzma' ],
-                    'xz'    : [ '', 'xz' ] }
-
-# Map frequently used names of compression types to the internal ones:
-compressor_aliases = { 'bz2' : 'bzip2',
-                       'gz'  : 'gzip', }
-
-SUPPORT_DISTS = (
-    'SuSE',
-    'debian',
-    'fedora',
-    'ubuntu'
-    'tizen',
-)
-
-def linux_distribution():
-    try:
-        return platform.linux_distribution(supported_dists = SUPPORT_DISTS)
-    except:
-        return platform.dist(supported_dists = SUPPORT_DISTS)
 
 class Workdir(object):
     def __init__(self, path):
@@ -61,36 +37,6 @@ class Workdir(object):
     def __exit__(self, _type, _value, _tb):
         os.chdir(self._cwd)
 
-def which(cmd):
-    def is_exe(fpath):
-        return os.path.exists(fpath) and os.access(fpath, os.X_OK)
-
-    fpath, _fname = os.path.split(cmd)
-    if fpath:
-        if is_exe(cmd):
-            return cmd
-    else:
-        for path in os.environ["PATH"].split(os.pathsep):
-            exe_file = os.path.join(path, cmd)
-            if is_exe(exe_file):
-                return exe_file
-
-    return None
-
-def lookfor_cmds(cmds):
-    for cmd in cmds:
-        if not which(cmd):
-            msger.error('Could not find required executable: %s' % cmd)
-
-def strip_end(text, suffix):
-    if not text.endswith(suffix):
-        return text
-    return text[:-len(suffix)]
-
-def get_share_dir():
-    # TODO need to be better
-    return '/usr/share/gbs/'
-
 def get_processors():
     """
     get number of processors (online) based on
@@ -107,129 +53,6 @@ def get_hostarch():
         hostarch = 'i586'
     return hostarch
 
-def get_ext(path, level = 1):
-    """ get ext of specified file
-    """
-    ext = ''
-    for i in range(level):
-        (path, curext) = os.path.splitext(path)
-        if curext == '':
-            return ext
-        ext = curext+ext
-    return ext
-
-class UnpackTarArchive(object):
-    """Wrap tar to unpack a compressed tar archive"""
-    def __init__(self, archive, dir, filters=[], compression=None):
-        self.archive = archive
-        self.dir = dir
-        exclude = [("--exclude=%s" % filter) for filter in filters]
-
-        if not compression:
-            compression = '-a'
-
-        cmd = ' '.join(['tar']+ exclude + ['-C', dir, compression,
-                                           '-xf', archive ])
-        ret = runner.quiet(cmd)
-        if ret != 0:
-            raise errors.UnpackError("Unpacking of %s failed" % archive)
-
-class UnpackZipArchive(object):
-    """Wrap zip to Unpack a zip file"""
-    def __init__(self, archive, dir):
-        self.archive = archive
-        self.dir = dir
-
-        cmd = ' '.join(['unzip'] + [ "-q", archive, '-d', dir ])
-        ret = runner.quiet(cmd)
-        if ret != 0:
-            raise errors.UnpackError("Unpacking of %s failed" % archive)
-
-class UpstreamTarball(object):
-    def __init__(self, name, unpacked=None):
-        self._orig = False
-        self._path = name
-        self.unpacked = unpacked
-
-    @property
-    def path(self):
-        return self._path.rstrip('/')
-
-    def unpack(self, dir, filters=[]):
-        """
-        Unpack packed upstream sources into a given directory
-        and determine the toplevel of the source tree.
-        """
-        if not filters:
-            filters = []
-
-        if type(filters) != type([]):
-            raise errors.UnpackError ('Filters must be a list')
-
-        self._unpack_archive(dir, filters)
-        self.unpacked = self._unpacked_toplevel(dir)
-
-    def _unpack_archive(self, dir, filters):
-        """
-        Unpack packed upstream sources into a given directory.
-        """
-        tarfmt = ['.tar.gz', '.tar.bz2', '.tar.xz', '.tar.lzma']
-        zipfmt = ['.zip', '.xpi']
-        ext = get_ext(self.path)
-        ext2= get_ext(self.path, level = 2)
-        if ext in zipfmt:
-            self._unpack_zip(dir)
-        elif ext in ['.tgz'] or ext2 in tarfmt:
-            self._unpack_tar(dir, filters)
-        else:
-            raise errors.FormatError('%s format tar ball not support. '
-                                     'Supported format: %s' %
-                                    (ext if ext == ext2 else ext2,
-                                     ','.join(tarfmt + zipfmt)))
-
-    def _unpack_zip(self, dir):
-        UnpackZipArchive(self.path, dir)
-
-    def _unpacked_toplevel(self, dir):
-        """unpacked archives can contain a leading directory or not"""
-        unpacked = glob.glob('%s/*' % dir)
-        unpacked.extend(glob.glob("%s/.*" % dir))
-
-        # Check that dir contains nothing but a single folder:
-        if len(unpacked) == 1 and os.path.isdir(unpacked[0]):
-            return unpacked[0]
-        else:
-            return dir
-
-    def _unpack_tar(self, dir, filters):
-        """
-        Unpack a tarball to dir applying a list of filters.
-        """
-        UnpackTarArchive(self.path, dir, filters)
-
-    def guess_version(self, extra_regex=r''):
-        """
-        Guess the package name and version from the filename of an upstream
-        archive.
-        """
-        known_compressions = [ args[1][-1] for args in compressor_opts.items() ]
-
-        version_chars = r'[a-zA-Z\d\.\~\-\:\+]'
-        extensions = r'\.tar\.(%s)' % "|".join(known_compressions)
-
-        version_filters = map ( lambda x: x % (version_chars, extensions),
-            ( # Tizen package-<version>-tizen.tar.gz:
-              r'^(?P<package>[a-z\d\.\+\-]+)-(?P<version>%s+)-tizen%s',
-              # Upstream package-<version>.tar.gz:
-              r'^(?P<package>[a-zA-Z\d\.\+\-]+)-(?P<version>[0-9]%s*)%s'))
-        if extra_regex:
-            version_filters = extra_regex + version_filters
-
-        for filter in version_filters:
-            m = re.match(filter, os.path.basename(self.path))
-            if m:
-                return (m.group('package'), m.group('version'))
-
 def find_binary_path(binary):
     if os.environ.has_key("PATH"):
         paths = os.environ["PATH"].split(":")
diff --git a/tests/02_test_gbs_utils.py b/tests/02_test_gbs_utils.py
deleted file mode 100644 (file)
index d0889bd..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-import unittest
-#import os
-from gitbuildsys import utils
-
-class TestUpsteramTarball(unittest.TestCase):
-    """test class UpstreamTarBall in utils"""
-
-    def setUp(self):
-        """Init a tarball base name"""
-        self.pkgname, self.version = ('OSC', '5.1.1')
-
-    def _testTarballFormat(self, postfix):
-        """test the sepecified tarball format is supported or not"""
-        obj = utils.UpstreamTarball(self.pkgname+'-'+self.version+postfix)
-        pkg, ver = obj.guess_version() or ('', '')
-        self.assertEqual(pkg, self.pkgname)
-        self.assertEqual(ver, self.version)
-
-    def testGZ(self):
-
-        self._testTarballFormat('.tar.gz')
-
-    def testBZ2(self):
-
-        self._testTarballFormat('.tar.bz2')
-
-    def testXZ(self):
-
-        self._testTarballFormat('.tar.xz')
-
-    def testLZMA(self):
-
-        self._testTarballFormat('.tar.lzma')
-
-    def testTizen(self):
-
-        self._testTarballFormat('-tizen.tar.bz2')
-        
-    def testZIP(self):
-
-        self._testTarballFormat('.zip')
-
-    def testTGZ(self):
-
-        self._testTarballFormat('.tgz')
-
-    def testNegative(self):
-
-        self._testTarballFormat('.orig.tar.gz')
-#if __name__ = '__main__'
-#    unittest.main()