X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile;h=c8cc28dc9b3fd0fe3a3623ab08847adbe41706b4;hb=3961165f3cbf33b0b154db3140398e0ed383acbd;hp=65c9137379531a803627d47eabf1ac1a03ce34a6;hpb=aae88cbfd7b35970f8a8aef31aa7fb95101640dd;p=sfa.git diff --git a/Makefile b/Makefile index 65c91373..c8cc28dc 100644 --- a/Makefile +++ b/Makefile @@ -1,72 +1,145 @@ # -## (Re)builds Python metafile (__init__.py) and documentation +## (Re)builds Python metafile (__init__.py) # # overwritten by the specfile DESTDIR="/" -init := geni/__init__.py geni/util/__init__.py geni/methods/__init__.py -subdirs := keyconvert #pyOpenSSL-0.9 +########## +all: python wsdl -all: install +install: python-install wsdl-install xmlbuilder-install tests-install -install: $(init) $(subdirs) install-python +clean: python-clean wsdl-clean -install-python: - python setup.py install --root=$(DESTDIR) --record=GENI_INSTALLED_FILES +uninstall: python-uninstall tests-uninstall -$(subdirs): $(init) +.PHONY: all install clean uninstall -$(subdirs): %: - $(MAKE) -C $@ +VERSIONTAG=0.0-0-should.be-redefined-by-specfile +SCMURL=should-be-redefined-by-specfile -clean: +########## +python: version + +version: sfa/util/version.py +sfa/util/version.py: sfa/util/version.py.in + sed -e "s,@VERSIONTAG@,$(VERSIONTAG),g" -e "s,@SCMURL@,$(SCMURL),g" sfa/util/version.py.in > $@ + +xmlbuilder-install: + cd xmlbuilder-0.9 && python setup.py install --root=$(DESTDIR) && cd - + +python-install: + python setup.py install --root=$(DESTDIR) + chmod 444 $(DESTDIR)/etc/sfa/default_config.xml + +python-clean: version-clean python setup.py clean - for i in $(subdirs); do make -C $$i clean ; done +# rm $(init) -index: $(init) +version-clean: + rm -f sfa/util/version.py -index-clean: - rm $(init) +.PHONY: python version python-install python-clean version-clean xmlbuilder-install +########## +wsdl: + $(MAKE) -C wsdl -.phony: all install install-python force clean index $(subdirs) +# propagate DESTDIR from the specfile +wsdl-install: + $(MAKE) -C wsdl install -force: +wsdl-clean: + $(MAKE) -C wsdl clean -# are the .java files used ? -tags: - find . -name '*.py' -o -name '*.sh' -o -name '*.ecore' | grep -v '/\.svn/' | xargs etags +.PHONY: wsdl wsdl-install wsdl-clean + +########## +tests-install: + mkdir -p $(DESTDIR)/usr/share/sfa/tests + install -m 755 tests/*.py $(DESTDIR)/usr/share/sfa/tests/ + +tests-uninstall: + rm -rf $(DESTDIR)/usr/share/sfa/tests + +.PHONY: tests-install tests-uninstall -########## indexes -geni/__init__.py: - (echo '## Please use make index to update this file' ; echo 'all = """' ; cd geni; ls -1 *.py | grep -v __init__ | sed -e 's,.py$$,,' ; echo '""".split()') > $@ +########## refreshing methods package metafile +# Metafiles - manage Legacy/ and Accessors by hand +init := sfa/methods/__init__.py -geni/methods/__init__.py: - (echo '## Please use make index to update this file' ; echo 'all = """' ; cd geni/methods; ls -1 *.py | grep -v __init__ | sed -e 's,.py$$,,' ; echo '""".split()') > $@ +index: $(init) -geni/util/__init__.py: - (echo '## Please use make index to update this file' ; echo 'all = """' ; cd geni/util; ls -1 *.py | grep -v __init__ | sed -e 's,.py$$,,' ; echo '""".split()') > $@ +index-clean: + rm $(init) -geni_now := $(sort $(shell fgrep -v '"' geni/__init__.py 2>/dev/null)) +methods_now := $(sort $(shell fgrep -v '"' sfa/methods/__init__.py 2>/dev/null)) # what should be declared -geni_paths := $(filter-out %/__init__.py, $(wildcard geni/*.py)) -geni_files := $(sort $(notdir $(geni_paths:.py=))) -ifneq ($(geni_now), $(geni_files)) -geni/__init__.py: force +methods_paths := $(filter-out %/__init__.py, $(wildcard sfa/methods/*.py)) +methods_files := $(sort $(notdir $(methods_paths:.py=))) + +ifneq ($(methods_now),$(methods_files)) +sfa/methods/__init__.py: force endif +sfa/methods/__init__.py: + (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()') > $@ -methods_now := $(sort $(shell fgrep -v '"' geni/methods/__init__.py 2>/dev/null)) -# what should be declared -method_paths := $(filter-out %/__init__.py, $(wildcard geni/methods/*.py)) -method_files := $(sort $(notdir $(method_paths:.py=))) -ifneq ($(methods_now), $(methods_files)) -geni/methods/__init__.py: force +force: + +########## +tags: + find . -type f | egrep -v '/\.git/|/\.svn/|TAGS|~$$|\.(py[co]|doc|html|pdf|png|svg|out|bak|xml|dg)$$' | xargs etags +.PHONY: tags + +signatures: + (cd sfa/methods; grep 'def.*call' *.py > SIGNATURES) +.PHONY: signatures + +########## sync +# 2 forms are supported +# (*) if your plc root context has direct ssh access: +# make sync PLC=private.one-lab.org +# (*) otherwise, entering through the root context +# make sync PLCHOST=testbox1.inria.fr GUEST=vplc03.inria.fr + +PLCHOST ?= testplc.onelab.eu + +ifdef GUEST +ifdef PLCHOST +SSHURL:=root@$(PLCHOST):/vservers/$(GUEST) +SSHCOMMAND:=ssh root@$(PLCHOST) vserver $(GUEST) +endif +endif +ifdef PLC +SSHURL:=root@$(PLC):/ +SSHCOMMAND:=ssh root@$(PLC) endif -util_now := $(sort $(shell fgrep -v '"' geni/util/__init__.py 2>/dev/null)) -# what should be declared -util_paths := $(filter-out %/__init__.py, $(wildcard geni/util/*.py)) -util_files := $(sort $(notdir $(util_paths:.py=))) -ifneq ($(util_now), $(util_files)) -geni/util/__init__.py: force +LOCAL_RSYNC_EXCLUDES += --exclude '*.pyc' +LOCAL_RSYNC_EXCLUDES += --exclude '*.png' --exclude '*.svg' --exclude '*.out' +RSYNC_EXCLUDES := --exclude .svn --exclude .git --exclude '*~' --exclude TAGS $(LOCAL_RSYNC_EXCLUDES) +RSYNC_COND_DRY_RUN := $(if $(findstring n,$(MAKEFLAGS)),--dry-run,) +RSYNC := rsync -a -v $(RSYNC_COND_DRY_RUN) --no-owner $(RSYNC_EXCLUDES) + +CLIENTS = sfi.py getNodes.py getRecord.py setRecord.py \ +sfiAddAttribute.py sfiAddSliver.py sfiDeleteAttribute.py sfiDeleteSliver.py sfiListNodes.py \ +sfiListSlivers.py sfadump.py + +BINS = ./config/sfa-config-tty ./config/gen-sfa-cm-config.py \ + ./sfa/plc/sfa-import-plc.py ./sfa/plc/sfa-nuke-plc.py ./sfa/server/sfa-start.py \ + $(foreach client,$(CLIENTS),./sfa/client/$(client)) + +sync: +ifeq (,$(SSHURL)) + @echo "sync: You must define, either PLC, or PLCHOST & GUEST, on the command line" + @echo " e.g. make sync PLC=private.one-lab.org" + @echo " or make sync PLCHOST=testbox1.inria.fr GUEST=vplc03.inria.fr" + @exit 1 +else + +$(RSYNC) ./sfa/ $(SSHURL)/usr/lib\*/python2.\*/site-packages/sfa/ + +$(RSYNC) ./tests/ $(SSHURL)/root/tests-sfa + +$(RSYNC) $(BINS) $(SSHURL)/usr/bin + $(SSHCOMMAND) exec service sfa restart endif +.PHONY: sync +##########