| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  | #: @hide_from_man_page | 
					
						
							|  |  |  | #:  * `vendor-install` [<target>]: | 
					
						
							|  |  |  | #:     Install vendor version of Homebrew dependencies. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Hide shellcheck complaint: | 
					
						
							|  |  |  | # shellcheck source=/dev/null | 
					
						
							|  |  |  | source "$HOMEBREW_LIBRARY/Homebrew/utils/lock.sh" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | VENDOR_DIR="$HOMEBREW_LIBRARY/Homebrew/vendor" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-10 20:06:14 +01:00
										 |  |  | # Built from https://github.com/Homebrew/homebrew-portable. | 
					
						
							| 
									
										
										
										
											2016-09-18 19:57:19 +01:00
										 |  |  | if [[ -n "$HOMEBREW_MACOS" ]] | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  | then | 
					
						
							|  |  |  |   if [[ "$HOMEBREW_PROCESSOR" = "Intel" ]] | 
					
						
							|  |  |  |   then | 
					
						
							| 
									
										
										
										
											2017-09-25 19:15:58 +01:00
										 |  |  |     ruby_URL="https://homebrew.bintray.com/bottles-portable/portable-ruby-2.3.3.leopard_64.bottle.1.tar.gz" | 
					
						
							|  |  |  |     ruby_SHA="34ce9e4c9c1be28db564d744165aa29291426f8a3d2ef806ba4f0b9175aedb2b" | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  |   else | 
					
						
							|  |  |  |     ruby_URL="" | 
					
						
							|  |  |  |     ruby_SHA="" | 
					
						
							|  |  |  |   fi | 
					
						
							| 
									
										
										
										
											2016-07-14 15:41:09 +08:00
										 |  |  | elif [[ -n "$HOMEBREW_LINUX" ]] | 
					
						
							|  |  |  | then | 
					
						
							| 
									
										
										
										
											2017-11-26 20:13:00 -08:00
										 |  |  |   case "$HOMEBREW_PROCESSOR" in | 
					
						
							|  |  |  |     armv7l) | 
					
						
							|  |  |  |       ruby_URL="https://homebrew.bintray.com/bottles-portable/portable-ruby-2.3.3.armv7l_linux.bottle.1.tar.gz" | 
					
						
							|  |  |  |       ruby_SHA="d26affe6f6ac299557a9044b311b4066b554874fc828ebc323d2705d3f4a8249" | 
					
						
							|  |  |  |       ;; | 
					
						
							|  |  |  |     x86_64) | 
					
						
							|  |  |  |       ruby_URL="https://homebrew.bintray.com/bottles-portable/portable-ruby-2.3.3.x86_64_linux.bottle.1.tar.gz" | 
					
						
							|  |  |  |       ruby_SHA="33643b1ca6f860d6df01686636326785763e5e81cf0cef37d8a7ab96a6ca1fa1" | 
					
						
							|  |  |  |       ;; | 
					
						
							|  |  |  |   esac | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-16 10:27:35 -08:00
										 |  |  | # Execute the specified command, and suppress stderr unless HOMEBREW_STDERR is set. | 
					
						
							|  |  |  | quiet_stderr() { | 
					
						
							|  |  |  |   if [[ -z "$HOMEBREW_STDERR" ]]; then | 
					
						
							|  |  |  |     command "$@" 2>/dev/null | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     command "$@" | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  | fetch() { | 
					
						
							|  |  |  |   local -a curl_args | 
					
						
							|  |  |  |   local sha | 
					
						
							|  |  |  |   local temporary_path | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   curl_args=( | 
					
						
							| 
									
										
										
										
											2016-08-07 12:51:46 +02:00
										 |  |  |     --fail | 
					
						
							|  |  |  |     --remote-time | 
					
						
							|  |  |  |     --location | 
					
						
							|  |  |  |     --user-agent "$HOMEBREW_USER_AGENT_CURL" | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  |   ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if [[ -n "$HOMEBREW_QUIET" ]] | 
					
						
							|  |  |  |   then | 
					
						
							| 
									
										
										
										
											2017-05-11 08:58:40 -07:00
										 |  |  |     curl_args[${#curl_args[*]}]="--silent" | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  |   elif [[ -z "$HOMEBREW_VERBOSE" ]] | 
					
						
							|  |  |  |   then | 
					
						
							| 
									
										
										
										
											2017-05-11 08:58:40 -07:00
										 |  |  |     curl_args[${#curl_args[*]}]="--progress-bar" | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-25 19:15:58 +01:00
										 |  |  |   if [[ "$HOMEBREW_MACOS_VERSION_NUMERIC" -lt "100600" ]] | 
					
						
							|  |  |  |   then | 
					
						
							|  |  |  |     curl_args[${#curl_args[*]}]="--insecure" | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-07 12:51:46 +02:00
										 |  |  |   temporary_path="$CACHED_LOCATION.incomplete" | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   mkdir -p "$HOMEBREW_CACHE" | 
					
						
							| 
									
										
										
										
											2017-09-25 06:53:23 +01:00
										 |  |  |   [[ -n "$HOMEBREW_QUIET" ]] || echo "==> Downloading $VENDOR_URL" >&2 | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  |   if [[ -f "$CACHED_LOCATION" ]] | 
					
						
							|  |  |  |   then | 
					
						
							| 
									
										
										
										
											2017-09-25 06:53:23 +01:00
										 |  |  |     [[ -n "$HOMEBREW_QUIET" ]] || echo "Already downloaded: $CACHED_LOCATION" >&2 | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  |   else | 
					
						
							|  |  |  |     if [[ -f "$temporary_path" ]] | 
					
						
							|  |  |  |     then | 
					
						
							|  |  |  |       "$HOMEBREW_CURL" "${curl_args[@]}" -C - "$VENDOR_URL" -o "$temporary_path" | 
					
						
							|  |  |  |       if [[ $? -eq 33 ]] | 
					
						
							|  |  |  |       then | 
					
						
							| 
									
										
										
										
											2017-09-25 06:53:23 +01:00
										 |  |  |         [[ -n "$HOMEBREW_QUIET" ]] || echo "Trying a full download" >&2 | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  |         rm -f "$temporary_path" | 
					
						
							|  |  |  |         "$HOMEBREW_CURL" "${curl_args[@]}" "$VENDOR_URL" -o "$temporary_path" | 
					
						
							|  |  |  |       fi | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       "$HOMEBREW_CURL" "${curl_args[@]}" "$VENDOR_URL" -o "$temporary_path" | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if [[ ! -f "$temporary_path" ]] | 
					
						
							|  |  |  |     then | 
					
						
							| 
									
										
										
										
											2016-08-07 12:51:46 +02:00
										 |  |  |       odie "Download failed: $VENDOR_URL" | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     trap '' SIGINT | 
					
						
							|  |  |  |     mv "$temporary_path" "$CACHED_LOCATION" | 
					
						
							|  |  |  |     trap - SIGINT | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-17 20:51:32 +01:00
										 |  |  |   if [[ -x "/usr/bin/shasum" ]] | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  |   then | 
					
						
							| 
									
										
										
										
											2017-10-17 20:51:32 +01:00
										 |  |  |     sha="$(/usr/bin/shasum -a 256 "$CACHED_LOCATION" | cut -d' ' -f1)" | 
					
						
							| 
									
										
										
										
											2017-05-23 18:34:16 -07:00
										 |  |  |   elif [[ -x "$(which sha256sum)" ]] | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  |   then | 
					
						
							|  |  |  |     sha="$(sha256sum "$CACHED_LOCATION" | cut -d' ' -f1)" | 
					
						
							| 
									
										
										
										
											2017-05-29 21:48:12 -07:00
										 |  |  |   elif [[ -x "$(which ruby)" ]] | 
					
						
							|  |  |  |   then | 
					
						
							|  |  |  |     sha="$(ruby <<EOSCRIPT | 
					
						
							|  |  |  |             require 'digest/sha2' | 
					
						
							|  |  |  |             digest = Digest::SHA256.new | 
					
						
							|  |  |  |             File.open('$CACHED_LOCATION', 'rb') { |f| digest.update(f.read) } | 
					
						
							|  |  |  |             puts digest.hexdigest | 
					
						
							|  |  |  | EOSCRIPT | 
					
						
							|  |  |  | )"
 | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  |   else | 
					
						
							|  |  |  |     odie "Cannot verify the checksum ('shasum' or 'sha256sum' not found)!" | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if [[ "$sha" != "$VENDOR_SHA" ]] | 
					
						
							|  |  |  |   then | 
					
						
							|  |  |  |     odie <<EOS | 
					
						
							|  |  |  | Checksum mismatch. | 
					
						
							|  |  |  | Expected: $VENDOR_SHA | 
					
						
							|  |  |  | Actual: $sha | 
					
						
							|  |  |  | Archive: $CACHED_LOCATION | 
					
						
							|  |  |  | To retry an incomplete download, remove the file above. | 
					
						
							|  |  |  | EOS | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | install() { | 
					
						
							|  |  |  |   local tar_args | 
					
						
							|  |  |  |   local verb | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if [[ -n "$HOMEBREW_VERBOSE" ]] | 
					
						
							|  |  |  |   then | 
					
						
							|  |  |  |     tar_args="xvzf" | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     tar_args="xzf" | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   mkdir -p "$VENDOR_DIR/portable-$VENDOR_NAME" | 
					
						
							|  |  |  |   safe_cd "$VENDOR_DIR/portable-$VENDOR_NAME" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   trap '' SIGINT | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if [[ -d "$VENDOR_VERSION" ]] | 
					
						
							|  |  |  |   then | 
					
						
							|  |  |  |     verb="reinstall" | 
					
						
							|  |  |  |     mv "$VENDOR_VERSION" "$VENDOR_VERSION.reinstall" | 
					
						
							|  |  |  |   elif [[ -n "$(ls -A .)" ]] | 
					
						
							|  |  |  |   then | 
					
						
							|  |  |  |     verb="upgrade" | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     verb="install" | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   safe_cd "$VENDOR_DIR" | 
					
						
							| 
									
										
										
										
											2017-09-25 06:53:23 +01:00
										 |  |  |   [[ -n "$HOMEBREW_QUIET" ]] || echo "==> Pouring $(basename "$VENDOR_URL")" >&2 | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  |   tar "$tar_args" "$CACHED_LOCATION" | 
					
						
							|  |  |  |   safe_cd "$VENDOR_DIR/portable-$VENDOR_NAME" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-16 10:27:35 -08:00
										 |  |  |   if quiet_stderr "./$VENDOR_VERSION/bin/$VENDOR_NAME" --version >/dev/null | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  |   then | 
					
						
							|  |  |  |     ln -sfn "$VENDOR_VERSION" current | 
					
						
							|  |  |  |     # remove old vendor installations by sorting files with modified time. | 
					
						
							|  |  |  |     ls -t | grep -Ev "^(current|$VENDOR_VERSION)" | tail -n +4 | xargs rm -rf | 
					
						
							|  |  |  |     if [[ -d "$VENDOR_VERSION.reinstall" ]] | 
					
						
							|  |  |  |     then | 
					
						
							|  |  |  |       rm -rf "$VENDOR_VERSION.reinstall" | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     rm -rf "$VENDOR_VERSION" | 
					
						
							|  |  |  |     if [[ -d "$VENDOR_VERSION.reinstall" ]] | 
					
						
							|  |  |  |     then | 
					
						
							|  |  |  |       mv "$VENDOR_VERSION.reinstall" "$VENDOR_VERSION" | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |     odie "Failed to $verb vendor $VENDOR_NAME." | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   trap - SIGINT | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | homebrew-vendor-install() { | 
					
						
							|  |  |  |   local option | 
					
						
							|  |  |  |   local url_var | 
					
						
							|  |  |  |   local sha_var | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   for option in "$@" | 
					
						
							|  |  |  |   do | 
					
						
							|  |  |  |     case "$option" in | 
					
						
							|  |  |  |       -\?|-h|--help|--usage) brew help vendor-install; exit $? ;; | 
					
						
							| 
									
										
										
										
											2016-08-07 12:51:46 +02:00
										 |  |  |       --verbose)             HOMEBREW_VERBOSE=1 ;; | 
					
						
							|  |  |  |       --quiet)               HOMEBREW_QUIET=1 ;; | 
					
						
							|  |  |  |       --debug)               HOMEBREW_DEBUG=1 ;; | 
					
						
							|  |  |  |       --*)                   ;; | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  |       -*) | 
					
						
							|  |  |  |         [[ "$option" = *v* ]] && HOMEBREW_VERBOSE=1 | 
					
						
							|  |  |  |         [[ "$option" = *q* ]] && HOMEBREW_QUIET=1 | 
					
						
							|  |  |  |         [[ "$option" = *d* ]] && HOMEBREW_DEBUG=1 | 
					
						
							|  |  |  |         ;; | 
					
						
							|  |  |  |       *) | 
					
						
							|  |  |  |         [[ -n "$VENDOR_NAME" ]] && odie "This command does not take multiple vendor targets" | 
					
						
							|  |  |  |         VENDOR_NAME="$option" | 
					
						
							|  |  |  |         ;; | 
					
						
							|  |  |  |     esac | 
					
						
							|  |  |  |   done | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   [[ -z "$VENDOR_NAME" ]] && odie "This command requires one vendor target." | 
					
						
							|  |  |  |   [[ -n "$HOMEBREW_DEBUG" ]] && set -x | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   url_var="${VENDOR_NAME}_URL" | 
					
						
							|  |  |  |   sha_var="${VENDOR_NAME}_SHA" | 
					
						
							|  |  |  |   VENDOR_URL="${!url_var}" | 
					
						
							|  |  |  |   VENDOR_SHA="${!sha_var}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if [[ -z "$VENDOR_URL" || -z "$VENDOR_SHA" ]] | 
					
						
							|  |  |  |   then | 
					
						
							| 
									
										
										
										
											2016-08-10 20:06:14 +01:00
										 |  |  |     odie <<-EOS | 
					
						
							|  |  |  | Cannot find a vendored version of $VENDOR_NAME for your $HOMEBREW_PROCESSOR | 
					
						
							|  |  |  | processor on $HOMEBREW_PRODUCT! | 
					
						
							|  |  |  | EOS | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-07 12:51:46 +02:00
										 |  |  |   VENDOR_VERSION="$(<"$VENDOR_DIR/portable-$VENDOR_NAME-version")" | 
					
						
							| 
									
										
										
										
											2016-05-03 16:01:42 +08:00
										 |  |  |   CACHED_LOCATION="$HOMEBREW_CACHE/$(basename "$VENDOR_URL")" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   lock "vendor-install-$VENDOR_NAME" | 
					
						
							|  |  |  |   fetch | 
					
						
							|  |  |  |   install | 
					
						
							|  |  |  | } |