aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip P. Moltmann <moltmann@google.com>2017-05-11 23:40:02 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-05-11 23:40:02 +0000
commit0c904dcfc0532a7aa5b220139a579ba6736e7c0b (patch)
treed81a373a1d60ae2f18a469f14251296b54f25380
parentbbf4f35ea3680e984c3e53336507b64a0b865e51 (diff)
parente78fa6dfe24e5677481967b8827478e9b8cbc5e8 (diff)
downloadlibcups-0c904dcfc0532a7aa5b220139a579ba6736e7c0b.tar.gz
Store version in file, not a git tag.
am: e78fa6dfe2 Change-Id: If3556ce2e553bbdcb12a354e11b4195251dd071a
-rw-r--r--libcups_version1
-rwxr-xr-xupdate_libcups.sh11
2 files changed, 6 insertions, 6 deletions
diff --git a/libcups_version b/libcups_version
new file mode 100644
index 00000000..7fe52d36
--- /dev/null
+++ b/libcups_version
@@ -0,0 +1 @@
+v2.2.1
diff --git a/update_libcups.sh b/update_libcups.sh
index 8afbdce7..34592d6b 100755
--- a/update_libcups.sh
+++ b/update_libcups.sh
@@ -14,7 +14,7 @@ echo
echo "== get current rev =="
cd $TARGET_DIR
-CURRENT_REV=$(git tag -l | grep -v "release" | grep -v "b" | grep -v "rc" | sort | tail -n1)
+CURRENT_REV=$(cat libcups_version)
echo "Current rev is $CURRENT_REV"
echo
@@ -56,16 +56,15 @@ else
sed -i -e "s/^\(#.*CUPS_SVERSION\).*/\1 \"CUPS $NEW_REV\"/g" config.h
sed -i -e "s:^\(#.*CUPS_MINIMAL\).*:\1 \"CUPS/${NEW_REV#v}\":g" config.h
- git add -A
- git commit -m "Update libcups to $NEW_REV"
-
- git tag $NEW_REV
-
echo
echo ">>> Updated license"
cp LICENSE.txt NOTICE
+ echo $NEW_REV > libcups_version
+ git add -A
+ git commit -m "Update libcups to $NEW_REV"
+
echo
echo ">>> Updated libcups from $CURRENT_REV to $NEW_REV"
fi