summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonstantin Tokarev <annulen@yandex.ru>2020-03-05 01:04:52 +0300
committerKonstantin Tokarev <annulen@yandex.ru>2020-03-05 05:21:04 +0300
commit444bd2bda5fa46c2b4b99adaf6e9b2074b03a0d1 (patch)
tree6041be27577d9804046d8028d41593e0d64a1cef
parent14db5329b4ae8e6e67b70b8f86a1c1dac8141eed (diff)
Import QtWebKit commit 8a07b1ecac57cc12d6e0ef0ab56340742c213554v5.212.0-alpha4
Change-Id: I890f88ee16cb1a5fd39323897d6561149dc9e828 Reviewed-by: Konstantin Tokarev <annulen@yandex.ru>
-rwxr-xr-xTools/qt/setup-qt5-submodules-for-coin.sh48
1 files changed, 48 insertions, 0 deletions
diff --git a/Tools/qt/setup-qt5-submodules-for-coin.sh b/Tools/qt/setup-qt5-submodules-for-coin.sh
new file mode 100755
index 000000000..eb5576873
--- /dev/null
+++ b/Tools/qt/setup-qt5-submodules-for-coin.sh
@@ -0,0 +1,48 @@
+#!/bin/bash -e
+# Copyright (C) 2020 Konstantin Tokarev <annulen@yandex.ru>
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright
+# notice, this list of conditions and the following disclaimer in the
+# documentation and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+# THE POSSIBILITY OF SUCH DAMAGE.
+
+QT_REF="$1"
+SCRIPTNAME=$(basename "$0")
+
+for m in qt*; do
+ if [ -d "$m" ]; then
+ case "$m" in
+ qtbase|qtdeclarative|qtlocation|qtmultimedia|qtsensors|qtwebchannel)
+ if [ -n "$QT_REF" ]; then
+ echo "Checking out '$QT_REF' in $m"
+ git checkout -q "$QT_REF" "$m"
+ else
+ echo "Keeping '$m'"
+ fi
+ ;;
+ *)
+ git rm "$m";;
+ esac
+ fi
+done
+git commit -m "*** AUTOGENERATED COMMIT ***
+
+Remove Qt modules not used in QtWebKit.
+This commit was generated by ${SCRIPTNAME}.
+"