# -*-Makefile-*- # This Makefile fragment is shared between fileutils, sh-utils, textutils. maintainer-check: if head ChangeLog| grep 'Version $(VERSION)' > /dev/null; then \ :; \ else \ echo "$(VERSION) not in ChangeLog; not tagging" 1>&2; \ exit 1; \ fi $(MAKE) distcheck $(MAKE) my-distcheck prev-version := $(shell echo $(VERSION)|tr a-z Xa-y) tag-package = $(shell echo "$(PACKAGE)" | tr a-z A-Z) tag-this-version = $(subst .,_,$(VERSION)) tag-prev-version = $(subst .,_,$(prev-version)) this-cvs-tag = $(tag-package)-$(tag-this-version) prev-cvs-tag = $(tag-package)-$(tag-prev-version) # Verify that all source files using _() are listed in po/POTFILES.in. po-check: grep -E -v '^(#|$$)' po/POTFILES.in | sort > $@-1 grep -E -l '\b_\(' lib/*.c src/*.c | sort > $@-2 diff -u $@-1 $@-2 rm -f $@-1 $@-2 # Tag before making distribution. Also, don't make a distribution if # checks fail. Also, make sure the NEWS file is up-to-date. # FIXME: use dist-hook/my-dist like distcheck-hook/my-distcheck. cvs-dist: maintainer-check echo $(this-cvs-tag); \ if cvs -n log -h README| grep -e $(this-cvs-tag): > /dev/null; then \ echo "VERSION not new; not tagging" 1>&2; \ exit 1; \ fi; \ cvs update po; \ cvs tag -c $(this-cvs-tag) $(MAKE) dist # Use this to make sure we don't run these programs when building # from a virgin tgz file, below. null_AM_MAKEFLAGS = \ ACLOCAL=false \ AUTOCONF=false \ AUTOMAKE=false \ AUTOHEADER=false \ MAKEINFO=false t=./=test my-distcheck: writable-files po-check -rm -rf $(t) mkdir $(t) GZIP=$(GZIP) $(AMTAR) -C $(t) -zxf $(distdir).tar.gz # Removing $(DEPDIR) like this is a gross kludge to work around a bug # in automake. Remove that line once it's fixed. cd $(t)/$(distdir) \ && ./configure --disable-nls \ && $(MAKE) CFLAGS='-Wformat -Werror' \ AM_MAKEFLAGS='$(null_AM_MAKEFLAGS)' \ && $(MAKE) dvi \ && $(MAKE) check \ && rm -rf $(DEPDIR) \ && $(MAKE) distclean cd $(t) && mv $(distdir) $(distdir).old \ && $(AMTAR) -zxf ../$(distdir).tar.gz diff -ur $(t)/$(distdir).old $(t)/$(distdir) -rm -rf $(t) @echo "========================"; \ echo "$(distdir).tar.gz is ready for distribution"; \ echo "========================" THIS_VERSION_REGEXP = $(subst .,\.,$(VERSION)) # FIXME: this works only for Gnits-style test releases. PREV_VERSION := $(shell echo $(VERSION)|tr b-z a-y|sed 's/a$$//') PREV_VERSION_REGEXP := $(shell echo $(PREV_VERSION)|sed 's/\./\\./g') v = Version a_host=alpha.gnu.org b_host=tug.org a_url_dir=gnu/fetish b_url_dir=gnu/fetish a_real_dir=/fs/share/ftp/gnu/fetish b_real_dir=/home/ftp/pub/gnu/fetish url_dir_list = $(foreach x,a b,ftp://$($(x)_host)/$($(x)_url_dir)) md5 = $(shell md5sum < $(distdir).tar.gz|sed 's/ -//') rel-check: tarz=/tmp/rel-check-tarz-$$$$; \ md5_tmp=/tmp/rel-check-md5-$$$$; \ set -e; \ trap 'status=$$?; rm -f $$tarz $$md5_tmp; exit $$status' 0 1 2 3 15; \ wget -q --output-document=$$tarz $(url); \ echo "$(md5) -" > $$md5_tmp; \ md5sum -c $$md5_tmp < $$tarz release-archive-dir = ../release prev-tgz = $(PACKAGE)-$(PREV_VERSION).tar.gz xd-delta = $(PACKAGE)-$(PREV_VERSION)-$(VERSION).xdelta announcement: NEWS ChangeLog $(distdir).tar.gz @( \ echo Subject: $(distdir) released; \ echo; \ echo FIXME: put comments here; \ echo; \ for url in $(url_dir_list); do \ echo " $$url/$(distdir).tar.gz"; \ done; \ echo; \ echo And here are xdelta-style diffs; \ echo; \ for url in $(url_dir_list); do \ echo " $$url/$(xd-delta)"; \ done; \ echo; \ echo "$(md5) $(distdir).tar.gz"; \ echo; \ echo NEWS:; \ sed -n "/$(THIS_VERSION_REGEXP)/,/$(PREV_VERSION_REGEXP)/p" NEWS \ | grep -v '^\['; \ echo; \ echo ChangeLog entries:; \ find . -name ChangeLog \ | xargs cvs diff -up -r$(prev-cvs-tag) -rHEAD \ | sed -n 's/^+//p' \ | perl -ne 'm!^\+\+ (\./)?! or print,next;' \ -e 'print "\n"."*"x70 ."\n"; s///; print; print "*"x70 ."\n"'; \ ) writable-files: for file in $(distdir).tar.gz $(xd-delta) \ ../release/$(distdir).tar.gz ../release/$(xd-delta); do \ test -e $$file || continue; \ test -w $$file \ || { echo ERROR: $$file is not writable; fail=1; }; \ done; \ test "$$fail" && exit 1 || : alpha: writable-files po-check $(MAKE) cvs-dist $(MAKE) -s announcement > /tmp/announce-$(distdir) ln $(distdir).tar.gz ../release chmod a-w $(distdir).tar.gz cd $(release-archive-dir) \ && xdelta delta -9 $(prev-tgz) $(distdir).tar.gz $(xd-delta) || : ln $(release-archive-dir)/$(xd-delta) . chmod a-w $(release-archive-dir)/$(xd-delta) @echo ===================================== @echo ===================================== @echo 'scp $(xd-delta) $(distdir).tar.gz \' @echo ' $(b_host):$(b_real_dir)' @echo '# send the /tmp/announcement e-mail' @echo ===================================== @echo =====================================