Skip to content
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

subversion: migrate to python@3.10 #91010

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions Formula/subversion.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Subversion < Formula

depends_on "openjdk" => :build
depends_on "pkg-config" => :build
depends_on "python@3.9" => :build
depends_on "python@3.10" => :build
depends_on "scons" => :build # For Serf
depends_on "swig" => :build
depends_on "apr"
Expand Down Expand Up @@ -167,7 +167,7 @@ def install
--enable-javahl
--without-jikes
PERL=#{perl}
PYTHON=#{Formula["python@3.9"].opt_bin}/python3
PYTHON=#{Formula["python@3.10"].opt_bin}/python3
RUBY=#{ruby}
]

Expand All @@ -187,7 +187,7 @@ def install

system "make", "swig-py"
system "make", "install-swig-py"
(lib/"python3.9/site-packages").install_symlink Dir["#{lib}/svn-python/*"]
(lib/"python3.10/site-packages").install_symlink Dir["#{lib}/svn-python/*"]

# Java and Perl support don't build correctly in parallel:
# https://github.com/Homebrew/homebrew/issues/20415
Expand Down