| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 | #!/bin/bashif [ $# -eq 0 ]; then  cat <<EOFUsage: $0 <VERSION_NUMBER>Example:  $ $0 3.0.0-beta-4This script will download pre-built protoc binaries from maven repositoryand package them with well-known type .proto files to create .zip packagessuitable to be included in the github release page. Each invocation willcreate 5 zip packages:  dist/protoc-<VERSION_NUMBER>-win32.zip  dist/protoc-<VERSION_NUMBER>-osx-x86_32.zip  dist/protoc-<VERSION_NUMBER>-osx-x86_64.zip  dist/protoc-<VERSION_NUMBER>-linux-x86_32.zip  dist/protoc-<VERSION_NUMBER>-linux-x86_64.zipEOF  exit 1fiVERSION_NUMBER=$1# <zip file name> <binary file name> pairs.declare -a FILE_NAMES=( \  win32.zip windows-x86_32.exe \  osx-x86_32.zip osx-x86_32.exe \  osx-x86_64.zip osx-x86_64.exe \  linux-x86_32.zip linux-x86_32.exe \  linux-x86_64.zip linux-x86_64.exe \)# List of all well-known types to be included.declare -a WELL_KNOWN_TYPES=(           \  google/protobuf/descriptor.proto      \  google/protobuf/any.proto             \  google/protobuf/api.proto             \  google/protobuf/duration.proto        \  google/protobuf/empty.proto           \  google/protobuf/field_mask.proto      \  google/protobuf/source_context.proto  \  google/protobuf/struct.proto          \  google/protobuf/timestamp.proto       \  google/protobuf/type.proto            \  google/protobuf/wrappers.proto        \  google/protobuf/compiler/plugin.proto \)set -e# A temporary working directory to put all files.DIR=$(mktemp -d)# Copy over well-known types.mkdir -p ${DIR}/include/google/protobuf/compilerfor PROTO in ${WELL_KNOWN_TYPES[@]}; do  cp -f ../src/${PROTO} ${DIR}/include/${PROTO}done# Create a readme file.cat <<EOF > ${DIR}/readme.txtProtocol Buffers - Google's data interchange formatCopyright 2008 Google Inc.https://developers.google.com/protocol-buffers/This package contains a precompiled binary version of the protocol buffercompiler (protoc). This binary is intended for users who want to use ProtocolBuffers in languages other than C++ but do not want to compile protocthemselves. To install, simply place this binary somewhere in your PATH.Please refer to our official github site for more installation instructions:  https://github.com/google/protobufEOFmkdir -p distmkdir -p ${DIR}/bin# Create a zip file for each binary.for((i=0;i<${#FILE_NAMES[@]};i+=2));do  ZIP_NAME=${FILE_NAMES[$i]}  BINARY_NAME=${FILE_NAMES[$(($i+1))]}  BINARY_URL=http://repo1.maven.org/maven2/com/google/protobuf/protoc/${VERSION_NUMBER}/protoc-${VERSION_NUMBER}-${BINARY_NAME}  if ! wget ${BINARY_URL} -O ${DIR}/bin/protoc &> /dev/null; then    echo "[ERROR] Failed to download ${BINARY_URL}" >&2    echo "[ERROR] Skipped protoc-${VERSION_NAME}-${ZIP_NAME}" >&2    continue  fi  TARGET_ZIP_FILE=`pwd`/dist/protoc-${VERSION_NUMBER}-${ZIP_NAME}  pushd $DIR &> /dev/null  chmod +x bin/protoc  zip -r ${TARGET_ZIP_FILE} include bin readme.txt &> /dev/null  popd &> /dev/null  echo "[INFO] Successfully created ${TARGET_ZIP_FILE}"done
 |