Create a binary packager for Bazel

This packager can be called by the release scripts to generate
a self-extractable bash installer for Bazel. This script was
tested by hand as extra arguments can be specified to change
the default install of Bazel (default is system-wide and
with the argument you can make a user install).

This will be the only packager for now since GitHub is offering
the possibility to download the source tree as a ZIP. Hopefully,
before the end of the year we could build some more package kind.

--
Change-Id: I1a2d0cd39b9e4adcaf6c984ec4c855a04213b61a
Reviewed-on: https://bazel-review.googlesource.com/1581
MOS_MIGRATED_REVID=99258828
diff --git a/scripts/packages/package_info_generator.sh b/scripts/packages/package_info_generator.sh
new file mode 100755
index 0000000..6480dab
--- /dev/null
+++ b/scripts/packages/package_info_generator.sh
@@ -0,0 +1,76 @@
+#!/bin/bash -eu
+
+# Copyright 2015 Google Inc. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# Generate a README.md for the package from the information provided
+# by the build status command.
+
+# Store the build status information we care about
+release_name=
+git_hash=
+url=
+built_by=
+build_log=
+commit_msg=
+
+for i in "${@}"; do
+  while read line; do
+    key=$(echo "$line" | cut -d " " -f 1)
+    value="$(echo "$line" | cut -d " " -f 2- | tr '\f' '\n')"
+    case $key in
+      RELEASE_NAME)
+        release_name="$value"
+        ;;
+      RELEASE_GIT_HASH)
+        git_hash="$value"
+        ;;
+      RELEASE_BUILT_BY)
+        built_by="$value"
+        ;;
+      RELEASE_BUILD_LOG)
+        build_log="$value"
+        ;;
+      RELEASE_COMMIT_MSG)
+        commit_msg="$value"
+        ;;
+      RELEASE_COMMIT_URL)
+        commit_url="$value"
+        ;;
+   esac
+  done <<<"$(cat $i)"
+done
+
+url="${url:-https://github.com/google/bazel/commit/${git_hash}}"
+
+if [ -z "${release_name}" ]; then
+  # Not a release
+  echo "# Binary package at HEAD (@$git_hash)"
+else
+  echo "# $commit_msg"  # Make the first line the header
+  # Subsection for environment
+  echo
+  echo "## Build informations"
+fi
+if [ -n "${built_by-}" ]; then
+  if [ -n "${build_log}" ]; then
+    echo "   - [Built by ${built_by}](${build_log})"
+  else
+    echo "   - Built by ${built_by}"
+  fi
+elif [ -n "${build_log-}" ]; then
+  echo "   - [Build log](${build_log})"
+fi
+
+echo "   - [Commit](${url})"