blob: 2abd269a54e383a5e452062d04bbed290368c898 [file] [log] [blame]
Lukacs Berki6eaaf942015-10-27 13:04:58 +00001#!/bin/bash -eu
2
3# Copyright 2015 The Bazel Authors. All rights reserved.
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17# This script is used to create the directory tree embedded into the Bazel
18# binary that is used as the default source for the @bazel_tools repository.
19# It shuffles around files compiled in other rules, then zips them up.
20
21OUTPUT="${PWD}/$1"
22shift
23
Han-Wen Nienhuyse5a70e22015-10-27 18:13:44 +000024TMP_DIR=${TMPDIR:-/tmp}
Lukacs Berki6eaaf942015-10-27 13:04:58 +000025PACKAGE_DIR="$(mktemp -d ${TMP_DIR%%/}/bazel.XXXXXXXX)"
26mkdir -p "${PACKAGE_DIR}"
27trap "rm -fr \"${PACKAGE_DIR}\"" EXIT
28
29for i in $*; do
30 OUTPUT_PATH=$(echo $i | sed 's_^.*bazel-out/[^/]*/bin/__')
31 mkdir -p "${PACKAGE_DIR}/$(dirname "${OUTPUT_PATH}")"
32 cp "$i" "${PACKAGE_DIR}/${OUTPUT_PATH}"
33done
34
35touch "${PACKAGE_DIR}/WORKSPACE"
36mkdir -p "${PACKAGE_DIR}/tools/defaults"
37touch "${PACKAGE_DIR}/tools/defaults/BUILD"
38for i in $(find "${PACKAGE_DIR}" -name BUILD.tools); do
39 mv "$i" "$(dirname "$i")/BUILD"
40done
41find "${PACKAGE_DIR}" -exec touch -t 198001010000.00 '{}' ';'
Lukacs Berkic4e74d12015-11-10 15:28:00 +000042(cd "${PACKAGE_DIR}" && find . -type f | sort | zip -qDX@ "${OUTPUT}")