X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile;h=79b71c5a7712a7c08fd4b1f37576131200476ccf;hb=b9ae62cc0463f168771bf3d4ebf348bb920acb4f;hp=5fddce6f7c5e6ebeec66503b52c8aa540226287f;hpb=06ae08c6669e2b380e81ea99398981eabbae2277;p=sfa.git diff --git a/Makefile b/Makefile index 5fddce6f..79b71c5a 100644 --- a/Makefile +++ b/Makefile @@ -1,76 +1,110 @@ # -## (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 $@ +########## +rpmversion:=$(shell rpm -q --specfile sfa.spec --queryformat="%{version}\n" | head -1) +# somehow %{taglevel} is empty, turns out %{release} has what we want +rpmtaglevel:=$(shell rpm -q --specfile sfa.spec --queryformat="%{release}\n" 2> /dev/null | head -1) +VERSIONTAG=$(rpmversion)-$(rpmtaglevel) +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 - + rm -rf $(DESTDIR)/usr/lib*/python*/site-packages/*egg-info + +# postinstall steps - various cleanups and tweaks for a nicer rpm +python-install: + python setup.py install --root=$(DESTDIR) + chmod 444 $(DESTDIR)/etc/sfa/default_config.xml + rm -rf $(DESTDIR)/usr/lib*/python*/site-packages/*egg-info + rm -rf $(DESTDIR)/usr/lib*/python*/site-packages/sfa/storage/migrations + (cd $(DESTDIR)/usr/bin ; ln -s sfi.py sfi; ln -s sfascan.py sfascan) + +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 -########## 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()') > $@ +.PHONY: tests-install tests-uninstall -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()') > $@ +########## refreshing methods package metafile +# Metafiles - manage Legacy/ and Accessors by hand +init := sfa/methods/__init__.py -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: $(init) -geni_now := $(sort $(shell fgrep -v '"' geni/__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 -endif +index-clean: + rm $(init) -methods_now := $(sort $(shell fgrep -v '"' geni/methods/__init__.py 2>/dev/null)) +methods_now := $(sort $(shell fgrep -v '"' sfa/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 -endif +methods_paths := $(filter-out %/__init__.py, $(wildcard sfa/methods/*.py)) +methods_files := $(sort $(notdir $(methods_paths:.py=))) -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 +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()') > $@ + +force: + +########## +# a lot of stuff in the working dir is just noise +scan: + @find . -type f | egrep -v '^\./\.|/\.git/|/\.svn/|TAGS|AA-|~$$|egg-info|\.(py[co]|doc|html|pdf|png|svg|out|bak|dg)$$' +tags: + $(MAKE) scan | xargs etags + +.PHONY: scan tags + +signatures: + (cd sfa/methods; grep 'def.*call' *.py > SIGNATURES) +.PHONY: signatures ########## sync # 2 forms are supported @@ -79,6 +113,8 @@ endif # (*) 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) @@ -90,19 +126,65 @@ SSHURL:=root@$(PLC):/ SSHCOMMAND:=ssh root@$(PLC) endif -LOCAL_RSYNC_EXCLUDES := --exclude '*.pyc' -RSYNC_EXCLUDES := --exclude .svn --exclude CVS --exclude '*~' --exclude TAGS $(LOCAL_RSYNC_EXCLUDES) +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) $(RSYNC_EXCLUDES) +RSYNC := rsync -a -v $(RSYNC_COND_DRY_RUN) --no-owner $(RSYNC_EXCLUDES) + +CLIENTS = $(shell ls sfa/clientbin/*.py) -sync: +BINS = ./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-start.py \ + $(CLIENTS) + +synccheck: ifeq (,$(SSHURL)) - @echo "sync: You must define, either PLC, or PLCHOST & GUEST, on the command line" + @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) ./geni/ $(SSHURL)/usr/lib/python2.5/site-packages/geni/ - +$(RSYNC) geni-config-tty $(SSHURL)/usr/bin endif + +synclib: synccheck + +$(RSYNC) --relative ./sfa/ $(SSHURL)/usr/lib\*/python2.\*/site-packages/ +syncbin: synccheck + +$(RSYNC) $(BINS) $(SSHURL)/usr/bin/ +syncinit: synccheck + +$(RSYNC) ./init.d/sfa $(SSHURL)/etc/init.d/ +syncconfig: + +$(RSYNC) ./config/default_config.xml $(SSHURL)/etc/sfa/ +synctest: synccheck + +$(RSYNC) ./tests/ $(SSHURL)/root/tests-sfa +syncrestart: synccheck + $(SSHCOMMAND) exec service sfa restart + +syncmig: + +$(RSYNC) ./sfa/storage/migrations $(SSHURL)/usr/share/sfa/ + + +# full-fledged +sync: synclib syncbin syncinit syncconfig syncrestart +# 99% of the time this is enough +syncfast: synclib syncrestart + +.PHONY: synccheck synclib syncbin syncconfig synctest syncrestart sync syncfast + +syncrica: synccheck + +$(RSYNC) --relative ./sfa/fd ./sfa/generic/fd.py ./sfa/rspecs/versions/federica.py $(SSHURL)/usr/lib\*/python2.\*/site-packages/ + $(SSHCOMMAND) exec service sfa restart + +.PHONY: syncrica + +########## +CLIENTLIBFILES= \ +sfa/examples/miniclient.py \ +sfa/__init__.py \ +sfa/client/{sfaserverproxy,sfaclientlib,__init__}.py \ +sfa/trust/{certificate,__init__}.py \ +sfa/util/{sfalogging,faults,genicode,enumeration,__init__}.py + +clientlibsync: + @[ -d "$(CLIENTLIBTARGET)" ] || { echo "You need to set the make variable CLIENTLIBTARGET"; exit 1; } + rsync -av --relative $(CLIENTLIBFILES) $(CLIENTLIBTARGET)