2 SPECFILE = $(NAME).spec
3 VERSION = $(shell rpm -q --specfile $(SPECFILE) --qf '%{VERSION}\n' | head -n 1)
4 RELEASE = $(shell rpm -q --specfile $(SPECFILE) --qf '%{RELEASE}\n' | head -n 1)
6 UPLOAD_SLICE=princeton_planetstack
10 dist rpm: $(NAME)-$(VERSION)-$(RELEASE).rpm
12 $(NAME)-$(VERSION).tar.gz:
13 mkdir -p $(NAME)-$(VERSION)
14 rsync -av --exclude=.svn --exclude=.git --exclude=*.tar.gz --exclude=*.rpm --exclude=__history --exclude=$(NAME)-$(VERSION)/ ./ $(NAME)-$(VERSION)
15 tar -czf $@ $(NAME)-$(VERSION)
16 rm -fr $(NAME)-$(VERSION)
18 $(NAME)-$(VERSION)-$(RELEASE).rpm: $(NAME)-$(VERSION).tar.gz
20 rpmbuild -bb --define '_sourcedir $(PWD)' \
21 --define '_builddir $(PWD)/build' \
22 --define '_srcrpmdir $(PWD)' \
23 --define '_rpmdir $(PWD)' \
24 --define '_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm' \
27 srpm: $(NAME)-$(VERSION)-$(RELEASE).src.rpm
28 $(NAME)-$(VERSION)-$(RELEASE).src.rpm: $(NAME)-$(VERSION).tar.gz
29 rpmbuild -bs --define "_sourcedir $$(pwd)" \
30 --define "_srcrpmdir $$(pwd)" \
34 rm -f $(NAME)-$(VERSION).tar.gz $(NAME)-$(VERSION)-$(RELEASE).src.rpm $(NAME)-$(VERSION)-$(RELEASE).noarch.rpm
37 upload: $(NAME)-$(VERSION)-$(RELEASE).rpm
39 $(error please specify UPLOAD_HOST=<hostname> on make command line)
41 scp $(NAME)-$(VERSION)-$(RELEASE).x86_64.rpm $(UPLOAD_SLICE)@$(UPLOAD_HOST):/root/
44 ssh $(UPLOAD_SLICE)@$(UPLOAD_HOST) yum -y install gcc graphviz-devel graphviz-python postgresql postgresql-server python-pip python-psycopg2 libxslt-devel python-httplib2 GeoIP
45 ssh $(UPLOAD_SLICE)@$(UPLOAD_HOST) rpm --install --upgrade --replacefiles --replacepkgs /root/$(NAME)-$(VERSION)-$(RELEASE).x86_64.rpm
46 scp /opt/planetstack/hpc_wizard/bigquery_credentials.dat /opt/planetstack/hpc_wizard/client_secrets.json $(UPLOAD_SLICE)@$(UPLOAD_HOST):/opt/planetstack/hpc_wizard/
50 $(error please specify UPLOAD_HOST=<hostname> on make command line)
52 scp /opt/planetstack/hpc_wizard/bigquery_credentials.dat /opt/planetstack/hpc_wizard/client_secrets.json $(UPLOAD_SLICE)@$(UPLOAD_HOST):/opt/planetstack/hpc_wizard/