summaryrefslogtreecommitdiff
path: root/update-readmes
blob: 1eb9912b45ef754bba44bbd6f25072433f8940a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash
#
# update-readmes
#
# Updates a module's README and MAINTAINERS files from the copy in the
# common submodule.

README_FILES="README README.static-linking MAINTAINERS"

if [ ! -f "common/update-readmes" -o ! -f configure.ac ]; then
  echo "Run ./common/update-readmes from the top-level source directory of a GStreamer module";
  exit 1;
fi

MAJOR_VERSION=`grep '^AC_INIT' configure.ac | sed -e 's/[^0-9]*\([0-9]\)\.\([0-9]*\).*/\1/'`
MINOR_VERSION=`grep '^AC_INIT' configure.ac | sed -e 's/[^0-9]*\([0-9]\)\.\([0-9]*\).*/\2/'`

if test x$MAJOR_VERSION = x -o x$MINOR_VERSION = x ; then
  echo "Failed to extract major/minor version";
  exit 1;
fi

let m=$MINOR_VERSION%2
if test $m = 0; then
  SERIES_VERSION="$MAJOR_VERSION.$MINOR_VERSION.x stable series"
else
  SERIES_VERSION="$MAJOR_VERSION.$MINOR_VERSION.x development series"
fi
#echo "$SERIES_VERSION"

for f in $README_FILES ; do
 cp --preserve "common/$f" $f || {
   echo "Failed to update $f"
   exit 1;
 }
done

sed -i "s/@SERIES_VERSION@/$SERIES_VERSION/g" README

if test x$1 = "x--run-git-add"; then
  git add $README_FILES;
fi