-
-
Notifications
You must be signed in to change notification settings - Fork 12.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
watchman: migrate to [email protected]
Closes #62458. Signed-off-by: Rylan Polster <[email protected]> Signed-off-by: BrewTestBot <[email protected]>
- Loading branch information
1 parent
6d3f9b9
commit 05d79b2
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ class Watchman < Formula | |
desc "Watch files and take action when they change" | ||
homepage "https://github.com/facebook/watchman" | ||
license "Apache-2.0" | ||
revision 4 | ||
revision 5 | ||
head "https://github.com/facebook/watchman.git" | ||
|
||
stable do | ||
|
@@ -35,7 +35,7 @@ class Watchman < Formula | |
depends_on "pkg-config" => :build | ||
depends_on "[email protected]" | ||
depends_on "pcre" | ||
depends_on "python@3.8" | ||
depends_on "python@3.9" | ||
|
||
def install | ||
system "./autogen.sh" | ||
|
@@ -49,7 +49,7 @@ def install | |
system "make", "install" | ||
|
||
# Homebrew specific python application installation | ||
python3 = Formula["python@3.8"].opt_bin/"python3" | ||
python3 = Formula["python@3.9"].opt_bin/"python3" | ||
xy = Language::Python.major_minor_version python3 | ||
ENV.prepend_create_path "PYTHONPATH", libexec/"lib/python#{xy}/site-packages" | ||
cd "python" do | ||
|
05d79b2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was it really that necessary? Now I have two pythons installed side-by-side one is
3.8.5
and another is3.9.0
because of that...05d79b2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, seeing how Homebrew is an evergreen package manager. Python 3.9 is released so we'll be moving over as many formula as we can.
05d79b2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not a ruby guy (python guy actually), but maybe I can also help? Is there any list of formulas needs to be migrated?
05d79b2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#62201