| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 | #----------------------------------------------------------------------# This file is used for maintenance of org on the server.#----------------------------------------------------------------------.PHONY:	helpserver \	release rel-dirty rel-up cleanrel \	elpa elpa-dirty elpa-up \	doc-up \	upload-release upload-elpa upload-doc upload \	tagwarn versionhelp helpall helpserver::	$(info )	$(info Maintenance)	$(info ===========)	$(info release             - clean up, create the distribution archives)	$(info elpa                - clean up, create the ELPA archive)	$(info upload-release      - clean up, populate the server with arhives)	$(info upload-elpa         - clean up, populate the server with ELPA)	$(info upload-doc          - clean up, populate the server with docs)	$(info upload              - clean up, populate the server with everything)helpserver::	@echo ""#----------------------------------------------------------------------SERVROOT ?= /var/www/orgmode.orgSERVERMK ?= true # or just any value at all, really#----------------------------------------------------------------------ORGCOMM  = README lisp/ORGFULL  = $(ORGCOMM) Makefile request-assign-future.txt \		      mk/default.mk mk/targets.mk mk/version.mk \		      mk/org-fixup.el \		      etc/ contrib/ doc/ORGFULL := $(ORGFULL:%/=%/*)ORGELPA  = $(ORGCOMM) doc/dir doc/org doc/orgcard.pdf \		      etc/styles/ org-pkg.elORGELPA := $(ORGELPA:%/=%/*)release:	cleanall info pdf card rel-dirty tagwarnrel-dirty rel-up:	ORGDIR=org-$(GITVERSION:release_%=%)rel-dirty:	@$(MAKE) GITVERSION=$(GITVERSION:release_%=%)-dist version autoloads	-@$(RM) $(ORGDIR) $(ORGTAR) $(ORGRZIP)	ln -s . $(ORGDIR)	tar -zcf $(ORGDIR).tar.gz $(foreach dist, $(ORGFULL), $(ORGDIR)/$(dist))	zip -r9  $(ORGDIR).zip    $(foreach dist, $(ORGFULL), $(ORGDIR)/$(dist))	-@$(RM) $(ORGDIR)rel-up:	info pdf card rel-dirty	$(CP) $(ORGDIR).tar.gz $(ORGDIR).zip $(SERVROOT)/PKG_TAG = $(shell date +%Y%m%d)PKG_DOC = "Outline-based notes management and organizer"PKG_REQ = "nil"elpa:		cleanall info card elpa-dirtyelpa-dirty elpa-up:	ORGDIR=org-$(PKG_TAG)elpa-dirty:	@$(MAKE) GITVERSION=$(GITVERSION:release_%=%)-elpa version autoloads	-@$(RM) $(ORGDIR) $(ORGTAR) $(ORGZIP)	ln -s . $(ORGDIR)	echo "(define-package \"org\" \"$(PKG_TAG)\" \"$(PKG_DOC)\" $(PKG_REQ))" \	  > org-pkg.el	tar --exclude=Makefile --transform='s:\(lisp\|doc\)/::' -cf $(ORGDIR).tar \	  $(foreach dist, $(ORGELPA), $(ORGDIR)/$(dist))	-@$(RM) $(ORGDIR) org-pkg.elelpa-up:	info card elpa-dirty	$(CP) $(ORGDIR).tar $(SERVROOT)/pkg/daily/tagwarn:	$(if $(filter-out $(ORGVERSION), $(GITVERSION)), \	  $(info  ======================================================) \	  $(info  =                                                    =) \	  $(info  = A release should only be made from a revision that =) \	  $(info  = has an annotated tag!                              =) \	  $(info  =                                                    =) \	  $(info  ======================================================))version:	@echo ORGVERSION=$(ORGVERSION) GITVERSION=$(GITVERSION)$(ORGDIST)	@echo "ORGVERSION	?= $(ORGVERSION)"  > mk/version.mk	@echo "GITVERSION	?= $(GITVERSION)" >> mk/version.mkcleanall clean:	cleanrelcleanrel:	-$(RM) org-$(PKG_TAG)* org-$(DISTVERSION)* org-*.zip org-*.tar* mk/version.mkdoc-up:	info pdf card html	$(MAKE) -C doc manual guide	$(CP) doc/org.html $(SERVROOT)	$(CP) doc/manual/* $(SERVROOT)/manual	$(CP) doc/guide/*  $(SERVROOT)/guideupload:		cleanall elpa-up rel-up doc-upupload-elpa:	cleanall elpa-upupload-release:	cleanall rel-upupload-doc:	cleanall doc-up
 |