update-readmes: add series version to README
authorTim-Philipp Müller <tim@centricular.net>
Sat, 20 Apr 2013 14:56:28 +0000 (15:56 +0100)
committerTim-Philipp Müller <tim@centricular.net>
Mon, 22 Apr 2013 22:47:42 +0000 (23:47 +0100)
README
update-readmes

diff --git a/README b/README
index f0ad183..83a1b88 100644 (file)
--- a/README
+++ b/README
@@ -1,3 +1,5 @@
+GStreamer @SERIES_VERSION@
+
 WHAT IT IS
 ----------
 
index 4afe162..1eb9912 100755 (executable)
@@ -22,19 +22,21 @@ fi
 
 let m=$MINOR_VERSION%2
 if test $m = 0; then
-  VERSION="$MAJOR_VERSION.$MINOR_VERSION.x stable series"
+  SERIES_VERSION="$MAJOR_VERSION.$MINOR_VERSION.x stable series"
 else
-  VERSION="$MAJOR_VERSION.$MINOR_VERSION.x development series"
+  SERIES_VERSION="$MAJOR_VERSION.$MINOR_VERSION.x development series"
 fi
-#echo "$VERSION"
+#echo "$SERIES_VERSION"
 
 for f in $README_FILES ; do
- cp --preserve --update --verbose "common/$f" $f || {
+ 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