@@ -4,6 +4,7 @@ class Fastlane < Formula
4
4
url "https://github.com/fastlane/fastlane/archive/refs/tags/2.226.0.tar.gz"
5
5
sha256 "dab7c2f3d8cc47e1bc4ed8b4351a0e1b438c70009bb28f3e352ffbb5c001b1f9"
6
6
license "MIT"
7
+ revision 1
7
8
head "https://github.com/fastlane/fastlane.git" , branch : "master"
8
9
9
10
livecheck do
@@ -12,12 +13,12 @@ class Fastlane < Formula
12
13
end
13
14
14
15
bottle do
15
- sha256 cellar : :any , arm64_sequoia : "fe571ca2e2a756c32d1e1adc0ca1d0613f5355c5dc6da7a559e571e1537b9a65 "
16
- sha256 cellar : :any , arm64_sonoma : "6eb64c9dd514cd6b3a1b15a4ffc552f577be6ac8796df4802ead2dd20c47abb2 "
17
- sha256 cellar : :any , arm64_ventura : "5dfae4a9f3d6fcf05990a4d7c17a55a504da57f57de2be2799dce62241b626be "
18
- sha256 cellar : :any , sonoma : "2a5d902aedf1db8724569bef2445fcf5b66c89273beff7c8940926ff3f9592bc "
19
- sha256 cellar : :any , ventura : "a86aa6845e7128df6a5bbe34660c1cedbc0cd00a8accc2ebc5976f4d57f5b3a4 "
20
- sha256 cellar : :any_skip_relocation , x86_64_linux : "971fa1fb2bb46026f9c97c45f4e2848a39c55bd1ef72de16cdf85a890e8b0c38 "
16
+ sha256 cellar : :any , arm64_sequoia : "d4c54b581214943be2f5e8063a9b1ef9ff1685a86bd8d0db0d665f8068e2f35c "
17
+ sha256 cellar : :any , arm64_sonoma : "98749c5e08c615bedc1dd2244fb90573b869b434f2705c6bcfb3e2b7c3adc1d0 "
18
+ sha256 cellar : :any , arm64_ventura : "2d41ffe353ab6bd4ce27706cc46cddec1142638ad13c8ee1ff0c14fb80c95864 "
19
+ sha256 cellar : :any , sonoma : "c012e9f78fb4b08f068bc3082e36cd83688b717bfab325a27f82404cb6a7ed6d "
20
+ sha256 cellar : :any , ventura : "292ef02ff9752fde13846171cfbf381028226c79df17481e171ad45a60de5522 "
21
+ sha256 cellar : :any_skip_relocation , x86_64_linux : "0e72c513943982423660260daa61a9533c553ea4498cda613c2bfcf109fd33b8 "
21
22
end
22
23
23
24
depends_on "ruby"
@@ -33,6 +34,12 @@ def fastlane_gem_home
33
34
def install
34
35
ENV [ "GEM_HOME" ] = libexec
35
36
ENV [ "GEM_PATH" ] = libexec
37
+ ENV [ "LANG" ] = "en_US.UTF-8"
38
+ ENV [ "LC_ALL" ] = "en_US.UTF-8"
39
+
40
+ # `abbrev`, `mutex_m` gem no longer with ruby 3.4+, upstream patch pr, https://github.com/fastlane/fastlane/pull/29182
41
+ system "gem" , "install" , "abbrev" , "--no-document"
42
+ system "gem" , "install" , "mutex_m" , "--no-document"
36
43
37
44
system "gem" , "build" , "fastlane.gemspec"
38
45
system "gem" , "install" , "fastlane-#{ version } .gem" , "--no-document"
0 commit comments