mas/script/bottle

77 lines
2 KiB
Text
Raw Normal View History

2019-01-13 07:15:46 +00:00
#!/bin/bash -e
#
# script/bottle
# mas
#
# Builds bottles of mas Homebrew formula for custom tap:
# https://github.com/mas-cli/homebrew-tap
2019-01-13 07:15:46 +00:00
#
2019-01-13 07:48:55 +00:00
BUILD_DIR="$PWD/build"
BOTTLE_DIR="$BUILD_DIR/bottles"
VERSION=$(script/version)
ROOT_URL="https://dl.bintray.com/phatblat/mas-bottles"
2020-05-12 04:01:50 +00:00
OS_VERSIONS=(catalina mojave high_sierra sierra el_capitan)
2019-01-13 07:48:55 +00:00
OLD_FILENAME="mas--${VERSION}.${OS_VERSIONS[0]}.bottle.tar.gz"
2019-01-13 07:15:46 +00:00
2019-01-13 07:48:55 +00:00
echo "==> 🍼 Bottling mas ${VERSION} for ${OS_VERSIONS[*]}"
2019-01-13 07:15:46 +00:00
# Ensure core formula isn't shadowed by custom tap
brew tap --list-pinned | grep mas-cli/tap && brew tap-unpin mas-cli/tap
# Uninstall if necessary
if brew ls --versions mas > /dev/null; then
brew uninstall mas
fi
# Uninstall if still found on path
if command -v mas > /dev/null; then
script/uninstall
fi
# Purge the Carthage cache to avoid this error from Homebrew sandboxing:
# A shell task (/usr/bin/env git checkout --quiet --force 0.15.0 (launched in /Users/ben/Library/Caches/org.carthage.CarthageKit/dependencies/Commandant)) failed with exit code 128:
# fatal: Unable to create '/Users/ben/Library/Caches/org.carthage.CarthageKit/dependencies/Commandant/./index.lock': Operation not permitted
rm -rf ~/Library/Caches/org.carthage.CarthageKit
2019-01-13 07:15:46 +00:00
# Build the formula
brew install --build-bottle mas
# Generate bottle do block, dropping last 2 lines
brew bottle --verbose --no-rebuild --root-url=$ROOT_URL mas
2019-01-13 07:48:55 +00:00
SHA256=$(shasum --algorithm 256 "$OLD_FILENAME" | cut -f 1 -d ' ' -)
mkdir -p "$BOTTLE_DIR"
# Start of bottle block
BOTTLE_BLOCK=$(cat <<-SETVAR
bottle do
root_url "$ROOT_URL"
cellar :any
SETVAR
)
2019-01-13 07:48:55 +00:00
# Fix filename
for os in ${OS_VERSIONS[*]}; do
new_filename="mas-${VERSION}.${os}.bottle.tar.gz"
cp "$OLD_FILENAME" "$BOTTLE_DIR/$new_filename"
# Append each os
BOTTLE_BLOCK="$BOTTLE_BLOCK"$(cat <<-SETVAR
sha256 "$SHA256" => :$os
SETVAR
)
2019-01-13 07:48:55 +00:00
done
# End of bottle block
BOTTLE_BLOCK="$BOTTLE_BLOCK"$(cat <<-SETVAR
end
SETVAR
)
2019-01-13 07:48:55 +00:00
rm "$OLD_FILENAME"
ls -l "$BOTTLE_DIR"
echo "$BOTTLE_BLOCK"