-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CLOUD-4466: remove [email protected] dependency to prevent error (#102)
Fixes: ``` Error: [email protected] has been disabled because it is not supported upstream! It will be disabled on 2024-10-24. ``` Unfortunately this is likely to make it difficult to install ruby 2.7 in old projects, so we'll need to go into those projects and either upgrade ruby or add special install instructions.
- Loading branch information
Showing
4 changed files
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.61 | ||
0.1.62 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
class IhCore < Formula | ||
VERSION="0.1.61" | ||
VERSION="0.1.62" | ||
desc "Brew formula for installing core tools used at Included Health engineering." | ||
homepage "https://github.com/ConsultingMD/homebrew-ih-public" | ||
license "CC BY-NC-ND 4.0" | ||
|
@@ -16,7 +16,6 @@ class IhCore < Formula | |
depends_on "yq" | ||
depends_on "go-jira" | ||
depends_on "envconsul" | ||
depends_on "[email protected]" # required by ruby 2.7.2 | ||
depends_on "openssl@3" | ||
depends_on "coreutils" | ||
depends_on "yamllint" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,7 +76,8 @@ if [[ "$PS1" = "\\s-\\v\\\$ " ]]; then | |
fi | ||
|
||
# Open SSL management | ||
BREW_PREFIX_OPENSSL="$(brew --prefix [email protected])" | ||
# https://github.com/rbenv/ruby-build/discussions/2185#discussioncomment-5588486 | ||
BREW_PREFIX_OPENSSL="$(brew --prefix openssl@3)" | ||
export PATH="$BREW_PREFIX_OPENSSL/bin:$PATH" | ||
export LDFLAGS="-L$BREW_PREFIX_OPENSSL/lib" | ||
export CPPFLAGS="-I$BREW_PREFIX_OPENSSL/include" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,8 @@ if [[ ${#PROMPT} -lt 10 ]]; then | |
fi | ||
|
||
# Open SSL management | ||
BREW_PREFIX_OPENSSL="$(brew --prefix [email protected])" | ||
# https://github.com/rbenv/ruby-build/discussions/2185#discussioncomment-5588486 | ||
BREW_PREFIX_OPENSSL="$(brew --prefix openssl@3)" | ||
export PATH="$BREW_PREFIX_OPENSSL/bin:$PATH" | ||
export LDFLAGS="-L$BREW_PREFIX_OPENSSL/lib" | ||
export CPPFLAGS="-I$BREW_PREFIX_OPENSSL/include" | ||
|