X-Git-Url: http://git.onelab.eu/?p=sfa.git;a=blobdiff_plain;f=setup.py;h=a14972ca87903c8bb05114e55d2087287c01ea87;hp=0222695534ec1c9ac8663121e0841a0e3f087ec9;hb=6fb6722b5eaaae2738328b2cb99f92e6d724b471;hpb=ad6330d255e61373e8f506c9ced34715a2d9edac diff --git a/setup.py b/setup.py index 02226955..a14972ca 100755 --- a/setup.py +++ b/setup.py @@ -9,55 +9,44 @@ from glob import glob import shutil from distutils.core import setup -bins = [ +scripts = glob("sfa/clientbin/*.py") + \ + [ 'config/sfa-config-tty', 'config/gen-sfa-cm-config.py', - 'sfa/importer/sfa-import-plc.py', - 'sfa/importer/sfa-nuke-plc.py', - 'sfa/server/sfa-ca.py', 'sfa/server/sfa-start.py', - 'sfa/server/sfa-clean-peer-records.py', 'sfa/server/sfa_component_setup.py', - 'sfa/client/sfi.py', - 'sfa/client/getNodes.py', - 'sfa/client/getRecord.py', - 'sfa/client/setRecord.py', - 'sfa/client/sfadump.py', - 'sfa/client/sfiListNodes.py', - 'sfa/client/sfiListSlivers.py', - 'sfa/client/sfiAddSliver.py', - 'sfa/client/sfiDeleteSliver.py', - 'sfa/client/sfiAddAttribute.py', - 'sfa/client/sfiDeleteAttribute.py', 'sfatables/sfatables', 'keyconvert/keyconvert.py', 'flashpolicy/sfa_flashpolicy.py', ] -package_dirs = [ +packages = [ 'sfa', 'sfa/trust', + 'sfa/storage', 'sfa/util', - 'sfa/client', 'sfa/server', 'sfa/methods', 'sfa/generic', 'sfa/managers', 'sfa/importer', - 'sfa/plc', 'sfa/rspecs', 'sfa/rspecs/elements', 'sfa/rspecs/elements/versions', 'sfa/rspecs/versions', + 'sfa/client', + 'sfa/clientbin', + 'sfa/planetlab', + 'sfa/openstack', + 'sfa/federica', 'sfatables', 'sfatables/commands', 'sfatables/processors', ] - initscripts = [ 'sfa', 'sfa-cm' ] -data_files = [('/etc/sfa/', [ 'config/aggregates.xml', +data_files = [ ('/etc/sfa/', [ 'config/aggregates.xml', 'config/registries.xml', 'config/default_config.xml', 'config/sfi_config', @@ -70,9 +59,13 @@ data_files = [('/etc/sfa/', [ 'config/aggregates.xml', '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 ])] + ('/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)] @@ -88,7 +81,7 @@ if sys.argv[1] in ['uninstall', 'remove', 'delete', 'clean']: 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 bins ] + 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 @@ -108,9 +101,7 @@ if sys.argv[1] in ['uninstall', 'remove', 'delete', 'clean']: else: # avoid repeating what's in the specfile already setup(name='sfa', - packages = package_dirs, + packages = packages, data_files = data_files, - ext_modules = [], - py_modules = [], - scripts = bins) + scripts = scripts)