-
-
Notifications
You must be signed in to change notification settings - Fork 12.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
git-lfs 2.9.2 #45467
git-lfs 2.9.2 #45467
Conversation
On Catalina (test failure):
On Mojave (build failure):
|
7bd53a4
to
625a2cc
Compare
bump the version to v2.9.1 |
This might be Homebrew/brew#6539 |
625a2cc
to
d362992
Compare
Circle back on this. |
Tested on my catalina machine, seems working fine $ brew test --verbose git-lfs |
The Catalina failure is the |
d362992
to
9e909c0
Compare
Pushed a new release and rebased to master (give another try on this PR) |
On Mojave:
|
From Googling, it looks like the problem is that we're using XCode 11 on Mojave, which installs the 10.15 SDK with Ruby 2.6 (Catalina's) development headers, not Ruby 2.3 (Mojave's). I think the easiest way to solve this would be something like the following: diff --git a/Formula/git-lfs.rb b/Formula/git-lfs.rb
index b88cc89fa7..c2d9bd5979 100644
--- a/Formula/git-lfs.rb
+++ b/Formula/git-lfs.rb
@@ -12,10 +12,7 @@ class GitLfs < Formula
end
depends_on "go" => :build
- uses_from_macos "ruby"
-
- # System Ruby uses old TLS versions no longer supported by RubyGems.
- depends_on "ruby" => :build if MacOS.version <= :sierra
+ depends_on "ruby" => :build
def install
ENV["GIT_LFS_SHA"] = "" This is completely untested, since I'm running Catalina, not Mojave, but presumably it should work. |
Let me give a try. |
Now it is the tar issue with the Catalina:
|
Relates to Homebrew/brew#6539 |
Created with
brew bump-formula-pr
.