#!/usr/bin/env bash set -e set -x shopt -s dotglob readonly name="Twisted" readonly ownership="Twisted Upstream " readonly subtree="ThirdParty/$name/vtk$name" readonly repo="https://gitlab.kitware.com/third-party/twisted.git" readonly tag="for/vtk" readonly paths=" NEWS.rst LICENSE README.rst .gitattributes src/twisted/*.py src/twisted/_threads src/twisted/application src/twisted/cred src/twisted/internet/*.py src/twisted/logger src/twisted/persisted src/twisted/plugins src/twisted/protocols src/twisted/python src/twisted/runner src/twisted/scripts src/twisted/spread src/twisted/tap src/twisted/web " extract_source () { # Copy over the files from Git git_archive # Remove all `test/` subdirectories. pushd "$extractdir" find . -name "test" -type d -exec rm -rf '{}' \; popd } . "${BASH_SOURCE%/*}/../update-common.sh"