X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=setup.py;h=ab111bf8b297c19b8e8faadcb25f6f73a8a41bdf;hb=ae8c3ef9652be2d40dc2b39473aab6f7a08f961f;hp=ded7f5ed3a8387dc920e1b0c0b9d964030b48dee;hpb=2d823c7ca7e9544b01ffa4abc83426b40842502a;p=sfa.git diff --git a/setup.py b/setup.py index ded7f5ed..ab111bf8 100755 --- a/setup.py +++ b/setup.py @@ -1,93 +1,156 @@ -#!/usr/bin/python +#!/usr/bin/env python + +from __future__ import print_function """ -Installation script for the geniwrapper module +Installation script for the sfa module """ -import os, sys +# as fas as pushing onto pypi, I have been using this page +# http://peterdowns.com/posts/first-time-with-pypi.html +# for setting up the whole business + +import sys, os, os.path +from glob import glob import shutil from distutils.core import setup -scripts = [ 'config/sfa-config-tty', - 'sfa/plc/sfa-import-plc.py', - 'sfa/server/sfa-server.py', - 'sfa/client/sfi.py', - 'sfa/client/getNodes.py', - 'sfa/client/getRecord.py', - 'sfa/client/setRecord.py', - 'sfa/client/genidump.py', - ] -package_dirs = [ 'sfa', - 'sfa/client', - 'sfa/methods', - 'sfa/plc', - 'sfa/server', - 'sfa/trust', - 'sfa/util', - ] -data_files = [ ('/etc/sfa/', [ 'config/aggregates.xml', - 'config/registries.xml', - 'config/sfa_config', - 'config/sfi_config', - ]), - ('/etc/init.d/', ['sfa/init.d/sfa']), - ] -symlinks = [ '/usr/share/sfa' ] -initscripts = [ '/etc/init.d/sfa' ] - +# check for the correct version of python +major, minor = sys.version_info [0:2] +if (major, minor) != (2, 7): + print ("Sorry, the SFA package is currently available only with python-2.7") + exit(1) + + +# while cleaning up we might not have this.. +try: + from sfa.util.version import version_tag +except: + version_tag='cleaningup' + +scripts = glob("clientbin/*.py") + \ + [ + 'config/sfa-config-tty', + 'config/sfa-config', +# 'config/gen-sfa-cm-config.py', + 'sfa/server/sfa-start.py', +# 'sfa/server/sfa_component_setup.py', + 'sfatables/sfatables', + 'keyconvert/keyconvert.py', + 'flashpolicy/sfa_flashpolicy.py', + ] + +packages = [ + 'sfa', + 'sfa/trust', + 'sfa/storage', + 'sfa/util', + 'sfa/server', + 'sfa/methods', + 'sfa/generic', + 'sfa/managers', + 'sfa/importer', + 'sfa/rspecs', + 'sfa/rspecs/elements', + 'sfa/rspecs/elements/versions', + 'sfa/rspecs/versions', + 'sfa/client', + 'sfa/planetlab', + 'sfa/nitos', + 'sfa/dummy', + 'sfa/openstack', + 'sfa/federica', + 'sfa/iotlab', + 'sfatables', + 'sfatables/commands', + 'sfatables/processors', + ] + +initscripts = [ 'sfa' ] +if not os.path.isfile('/etc/redhat-release'): + initscripts.append('functions.sfa') + +data_files = [ ('/etc/sfa/', [ 'config/aggregates.xml', + 'config/registries.xml', + 'config/default_config.xml', + 'config/api_versions.xml', + 'config/sfi_config', + 'config/topology', + 'sfa/managers/pl/pl.rng', + 'sfa/trust/credential.xsd', + 'sfa/trust/top.xsd', + 'sfa/trust/sig.xsd', + 'sfa/trust/xml.xsd', + 'sfa/trust/protogeni-rspec-common.xsd', + 'flashpolicy/sfa_flashpolicy_config.xml', + ]), + ('/etc/sfatables/matches/', glob('sfatables/matches/*.xml')), + ('/etc/sfatables/targets/', glob('sfatables/targets/*.xml')), + ('/etc/init.d/', [ "init.d/%s"%x for x in initscripts ]), + ('/usr/share/sfa/migrations', glob('sfa/storage/migrations/*.*') ), + ('/usr/share/sfa/migrations/versions', glob('sfa/storage/migrations/versions/*') ), + ('/usr/share/sfa/examples/', glob('sfa/examples/*' ) + [ 'cron.d/sfa.cron' ] ), + ] + +# add sfatables processors as data_files +processor_files = [f for f in glob('sfatables/processors/*') if os.path.isfile(f)] +data_files.append(('/etc/sfatables/processors/', processor_files)) +processor_subdirs = [d for d in glob('sfatables/processors/*') if os.path.isdir(d)] +for d in processor_subdirs: + etc_dir = os.path.join("/etc/sfatables/processors", os.path.basename(d)) + d_files = [f for f in glob(d + '/*') if os.path.isfile(f)] + data_files.append((etc_dir, processor_files)) + if sys.argv[1] in ['uninstall', 'remove', 'delete', 'clean']: python_path = sys.path - site_packages_path = [ path + os.sep + 'sfa' for path in python_path if path.endswith('site-packages')] - remove_dirs = ['/etc/sfa/'] + site_packages_path - remove_files = [ '/usr/bin/sfa-config-tty', - '/usr/bin/sfa-import-plc.py', - '/usr/bin/sfa-server.py', - '/usr/bin/sfi.py', - '/usr/bin/getNodes.py', - '/usr/bin/getRecord.py', - '/usr/bin/setRecord.py', - '/usr/bin/genidump.py', - ] + symlinks + initscripts - - # remove files + site_packages_path = [ os.path.join(p, 'sfa') for p in python_path if p.endswith('site-packages')] + site_packages_path += [ os.path.join(p, 'sfatables') for p in python_path if p.endswith('site-packages')] + remove_dirs = ['/etc/sfa/', '/etc/sfatables'] + site_packages_path + remove_bins = [ '/usr/bin/' + os.path.basename(bin) for bin in scripts ] + remove_files = remove_bins + [ "/etc/init.d/%s"%x for x in initscripts ] + + # remove files + def feedback (file, msg): + print ("removing", file, "...", msg) for filepath in remove_files: - print "removing", filepath, "...", - try: + try: os.remove(filepath) - print "success" - except: print "failed" - # remove directories - for directory in remove_dirs: - print "removing", directory, "...", - try: + feedback(filepath, "success") + except: + feedback(filepath, "failed") + # remove directories + for directory in remove_dirs: + try: shutil.rmtree(directory) - print "success" - except: print "failed" - + feedback (directory, "success") + except: + feedback (directory, "failed") else: - # avoid repeating what's in the specfile already - setup(name='sfa', - packages = package_dirs, - data_files = data_files, - ext_modules = [], - py_modules = [], - scripts = scripts, - ) - - # create symlink to geniwrapper source in /usr/share - python_path = sys.path - site_packages_path = [ path + os.sep + 'sfa' for path in python_path if path.endswith('site-packages')] - # python path usualy has /usr/local/lib/ path , filter this out - site_packages_path = [x for x in site_packages_path if 'local' not in x] - - # we can not do this here as installation root might change paths - # - baris - # - # for src in site_packages_path: - # for dst in symlinks: - # try: - # os.symlink(src, dst) - # except: pass - # for initscript in initscripts: - # os.chmod(initscript, 00744) + try: + with open("LICENSE.txt") as l: + license = l.read() + except: + license = "Could not open file LICENSE.txt" + try: + with open("index.html") as r: + long_description = r.read() + except: + long_description = "Unable to read index.html" + + setup( + name = 'sfa', + packages = packages, + data_files = data_files, + version = version_tag, + keywords = ['federation', 'testbeds', 'SFA', 'SfaWrap'], + url = "http://svn.planet-lab.org/wiki/SFATutorial", + author = "Thierry Parmentelat, Tony Mack, Scott Baker", + author_email = "thierry.parmentelat@inria.fr, tmack@princeton.cs.edu, smbaker@gmail.com", + download_url = "http://build.onelab.eu/sfa/{v}/sfa-{v}.tar.gz".format(v=version_tag), + description = "SFA Wrapper with drivers for PlanetLab and IotLab and others", + license = license, + long_description = long_description, + scripts = scripts, +) +