summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Borkmann <dborkman@redhat.com>2013-07-29 18:35:22 +0200
committerDaniel Borkmann <dborkman@redhat.com>2013-07-29 18:39:00 +0200
commita1faf28cf0e6869e8588809fbd976c23a510c943 (patch)
treecda13565af45b3cd9f3cc9919ea5145873bfca4f
parente003125b0400d055ba961b89eea094bf6774b1b2 (diff)
build: fix up announce message in announce target
Bring the announce message in line with the latest released announce message from rc1. So that in future this can be generated automatically. Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
-rw-r--r--Misc15
1 files changed, 8 insertions, 7 deletions
diff --git a/Misc b/Misc
index f06d095..ff6e0f0 100644
--- a/Misc
+++ b/Misc
@@ -18,19 +18,20 @@ log:
$(GIT_LOG)
announcement:
- $(Q)echo -e "netsniff-ng $(VERSION_SHORT) has been released to the public (http://netsniff-ng.org/).\n" > .MAIL_MSG
- $(Q)echo -e "It can be fetched via Git, through:\n" >> .MAIL_MSG
+ $(Q)echo -e " *** BLURB HERE (general bits, optional) ***\n\n---\n" > .MAIL_MSG
+ $(Q)echo -e "netsniff-ng $(VERSION_SHORT) has been released to the public (http://netsniff-ng.org/).\n" >> .MAIL_MSG
+ $(Q)echo -e "It can be fetched via Git:\n" >> .MAIL_MSG
$(Q)echo -e " git clone git://github.com/borkmann/netsniff-ng.git" >> .MAIL_MSG
$(Q)echo -e " git checkout $(VERSION_SHORT)\n" >> .MAIL_MSG
- $(Q)echo -e "Or via HTTP, through:\n" >> .MAIL_MSG
+ $(Q)echo -e "Or via HTTP:\n" >> .MAIL_MSG
$(Q)echo -e " wget http://pub.netsniff-ng.org/netsniff-ng/netsniff-ng-$(VERSION_SHORT).tar.gz\n" >> .MAIL_MSG
- $(Q)echo -e "The release be verified via Git, through (see README):\n" >> .MAIL_MSG
+ $(Q)echo -e "The release can be verified via Git (see README):\n" >> .MAIL_MSG
$(Q)echo -e " git tag -v $(VERSION_SHORT)\n" >> .MAIL_MSG
$(Q)echo -e "Major high-level changes since the last release are:\n" >> .MAIL_MSG
- $(Q)echo -e " *** BLURB HERE ***\n" >> .MAIL_MSG
- $(Q)echo -e "Contributors since last release:\n" >> .MAIL_MSG
+ $(Q)echo -e " *** BLURB HERE (specific bits) ***\n" >> .MAIL_MSG
+ $(Q)echo -e "Contributions since last release:\n" >> .MAIL_MSG
$(GIT_PEOPLE) >> .MAIL_MSG
- $(Q)echo -e "\nGit changelog since the last release:\n" >> .MAIL_MSG
+ $(Q)echo -e "\nGit changelog since last release:\n" >> .MAIL_MSG
$(GIT_LOG) >> .MAIL_MSG
release: tag announcement tarball