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

git-revise: drop python-setuptools dependency #165370

Merged
merged 2 commits into from
Mar 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 11 additions & 14 deletions Formula/g/git-revise.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
class GitRevise < Formula
include Language::Python::Virtualenv

desc "Rebase alternative for easy & efficient in-memory rebases and fixups"
homepage "https://github.com/mystor/git-revise"
url "https://files.pythonhosted.org/packages/99/fe/03e0afc973c19af8ebf9c7a4a090a974c0c39578b1d4082d201d126b7f9a/git-revise-0.7.0.tar.gz"
Expand All @@ -7,25 +9,20 @@ class GitRevise < Formula
head "https://github.com/mystor/git-revise.git", branch: "main"

bottle do
rebuild 3
sha256 cellar: :any_skip_relocation, arm64_sonoma: "5a47af84d787b9dd31fbc70a63201f8b1aeb4229fcbf88ccc9c4490df88f0c44"
sha256 cellar: :any_skip_relocation, arm64_ventura: "a9ee2921cac14ddea79e4c1e020e1b8d544e5bba16f5fcc2796b21ac6566a9f8"
sha256 cellar: :any_skip_relocation, arm64_monterey: "a85791ce1eaa49f13c5ad465d361dccb9b7afba1177e9b542f083f90321a1005"
sha256 cellar: :any_skip_relocation, sonoma: "8aa99a449a1352eca08754aa2ee6f85e5f96c65a9d7caf22d84b35755ef2a589"
sha256 cellar: :any_skip_relocation, ventura: "75db0a7e791194ff3f89f0fce29a4998a92a9b3a532864bc6532544c9fe3e4e7"
sha256 cellar: :any_skip_relocation, monterey: "6896a89a70307bf7487bf96ef4a65003e17e37e6636b4c05b19c4798b10fd3ab"
sha256 cellar: :any_skip_relocation, x86_64_linux: "3e5a2a0b8b28bc4151e1c06d88d8bcc401334c7cfd27c1122b7e9cbdcbdfd113"
rebuild 4
sha256 cellar: :any_skip_relocation, arm64_sonoma: "11dee0e25565318d45ab229acba72ad2c6d361e189cd2705640108f785bd9ea6"
sha256 cellar: :any_skip_relocation, arm64_ventura: "588a6d0106afa9238ff313c2912587509d6edc4742dcee636cbd5c734abd4a17"
sha256 cellar: :any_skip_relocation, arm64_monterey: "5edfb6441cfd0d7398e3258a8f84a837ef11425e6b161be2bf58d1da255a7e29"
sha256 cellar: :any_skip_relocation, sonoma: "ffb5825703b89a7e69d3448f7052bfea2f88204cfe995ff9e4fb4938728dfdeb"
sha256 cellar: :any_skip_relocation, ventura: "5aa4462e2e945c8c6d52318617a3a098261b4e22adaefb637b400e25c4865eee"
sha256 cellar: :any_skip_relocation, monterey: "3aa713d6b837d9d0201e9efe402f2e367c06fbe8a3033a8e861c749d3ba1f748"
sha256 cellar: :any_skip_relocation, x86_64_linux: "8cc6240886847417ae649ca83c00b2872942e3ccf7f545bdde1cf9d22dc52471"
end

depends_on "python-setuptools" => :build
depends_on "python@3.12"

def python3
"python3.12"
end

def install
system python3, "-m", "pip", "install", *std_pip_args, "."
virtualenv_install_with_resources
end

test do
Expand Down
Loading