bump up to release 0.28.4
[platform/upstream/mic.git] / setup.py
index 2263faf..bef22ef 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,82 +1,98 @@
 #!/usr/bin/env python
 
+# Copyright (c) 2014 Intel, Inc.
+#
+# This program is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by the Free
+# Software Foundation; version 2 of the License
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+# or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+# for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc., 59
+# Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+"""
+    Main for installing mic
+"""
+
+
 import os, sys
 import glob
 from distutils.core import setup
-try:
-    import setuptools
-    # enable "setup.py develop", optional
-except ImportError:
-    pass
+
 
 MOD_NAME = 'mic'
 
-version_path = 'VERSION'
-if not os.path.isfile(version_path):
-    print 'No VERSION file in topdir, abort'
-    sys.exit(1)
+
+def check_debian():
+    """--install-layout is recognized after 2.5"""
+    if sys.version_info[:2] > (2, 5):
+        if len(sys.argv) > 1 and 'install' in sys.argv:
+            try:
+                import platform
+                (dist, _, _) = platform.linux_distribution()
+                # for debian-like distros, mods will be installed to
+                # ${PYTHONLIB}/dist-packages
+                if dist in ('debian', 'Ubuntu'):
+                    sys.argv.append('--install-layout=deb')
+            except AttributeError:
+                pass
+
+
+def create_conf_file():
+    """Apply prefix to mic.conf.in to generate actual mic.conf"""
+    with open('etc/mic.conf.in') as source_file:
+        conf_str = source_file.read()
+        conf_str = conf_str.replace('@PREFIX@', PREFIX)
+        with open(CONF_FILE, 'w') as conf_file:
+            conf_file.write(conf_str)
+
 
 try:
-    # first line should be the version number
-    version = open(version_path).readline().strip()
-    if not version:
-        print 'VERSION file is invalid, abort'
-        sys.exit(1)
-
-    ver_file = open('%s/__version__.py' % MOD_NAME, 'w')
-    ver_file.write("VERSION = \"%s\"\n" % version)
-    ver_file.close()
-except IOError:
-    print 'WARNING: Cannot write version number file'
-    pass
-
-if sys.version_info[:2] > (2, 5):
-    if len(sys.argv) > 1 and 'install' in sys.argv:
-        lsbcmd = None
-        if os.path.exists('/usr/bin/lsb_release'):
-            lsbcmd = '/usr/bin/lsb_release'
-        elif os.path.exists('/bin/lsb_release'):
-            lsbcmd = '/bin/lsb_release'
-
-        if lsbcmd:
-            import subprocess
-            res = subprocess.Popen([lsbcmd, '-i'],
-                                   stdout=subprocess.PIPE
-                                  ).communicate()[0]
-            if 'Debian' in res or 'Ubuntu' in res:
-                sys.argv.append('--install-layout=deb')
+    import mic
+    VERSION = mic.__version__
+except (ImportError, AttributeError):
+    VERSION = "dev"
+
+check_debian()
 
 PACKAGES = [MOD_NAME,
             MOD_NAME + '/utils',
             MOD_NAME + '/imager',
-            MOD_NAME + '/urlgrabber',
             MOD_NAME + '/kickstart',
             MOD_NAME + '/kickstart/custom_commands',
-            MOD_NAME + '/pykickstart',
-            MOD_NAME + '/pykickstart/commands',
-            MOD_NAME + '/pykickstart/handlers',
+            MOD_NAME + '/3rdparty/pykickstart',
+            MOD_NAME + '/3rdparty/pykickstart/commands',
+            MOD_NAME + '/3rdparty/pykickstart/handlers',
+            MOD_NAME + '/3rdparty/pykickstart/urlgrabber',
            ]
 
+IMAGER_PLUGINS = glob.glob(os.path.join("plugins", "imager", "*.py"))
+BACKEND_PLUGINS = glob.glob(os.path.join("plugins", "backend", "*.py"))
+
+PREFIX = sys.prefix
+# if real_prefix, it must be in virtualenv, use prefix as root
+ROOT = sys.prefix if hasattr(sys, 'real_prefix') else ''
+
+CONF_FILE = 'etc/mic.conf'
+create_conf_file()
+
 setup(name=MOD_NAME,
-      version = version,
-      description = 'New MeeGo Image Creator',
-      author='Jian-feng Ding',
-      author_email='jian-feng.ding@intel.com',
-      url='https://meego.gitorious.org/meego-developer-tools/image-creator',
-      scripts=[
-          'tools/mic',
-          ],
-      packages = PACKAGES,
-      data_files = [("/usr/lib/mic/plugins/imager", ["plugins/imager/fs_plugin.py",
-                                                     "plugins/imager/livecd_plugin.py",
-                                                     "plugins/imager/liveusb_plugin.py",
-                                                     "plugins/imager/loop_plugin.py",
-                                                     "plugins/imager/raw_plugin.py",
-                                                     "plugins/imager/slp_plugin.py",
-                                                    ]),
-                    ("/usr/lib/mic/plugins/backend", ["plugins/backend/zypppkgmgr.py",
-                                                      "plugins/backend/yumpkgmgr.py",
-                                                     ]),
-                    ("/etc/mic", ["distfiles/mic.conf"])]
+  version = VERSION,
+  description = 'Image Creator for Linux Distributions',
+  author='Jian-feng Ding, Qiang Zhang, Gui Chen',
+  author_email='jian-feng.ding@intel.com, qiang.z.zhang@intel.com,\
+                gui.chen@intel.com',
+  url='https://github.com/01org/mic',
+  scripts=[
+      'tools/mic',
+      ],
+  packages = PACKAGES,
+  data_files = [("%s/lib/mic/plugins/imager" % PREFIX, IMAGER_PLUGINS),
+                ("%s/lib/mic/plugins/backend" % PREFIX, BACKEND_PLUGINS),
+                ("%s/etc/mic" % ROOT, [CONF_FILE])]
 )
-