]> git.pld-linux.org Git - packages/chromium-browser-bin.git/commitdiff
- Uncommented ability to update based on trunk version.
authorCaleb Maclennan <caleb@alerque.com>
Sat, 11 Feb 2012 18:41:07 +0000 (18:41 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- Added some logic so that the svn revision number is available in the version variable file.

Changed files:
    update-source.sh -> 1.21

update-source.sh

index e66ce72072bb1e900715f6245c8115256fee3e2a..a4611d587a0616e3fc52e849eb93982d658d95df 100644 (file)
@@ -17,8 +17,8 @@ if [ "$1" == "spec" ]; then
        echo "Using $rev from spec file"
 elif [ "$1" == "trunk" ]; then
        echo "Fetching latest revno... "
        echo "Using $rev from spec file"
 elif [ "$1" == "trunk" ]; then
        echo "Fetching latest revno... "
-       #rev=$(wget -q -O - http://commondatastorage.googleapis.com/chromium-browser-continuous/Linux/LAST_CHANGE)
-       #rev64=$(wget -q -O - http://commondatastorage.googleapis.com/chromium-browser-continuous/Linux_x64/LAST_CHANGE)
+       rev=$(wget -q -O - http://commondatastorage.googleapis.com/chromium-browser-continuous/Linux/LAST_CHANGE)
+       rev64=$(wget -q -O - http://commondatastorage.googleapis.com/chromium-browser-continuous/Linux_x64/LAST_CHANGE)
        # be sure that we use same rev on both arch
        if [ "$rev" != "$rev64" ]; then
                echo "Current 32bit build ($rev) does not match 64bit build ($rev64)"
        # be sure that we use same rev on both arch
        if [ "$rev" != "$rev64" ]; then
                echo "Current 32bit build ($rev) does not match 64bit build ($rev64)"
@@ -69,7 +69,8 @@ oldrev=$(awk '/^%define[      ]+svnrev[       ]+/{print $NF}' $specfile)
 if [ "$oldrev" != "$rev" ]; then
        if [ -z "$version" ]; then
                wget -q -O VERSION.sh http://src.chromium.org/viewvc/chrome/trunk/src/chrome/VERSION?revision=$rev
 if [ "$oldrev" != "$rev" ]; then
        if [ -z "$version" ]; then
                wget -q -O VERSION.sh http://src.chromium.org/viewvc/chrome/trunk/src/chrome/VERSION?revision=$rev
-               if grep -Ev '^(MAJOR|MINOR|BUILD|PATCH)=[0-9]+$' VERSION.sh >&2; then
+               echo REV=$rev >> VERSION.sh
+               if grep -Ev '^(MAJOR|MINOR|BUILD|PATCH|REV)=[0-9]+$' VERSION.sh >&2; then
                        echo >&2 "I refuse to execute garbled file due security concerns"
                        exit 1
                fi
                        echo >&2 "I refuse to execute garbled file due security concerns"
                        exit 1
                fi
This page took 0.031817 seconds and 4 git commands to generate.