2 ## (Re)builds Python metafile (__init__.py)
4 # overwritten by the specfile
10 install: python-install wsdl-install xmlbuilder-install tests-install
12 clean: python-clean wsdl-clean
14 uninstall: python-uninstall tests-uninstall
16 .PHONY: all install clean uninstall
19 rpmversion:=$(shell rpm -q --specfile sfa.spec --queryformat="%{version}\n" | head -1)
20 # somehow %{taglevel} is empty, turns out %{release} has what we want
21 rpmtaglevel:=$(shell rpm -q --specfile sfa.spec --queryformat="%{release}\n" 2> /dev/null | head -1)
22 VERSIONTAG=$(rpmversion)-$(rpmtaglevel)
23 SCMURL=should-be-redefined-by-specfile
27 version: sfa/util/version.py
28 sfa/util/version.py: sfa/util/version.py.in
29 sed -e "s,@VERSIONTAG@,$(VERSIONTAG),g" -e "s,@SCMURL@,$(SCMURL),g" sfa/util/version.py.in > $@
32 cd xmlbuilder-0.9 && python setup.py install --root=$(DESTDIR) && cd -
33 rm -rf $(DESTDIR)/usr/lib*/python*/site-packages/*egg-info
35 # postinstall steps - various cleanups and tweaks for a nicer rpm
37 python setup.py install --root=$(DESTDIR)
38 chmod 444 $(DESTDIR)/etc/sfa/default_config.xml
39 rm -rf $(DESTDIR)/usr/lib*/python*/site-packages/*egg-info
40 rm -rf $(DESTDIR)/usr/lib*/python*/site-packages/sfa/storage/sfa.sql
41 (cd $(DESTDIR)/usr/bin ; ln -s sfi.py sfi; ln -s sfascan.py sfascan)
43 python-clean: version-clean
48 rm -f sfa/util/version.py
50 .PHONY: python version python-install python-clean version-clean xmlbuilder-install
55 # propagate DESTDIR from the specfile
57 $(MAKE) -C wsdl install
62 .PHONY: wsdl wsdl-install wsdl-clean
66 mkdir -p $(DESTDIR)/usr/share/sfa/tests
67 install -m 755 tests/*.py $(DESTDIR)/usr/share/sfa/tests/
70 rm -rf $(DESTDIR)/usr/share/sfa/tests
72 .PHONY: tests-install tests-uninstall
74 ########## refreshing methods package metafile
75 # Metafiles - manage Legacy/ and Accessors by hand
76 init := sfa/methods/__init__.py
83 methods_now := $(sort $(shell fgrep -v '"' sfa/methods/__init__.py 2>/dev/null))
84 # what should be declared
85 methods_paths := $(filter-out %/__init__.py, $(wildcard sfa/methods/*.py))
86 methods_files := $(sort $(notdir $(methods_paths:.py=)))
88 ifneq ($(methods_now),$(methods_files))
89 sfa/methods/__init__.py: force
91 sfa/methods/__init__.py:
92 (echo '## Please use make index to update this file' ; echo 'all = """' ; cd sfa/methods; ls -1 *.py | grep -v __init__ | sed -e 's,.py$$,,' ; echo '""".split()') > $@
97 # a lot of stuff in the working dir is just noise
99 @find . -type f | egrep -v '^\./\.|/\.git/|/\.svn/|TAGS|AA-|~$$|egg-info|\.(py[co]|doc|html|pdf|png|svg|out|bak|dg)$$'
101 $(MAKE) scan | xargs etags
106 (cd sfa/methods; grep 'def.*call' *.py > SIGNATURES)
110 # 2 forms are supported
111 # (*) if your plc root context has direct ssh access:
112 # make sync PLC=private.one-lab.org
113 # (*) otherwise, entering through the root context
114 # make sync PLCHOST=testbox1.inria.fr GUEST=vplc03.inria.fr
116 PLCHOST ?= testplc.onelab.eu
120 SSHURL:=root@$(PLCHOST):/vservers/$(GUEST)
121 SSHCOMMAND:=ssh root@$(PLCHOST) vserver $(GUEST)
125 SSHURL:=root@$(PLC):/
126 SSHCOMMAND:=ssh root@$(PLC)
129 LOCAL_RSYNC_EXCLUDES += --exclude '*.pyc'
130 LOCAL_RSYNC_EXCLUDES += --exclude '*.png' --exclude '*.svg' --exclude '*.out'
131 RSYNC_EXCLUDES := --exclude .svn --exclude .git --exclude '*~' --exclude TAGS $(LOCAL_RSYNC_EXCLUDES)
132 RSYNC_COND_DRY_RUN := $(if $(findstring n,$(MAKEFLAGS)),--dry-run,)
133 RSYNC := rsync -a -v $(RSYNC_COND_DRY_RUN) --no-owner $(RSYNC_EXCLUDES)
135 CLIENTS = $(shell ls sfa/clientbin/*.py)
137 BINS = ./config/sfa-config-tty ./config/gen-sfa-cm-config.py \
138 ./sfa/importer/sfa-import-plc.py ./sfa/importer/sfa-nuke-plc.py ./sfa/server/sfa-start.py \
143 @echo "sync: You must define, either PLC, or PLCHOST & GUEST, on the command line"
144 @echo " e.g. make sync PLC=private.one-lab.org"
145 @echo " or make sync PLCHOST=testbox1.inria.fr GUEST=vplc03.inria.fr"
148 +$(RSYNC) --relative ./sfa/ $(SSHURL)/usr/lib\*/python2.\*/site-packages/
149 +$(RSYNC) ./tests/ $(SSHURL)/root/tests-sfa
150 +$(RSYNC) $(BINS) $(SSHURL)/usr/bin/
151 +$(RSYNC) ./init.d/sfa $(SSHURL)/etc/init.d/
152 +$(RSYNC) ./config/default_config.xml $(SSHURL)/etc/sfa/
153 +$(RSYNC) ./sfa/storage/sfa.sql $(SSHURL)/usr/share/sfa/
154 $(SSHCOMMAND) exec service sfa restart
157 # 99% of the time this is enough
159 +$(RSYNC) --relative ./sfa/ $(SSHURL)/usr/lib\*/python2.\*/site-packages/
160 $(SSHCOMMAND) exec service sfa restart
163 +$(RSYNC) $(BINS) $(SSHURL)/usr/bin/
166 +$(RSYNC) --relative ./sfa/fd ./sfa/generic/fd.py ./sfa/rspecs/versions/federica.py $(SSHURL)/usr/lib\*/python2.\*/site-packages/
168 .PHONY: sync fastsync clientsync
172 sfa/examples/miniclient.py \
174 sfa/client/{sfaserverproxy,sfaclientlib,__init__}.py \
175 sfa/trust/{certificate,__init__}.py \
176 sfa/util/{sfalogging,faults,genicode,enumeration,__init__}.py
179 @[ -d "$(CLIENTLIBTARGET)" ] || { echo "You need to set the make variable CLIENTLIBTARGET"; exit 1; }
180 rsync -av --relative $(CLIENTLIBFILES) $(CLIENTLIBTARGET)