From: Jim Meyering Date: Sun, 1 Jun 2008 12:48:07 +0000 (+0200) Subject: add rules to commit three post-release changes automatically X-Git-Tag: v7.0~220 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=01e6181965e1d60dd1ba483c18682d167a9c48a0;p=thirdparty%2Fcoreutils.git add rules to commit three post-release changes automatically * maint.mk (noteworthy): Define. (emit-commit-log): Define. (alpha beta major): Also update NEWS and cfg.mk automatically, and commit all three changes at once. --- diff --git a/maint.mk b/maint.mk index 80c1bbf1fd..91e26a4959 100644 --- a/maint.mk +++ b/maint.mk @@ -765,6 +765,14 @@ emit_upload_commands: @echo ===================================== @echo ===================================== +noteworthy = * Noteworthy changes in release ?.? (????-??-??) [?] +define emit-commit-log + printf '%s\n' 'post-release administrivia' '' \ + '* NEWS: Add header line for next release.' \ + '* .prev-version: Record previous version.' \ + '* cfg.mk (old_NEWS_hash): Auto-update.' +endef + .PHONY: alpha beta major alpha beta major: $(local-check) writable-files test $@ = major \ @@ -780,6 +788,7 @@ alpha beta major: $(local-check) writable-files fi $(MAKE) -s emit_upload_commands RELEASE_TYPE=$@ echo $(VERSION) > $(prev_version_file) - $(VC) commit -m \ - '* $(prev_version_file): Record previous version.' \ - $(prev_version_file) + $(MAKE) update-NEWS-hash + perl -pi -e '$$. == 3 and print "$(noteworthy)\n\n\n"' NEWS + $(emit-commit-log) > .ci-msg + $(VC) commit -F .ci-msg