untap formulas

This commit is contained in:
Maxim Lobanov
2020-10-23 11:09:22 +03:00
parent 59434682fb
commit 096e016372
2 changed files with 14 additions and 15 deletions

View File

@@ -2,18 +2,16 @@
source ~/utils/utils.sh source ~/utils/utils.sh
echo "Installing OpenSSL..."
export PATH="/usr/local/bin:/usr/local/sbin:~/bin:$PATH"
echo Installing OpenSSL... echo Installing OpenSSL...
/usr/local/bin/brew install openssl brew install openssl
# Install OpenSSL 1.0.2t # Install OpenSSL 1.0.2t
# https://www.openssl.org/policies/releasestrat.html - Version 1.0.2 will be supported until 2019-12-31 (LTS) # https://www.openssl.org/policies/releasestrat.html - Version 1.0.2 will be supported until 2019-12-31 (LTS)
# To preserve backward compatibility with ruby-toolcache # To preserve backward compatibility with ruby-toolcache
/usr/local/bin/brew tap-new local/openssl brew tap-new local/openssl
FORMULA_PATH=$(/usr/local/bin/brew extract openssl local/openssl | grep "Homebrew/Library/Taps") FORMULA_PATH=$(brew extract openssl local/openssl | grep "Homebrew/Library/Taps")
/usr/local/bin/brew install $FORMULA_PATH brew install $FORMULA_PATH
brew untap local/homebrew-openssl
# Set OpenSSL 1.0.2t as default # Set OpenSSL 1.0.2t as default
ln -sf /usr/local/Cellar/openssl@1.0.2t /usr/local/Cellar/openssl ln -sf /usr/local/Cellar/openssl@1.0.2t /usr/local/Cellar/openssl

View File

@@ -5,14 +5,15 @@ echo "Installing Python Tooling"
echo "Brew Installing Python 3" echo "Brew Installing Python 3"
# Workaround to have both 3.8 & 3.9(which required by some brew formulas) in the system, but only 3.8 is linked # Workaround to have both 3.8 & 3.9(which required by some brew formulas) in the system, but only 3.8 is linked
/usr/local/bin/brew install python@3.8 brew install python@3.8
/usr/local/bin/brew install python@3.9 brew install python@3.9
/usr/local/bin/brew unlink python@3.9 brew unlink python@3.9
/usr/local/bin/brew unlink python@3.8 brew unlink python@3.8
/usr/local/bin/brew link python@3.8 brew link python@3.8
echo "Brew Installing Python 2" echo "Brew Installing Python 2"
# Create local tap with formula due to python2 formula depreciation # Create local tap with formula due to python2 formula depreciation
/usr/local/bin/brew tap-new local/python2 brew tap-new local/python2
FORMULA_PATH=$(/usr/local/bin/brew extract python@2 local/python2 | grep "Homebrew/Library/Taps") FORMULA_PATH=$(brew extract python@2 local/python2 | grep "Homebrew/Library/Taps")
/usr/local/bin/brew install $FORMULA_PATH brew install $FORMULA_PATH
brew untap local/homebrew-python2