source: branches/0.10-stable/build_support/gen_announce.sh.in @ 3021

Last change on this file since 3021 was 3021, checked in by Peter, 10 years ago

fix script to do what's intended

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.6 KB
Line 
1#!/bin/sh
2#$Id: gen_announce.sh.in 3021 2013-04-04 04:59:20Z peter $
3#@configure_input@
4
5# Copyright (C) 2011, 2012 Peter Johansson
6#
7# This file is part of yat, http://dev.thep.lu.se/yat
8#
9# This program is free software; you can redistribute it and/or modify
10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation; either version 3 of the License, or
12# (at your option) any later version.
13#
14# This is distributed in the hope that it will be useful, but
15# WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17# General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with svndigest. If not, see <http://www.gnu.org/licenses/>.
21
22set -e
23
24distdir=@PACKAGE@-@VERSION@
25dist_archive="${distdir}.tar.gz"
26
27cat <<EOF
28I'm happy to announce the release of @PACKAGE_STRING@.
29
30<INSERT TEXT HERE>
31
32You can find the new release here:
33
34http://sourceforge.net/projects/libyat/files/${dist_archive}/download
35
36Here is the md5 checksum:
37
38EOF
39printf "MD5:    "
40cat ${dist_archive}.MD5    | sed 's/ .*//'
41cat <<EOF
42
43Please report bugs by mail to @PACKAGE_BUGREPORT@
44
45This release was bootstrapped with the following tools:
46EOF
47@AUTOCONF@ --version | head -n 1 | sed -e 's/.*(//' -e 's/)//'
48@AUTOMAKE@ --version | head -n 1 | sed -e 's/.*(//' -e 's/)//'
49@srcdir@/libtool --version | head -n 1 | sed -e 's/.*(//' -e 's/)//'
50cat <<EOF
51
52You can find the list of significant changes between @VERSION@ and
53earlier versions at
54
55  http://dev.thep.lu.se/yat/browser/tags/@VERSION@/NEWS
56
57EOF
Note: See TracBrowser for help on using the repository browser.