@@ -9,22 +9,23 @@ class OciCli < Formula
99 head "https://github.com/oracle/oci-cli.git" , branch : "master"
1010
1111 bottle do
12- sha256 cellar : :any , arm64_tahoe : "1dfcd94ab54632ba9611da4669a15d8bc251c65e750e2ae0224fbb39c1a1b7fe"
13- sha256 cellar : :any , arm64_sequoia : "23557df2bf74bc068e46580faa128c5a7d4a2c3a0ce8b0aa55e927b0c8cb1b98"
14- sha256 cellar : :any , arm64_sonoma : "4d3229e9ffa6efedb9876747842222a9f4c29124e8f2d4d6427b42695dd75a9c"
15- sha256 cellar : :any , sonoma : "08e6f35faa38ce379caa9f0bdcf9e4fe8d925da76becdcb02c1f886f12c3eb45"
16- sha256 cellar : :any_skip_relocation , arm64_linux : "7fb0d87ffd0f9112fe45ca8f63eedc7dd04d8fb4c771d92e2a0a27f20708c635"
17- sha256 cellar : :any_skip_relocation , x86_64_linux : "372e5ff9daffc5484f1196591028fa24b4efd81bf17f7c6e0510d8008235ab73"
12+ rebuild 1
13+ sha256 cellar : :any , arm64_tahoe : "1cb66b6a20d87f4ea217bd980cd9010db5adeb11d0211f66a500293aa4c00002"
14+ sha256 cellar : :any , arm64_sequoia : "95fbc3f2612f69253e3e735239a6416154b5dec5e7cbe631ffbeb1b317df6602"
15+ sha256 cellar : :any , arm64_sonoma : "91fb6e175472361e5b32178b022f743766499275233191b72425c050984cef4a"
16+ sha256 cellar : :any , sonoma : "c5f34db02bc7453399a50d32fed6525e173eb606eb50f965663551fe5bbd99e5"
17+ sha256 cellar : :any_skip_relocation , arm64_linux : "209caef656ec9bba45c89ac328755905acf39724e5b956e827d6af609130670a"
18+ sha256 cellar : :any_skip_relocation , x86_64_linux : "85acb14e24b63220114800d65697cd8325d2896f02397464549ae10293d804dd"
1819 end
1920
2021 depends_on "certifi"
2122 depends_on "cryptography"
2223 depends_on "libyaml"
23- depends_on "python@3.13 "
24+ depends_on "python@3.14 "
2425
2526 resource "arrow" do
26- url "https://files.pythonhosted.org/packages/2e/00/0f6e8fcdb23ea632c866620cc872729ff43ed91d284c866b515c6342b173 /arrow-1.3 .0.tar.gz"
27- sha256 "d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4d67a85 "
27+ url "https://files.pythonhosted.org/packages/b9/33/032cdc44182491aa708d06a68b62434140d8c50820a087fac7af37703357 /arrow-1.4 .0.tar.gz"
28+ sha256 "ed0cc050e98001b8779e84d461b0098c4ac597e88704a655582b21d116e526d7 "
2829 end
2930
3031 resource "circuitbreaker" do
@@ -82,9 +83,9 @@ class OciCli < Formula
8283 sha256 "ba6eca5cb5ba02bba4c9f4f985af80c54ec3dccf94cfcd190154386255e47543"
8384 end
8485
85- resource "types-python-dateutil " do
86- url "https://files.pythonhosted.org/packages/0c/0a/775f8551665992204c756be326f3575abba58c4a3a52eef9909ef4536428/types_python_dateutil-2.9.0.20250822 .tar.gz"
87- sha256 "84c92c34bd8e68b117bff742bc00b692a1e8531262d4507b33afcc9f7716cd53 "
86+ resource "tzdata " do
87+ url "https://files.pythonhosted.org/packages/95/32/1a225d6164441be760d75c2c42e2780dc0873fe382da3e98a2e1e48361e5/tzdata-2025.2 .tar.gz"
88+ sha256 "b60a638fcc0daffadf82fe0f57e53d06bdec2f36c4df66280ae79bce6bd6f2b9 "
8889 end
8990
9091 resource "wcwidth" do
@@ -100,7 +101,7 @@ def install
100101 resource ( "terminaltables" ) . stage do
101102 inreplace "pyproject.toml" , 'requires = ["poetry>=0.12"]' , 'requires = ["poetry-core>=1.0"]'
102103 inreplace "pyproject.toml" , 'build-backend = "poetry.masonry.api"' , 'build-backend = "poetry.core.masonry.api"'
103- venv . pip_install_and_link Pathname . pwd
104+ venv . pip_install Pathname . pwd
104105 end
105106
106107 # TODO: remove `shells` argument to include `bash` completions with click 8.1.7+
@@ -109,8 +110,7 @@ def install
109110 end
110111
111112 test do
112- version_out = shell_output ( "#{ bin } /oci --version" )
113- assert_match version . to_s , version_out
113+ assert_match version . to_s , shell_output ( "#{ bin } /oci --version" )
114114
115115 assert_match "Usage: oci [OPTIONS] COMMAND [ARGS]" , shell_output ( "#{ bin } /oci --help" )
116116 assert_match "Could not find config file" , shell_output ( "#{ bin } /oci session validate 2>&1" , 1 )
0 commit comments