X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile;h=79b71c5a7712a7c08fd4b1f37576131200476ccf;hb=b9ae62cc0463f168771bf3d4ebf348bb920acb4f;hp=93c808b9d6f972dce2ee1f7a7d5a8173d90b134d;hpb=c03f386095ce337626738f3dbde790a7266f40a0;p=sfa.git diff --git a/Makefile b/Makefile index 93c808b9..79b71c5a 100644 --- a/Makefile +++ b/Makefile @@ -30,10 +30,15 @@ sfa/util/version.py: 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 @@ -91,7 +96,7 @@ 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|xml|dg)$$' + @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 @@ -133,30 +138,53 @@ 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) -sync: +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) ./sfa/ $(SSHURL)/usr/lib\*/python2.\*/site-packages/sfa/ - +$(RSYNC) ./tests/ $(SSHURL)/root/tests-sfa +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/ - +$(RSYNC) ./sfa/storage/sfa.sql $(SSHURL)/usr/share/sfa/ +synctest: synccheck + +$(RSYNC) ./tests/ $(SSHURL)/root/tests-sfa +syncrestart: synccheck $(SSHCOMMAND) exec service sfa restart -endif +syncmig: + +$(RSYNC) ./sfa/storage/migrations $(SSHURL)/usr/share/sfa/ + + +# full-fledged +sync: synclib syncbin syncinit syncconfig syncrestart # 99% of the time this is enough -fastsync: - +$(RSYNC) ./sfa/ $(SSHURL)/usr/lib\*/python2.\*/site-packages/sfa/ - $(SSHCOMMAND) exec service sfa restart +syncfast: synclib syncrestart -clientsync: - +$(RSYNC) $(BINS) $(SSHURL)/usr/bin/ +.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: sync fastsync clientsync +.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)