forked from onelab-eu/sfa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·154 lines (138 loc) · 5.4 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#!/usr/bin/env python
from __future__ import print_function
"""
Installation script for the sfa module
"""
# 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
# 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 = [ 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:
try:
os.remove(filepath)
feedback(filepath,"success")
except:
feedback(filepath,"failed")
# remove directories
for directory in remove_dirs:
try:
shutil.rmtree(directory)
feedback (directory,"success")
except:
feedback (directory, "failed")
else:
# avoid repeating what's in the specfile already
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",
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,
)