- make matches and targets loaded w/o making hem python packages
[sfa.git] / setup.py
index fa07aef..36487dd 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -4,27 +4,88 @@
 Installation script for the geniwrapper module
 """
 
-from distutils.core import setup, Extension
-import os, sys
-
-version = '0.2'
-scripts = ['geni/gimport.py', 'geni/plc.py', 'cmdline/sfi.py']
-package_dirs = ['geni', 'geni/util', 'geni/methods']
-data_files = [('/etc/geni/', ['geni/aggregates.xml', 'geni/registries.xml', 'geni/util/geni_config'])]
-
-
-setup(name='geniwrapper', 
-      version = version,
-      packages = package_dirs, 
-      data_files = data_files,
-      ext_modules = [],
-      py_modules = [],
-      scripts = scripts,   
-      url = 'http://svn.planet-lab.org/svn/geniwrapper/',
-      description = "Geni api",      
-      long_description = """\
-Geniwrapper implements the Geni interface which serves 
-as a layer between the existing PlanetLab interfaces 
-and the Geni API.
-                    """,
-      license = 'GPL')
+import sys, os, os.path
+from glob import glob
+import shutil
+from distutils.core import setup
+
+bins = [ 'config/sfa-config-tty',
+            'sfa/plc/sfa-import-plc.py', 
+            'sfa/plc/sfa-nuke-plc.py', 
+            'sfa/server/sfa-server.py', 
+            'sfa/server/sfa-clean-peer-records.py', 
+            'sfa/client/sfi.py', 
+            'sfa/client/getNodes.py',
+            'sfa/client/getRecord.py',
+            'sfa/client/setRecord.py',
+            'sfa/client/genidump.py',
+            'sfatables/sfatables',
+            ]
+
+package_dirs = [ 'sfa', 
+                 'sfa/client',
+                 'sfa/methods',
+                 'sfa/plc',
+                 'sfa/server',
+                 'sfa/trust',
+                 'sfa/util', 
+                 'sfa/rspecs',
+                 'sfa/rspecs/aggregates',
+                 'sfa/rspecs/aggregates/vini',
+                 'sfatables',
+                 'sfatables/commands',
+                 'sfatables/processors',
+                 ]
+
+
+data_files = [('/etc/sfa/', [ 'config/aggregates.xml',
+                              'config/registries.xml',
+                              'config/sfa_config',
+                              'config/sfi_config']),
+              ('/etc/sfatables/matches/', glob('sfatables/matches/*.xml')),
+              ('/etc/sfatables/targets/', glob('sfatables/targets/*.xml')),
+              ('/etc/init.d/', ['sfa/init.d/sfa'])]
+
+# 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))
+
+initscripts = [ '/etc/init.d/sfa' ]
+
+if sys.argv[1] in ['uninstall', 'remove', 'delete', 'clean']:
+    python_path = sys.path
+    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_files = remove_bins + initscripts
+
+    # remove files   
+    for filepath in remove_files:
+        print "removing", filepath, "...",
+        try: 
+            os.remove(filepath)
+            print "success"
+        except: print "failed"
+    # remove directories 
+    print remove_dirs
+    for directory in remove_dirs: 
+        print "removing", directory, "...",
+        try: 
+            shutil.rmtree(directory)
+            print "success"
+        except: print "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 = bins)
+