infra: bump to homebrew tap release to 0.4.40 [generated] [skip ci]

Signed-off-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com>
This commit is contained in:
Aaron Pham
2023-12-15 16:58:27 +00:00
parent cedfa80c45
commit c8da65d2d9

24
Formula/openllm.rb generated
View File

@@ -4,37 +4,37 @@
class Openllm < Formula
desc "OpenLLM: Operating LLMs in production"
homepage "https://github.com/bentoml/OpenLLM"
version "0.4.39"
version "0.4.40"
license "Apache-2.0"
head "https://github.com/bentoml/OpenLLM, branch: main"
url "https://github.com/bentoml/OpenLLM/archive/v0.4.39.tar.gz"
sha256 "4ea3a00fc77a97c37a236f45f0969cf365a389a5c71dadc522a98eaea3bb233c"
url "https://github.com/bentoml/OpenLLM/archive/v0.4.40.tar.gz"
sha256 "c5561521bb9be611e07f6d800dbdb5719b5ca12bf3e0e5b4b24e80d2dfa1cdc6"
on_linux do
url "https://github.com/bentoml/OpenLLM/releases/download/v0.4.39/openllm-0.4.39-x86_64-unknown-linux-musl.tar.gz"
sha256 "2d2e3c7cf04bda481a3b9aa5e84d0145679d90a24a3d7a1a30796deb09105e35"
url "https://github.com/bentoml/OpenLLM/releases/download/v0.4.40/openllm-0.4.40-x86_64-unknown-linux-musl.tar.gz"
sha256 "cc18596aea78528cd802a58b5b8886b60188fdb953c7869f4fec85ca764ce3cc"
end
on_macos do
on_arm do
url "https://github.com/bentoml/OpenLLM/releases/download/v0.4.39/openllm-0.4.39-aarch64-apple-darwin.tar.gz"
sha256 "08d24390081f02817f02cb1a96efe0cf37b155a3d26897421b6f6b2b5204c868"
url "https://github.com/bentoml/OpenLLM/releases/download/v0.4.40/openllm-0.4.40-aarch64-apple-darwin.tar.gz"
sha256 "4c23cc459887afbfc55ebd776f8ebac0aee0ae3c71ddfbb27451bf44896b8722"
end
on_intel do
url "https://github.com/bentoml/OpenLLM/releases/download/v0.4.39/openllm-0.4.39-x86_64-apple-darwin.tar.gz"
sha256 "fd0252406f41fe933b528d050dd3bff52dfbb0e597e28ea79129f91fa3a51fff"
url "https://github.com/bentoml/OpenLLM/releases/download/v0.4.40/openllm-0.4.40-x86_64-apple-darwin.tar.gz"
sha256 "293768dfa989b2647a5e12927adf0d5a516aa2a57ed164462dd2d93373819ac3"
end
end
def install
on_linux do
bin.install "openllm-0.4.39-x86_64-unknown-linux-musl" => "openllm"
bin.install "openllm-0.4.40-x86_64-unknown-linux-musl" => "openllm"
end
on_macos do
on_arm do
bin.install "openllm-0.4.39-aarch64-apple-darwin" => "openllm"
bin.install "openllm-0.4.40-aarch64-apple-darwin" => "openllm"
end
on_intel do
bin.install "openllm-0.4.39-x86_64-apple-darwin" => "openllm"
bin.install "openllm-0.4.40-x86_64-apple-darwin" => "openllm"
end
end
ohai "To get started, run: 'openllm --help'"