X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=setup.py;h=3098a5c5a8375b54e10769d4d57f0eae95a5e17b;hb=d3d730ebeab0a5dd7dfdf71ef489b17e73cd8702;hp=fe9c75ffd15bc348710293bc17b20aa55b82702f;hpb=115c220ddea863b078e31209d26109171124031b;p=sfa.git diff --git a/setup.py b/setup.py index fe9c75ff..3098a5c5 100755 --- a/setup.py +++ b/setup.py @@ -1,77 +1,154 @@ -#!/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, Extension - -scripts = [ 'geni/gimport.py', - 'geni/plc.py', - 'config/sfa-config-tty', - 'cmdline/sfi.py', - 'cmdline/getNodes.py', - 'cmdline/getRecord.py', - 'cmdline/setRecord.py', - 'cmdline/genidump.py', - ] -package_dirs = ['geni', 'geni/util', 'geni/methods'] -data_files = [ ('/etc/sfa/', ['config/aggregates.xml', 'config/registries.xml', - 'config/sfa_config', 'config/sfi_config']), - ('/etc/init.d/', ['geni/init.d/sfa']), - ('/var/www/html/wsdl', [ 'wsdl/sfa.wsdl' ] ), - ] -symlinks = ['/usr/share/geniwrapper'] -initscripts = ['/etc/init.d/geni'] - +from distutils.core import setup + +# 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 + 'geni' for path in python_path if path.endswith('site-packages')] - remove_dirs = ['/etc/sfa/'] + site_packages_path - remove_files = ['/usr/bin/gimport.py', '/usr/bin/plc.py', '/usr/bin/sfi.py', '/usr/bin/sfa-config-tty'] + \ - 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='geni', - 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 + 'geni' 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, +) +