You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
shopt -s dotglob
|
|
|
|
|
|
|
|
readonly name="cppdap"
|
|
|
|
readonly ownership="cppdap Upstream <kwrobot@kitware.com>"
|
|
|
|
readonly subtree="Utilities/cmcppdap"
|
|
|
|
readonly repo="https://github.com/google/cppdap.git"
|
|
|
|
readonly tag="cc2f2058846bb29e18fdadf455d5f5af71b2554f" # 2023-08-17
|
|
|
|
readonly shortlog=false
|
|
|
|
readonly paths="
|
|
|
|
LICENSE
|
|
|
|
include
|
|
|
|
src
|
|
|
|
"
|
|
|
|
|
|
|
|
extract_source () {
|
|
|
|
git_archive
|
|
|
|
|
|
|
|
pushd "${extractdir}/${name}-reduced"
|
|
|
|
echo "* -whitespace" > .gitattributes
|
|
|
|
fromdos LICENSE include/dap/* src/*
|
|
|
|
echo "" >> LICENSE
|
|
|
|
echo "" >> src/content_stream.cpp
|
|
|
|
echo "" >> src/nlohmann_json_serializer.h
|
|
|
|
popd
|
|
|
|
}
|
|
|
|
|
|
|
|
. "${BASH_SOURCE%/*}/update-third-party.bash"
|