aboutsummaryrefslogblamecommitdiffstats
path: root/src/Makefile
blob: 6d918865e6cef52293b6aea5c06bda4166b907f9 (plain) (tree)
1
2
3
4
5
6
7
8




                                       
                                                                
                                         
                                  



    
                                                         
 


                                                         
            
                                                                             

                                                                                      
          

                                                             
                                   
 
              
                                                            
                            
                                                           
                                                     


                                                                                 
                                             


                                                                  
              



                                                                                                           










                                                                                 




                               
                                                 
 
      
                                                                                        

    
                             
#
# Makefile for sos system support tools
#

NAME    = sos
VERSION = $(shell grep -e 'version = ' setup.py |cut -d \' -f 2)
REPO = https://sos.108.redhat.com/svn/sos
SVNTAG  = r$(subst .,-,$(VERSION))


all:

.PHONY: tag-release tarball release install version clean

diff-tag-release:
	svn diff $(REPO)/trunk/src $(REPO)/tags/$(SVNTAG)

tag-release:
	@if ( svn list $(REPO)/tags/$(SVNTAG)/Makefile &> /dev/null ); then \
		echo "The repository already contains a tag for version $(VERSION)"; \
		exit 1; \
	fi
	@svn copy $(REPO)/trunk/src $(REPO)/tags/$(SVNTAG) \
	-m "Tagging the $(SVNTAG) release of the sos project"
	@echo "Tagged as $(SVNTAG)"

tarball: clean
	@echo "Creating an archive from HEAD of development"
	@rm -rf /tmp/$(NAME)
	@svn export -q $(REPO)/trunk/src     /tmp/$(NAME) \
	 || echo GRRRrrrrr -- ignore [export aborted]
	@mv /tmp/$(NAME) /tmp/$(NAME)-$(VERSION)
	@cd /tmp; tar --bzip2 -cSpf $(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION)
	@rm -rf /tmp/$(NAME)-$(VERSION)
	@mv /tmp/$(NAME)-$(VERSION).tar.bz2 .
	@echo " "
	@echo "The final archive is ./$(NAME)-$(VERSION).tar.bz2."

release: clean
	@if ( ! svn list $(REPO)/tags/$(SVNTAG)/Makefile &> /dev/null ); then \
		echo "There is no tag in the repository for this version, must be tagged before release"; \
		exit 1; \
	fi
	@echo "Creating an archive from tag $(SVNTAG)"
	@rm -rf /tmp/$(NAME)
	@svn export -q $(REPO)/tags/$(SVNTAG)     /tmp/$(NAME) \
	 || echo GRRRrrrrr -- ignore [export aborted]
	@mv /tmp/$(NAME) /tmp/$(NAME)-$(VERSION)
	@cd /tmp; tar --bzip2 -cSpf $(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION)
	@rm -rf /tmp/$(NAME)-$(VERSION)
	@cp /tmp/$(NAME)-$(VERSION).tar.bz2 .
	@rm -f /tmp/$(NAME)-$(VERSION).tar.bz2
	@echo " "
	@echo "The final archive is ./$(NAME)-$(VERSION).tar.bz2."

install:
	python setup.py install

version:
	@echo "The version is $(NAME)-$(VERSION)"

clean:
	@rm -fv *~ .*~ changenew ChangeLog.old $(NAME)-$(VERSION).tar.bz2 sosreport.1.gz

rpm:
	rpmbuild -ba sos.spec