From 444bd2bda5fa46c2b4b99adaf6e9b2074b03a0d1 Mon Sep 17 00:00:00 2001 From: Konstantin Tokarev Date: Thu, 5 Mar 2020 01:04:52 +0300 Subject: Import QtWebKit commit 8a07b1ecac57cc12d6e0ef0ab56340742c213554 Change-Id: I890f88ee16cb1a5fd39323897d6561149dc9e828 Reviewed-by: Konstantin Tokarev --- Tools/qt/setup-qt5-submodules-for-coin.sh | 48 +++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100755 Tools/qt/setup-qt5-submodules-for-coin.sh 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 +# +# 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}. +" -- cgit v1.2.1