Statistics
| Branch: | Tag: | Revision:

root / autotools / check-version @ 96602be4

History | View | Annotate | Download (1.2 kB)

1
#!/bin/bash
2
#
3

    
4
# Copyright (C) 2010 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21
set -e
22

    
23
# Enable Bash-specific patterns
24
shopt -s extglob
25

    
26
readonly version=$1
27
readonly numpat='+([0-9])'
28

    
29
case "$version" in
30
  # Format "x.y.z"
31
  $numpat.$numpat.$numpat) : ;;
32

    
33
  # Format "x.y.z~rcN" or "x.y.z~betaN" for N > 0
34
  $numpat.$numpat.$numpat~@(rc|beta)[1-9]*([0-9])) : ;;
35

    
36
  *)
37
    echo "Invalid version format: $version" >&2
38
    exit 1
39
  ;;
40
esac
41

    
42
readonly newsver="Version ${version/~/}"
43

    
44
if ! grep -q -x "$newsver" NEWS
45
then
46
  echo "Unable to find heading '$newsver' in NEWS" >&2
47
  exit 1
48
fi
49

    
50
exit 0