mirrored from git://anongit.freedesktop.org/gstreamer/common
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathupdate-readmes
executable file
·42 lines (34 loc) · 1.22 KB
/
update-readmes
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 meson_options.txt ]; then
echo "Run ./common/update-readmes from the top-level source directory of a GStreamer module";
exit 1;
fi
MAJOR_VERSION=`head -n 5 meson.build | grep -e '^\s*version\s*:' | sed -e "s%^\s*version\s*:\s*'%%" -e "s%',%%" | sed -e 's/[^0-9]*\([0-9]\)\.\([0-9]*\).*/\1/'`
MINOR_VERSION=`head -n 5 meson.build | grep -e '^\s*version\s*:' | sed -e "s%^\s*version\s*:\s*'%%" -e "s%',%%" | 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