aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip P. Moltmann <moltmann@google.com>2017-05-11 23:44:33 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-05-11 23:44:33 +0000
commit4faf2842447fd71574243a6dfb56719be0b7a8be (patch)
treed81a373a1d60ae2f18a469f14251296b54f25380
parent9979077883503fe2fc7f249ead231fee917d403e (diff)
parent0c904dcfc0532a7aa5b220139a579ba6736e7c0b (diff)
downloadlibcups-4faf2842447fd71574243a6dfb56719be0b7a8be.tar.gz
Store version in file, not a git tag. am: e78fa6dfe2
am: 0c904dcfc0 Change-Id: I8fe0c79267a9a4cf430f461d2e929b46e969084d
-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