Skip to content

Commit 20bd338

Browse files
authored
Merge pull request Homebrew#250468 from Homebrew/bump-xcbeautify-3.0.0
xcbeautify 3.0.0
2 parents 3569f5e + 78fb963 commit 20bd338

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

Formula/x/xcbeautify.rb

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
class Xcbeautify < Formula
22
desc "Little beautifier tool for xcodebuild"
33
homepage "https://github.com/cpisciotta/xcbeautify"
4-
url "https://github.com/cpisciotta/xcbeautify/archive/refs/tags/2.30.1.tar.gz"
5-
sha256 "6cc64ef9167a02b1c097f995941e93d756e27c570006ad6f9e9c83db83ed2603"
4+
url "https://github.com/cpisciotta/xcbeautify/archive/refs/tags/3.0.0.tar.gz"
5+
sha256 "de5c61f00adb8cfd56029a113920d5420345cdac4462e8eb3324a154d4765ac6"
66
license "MIT"
77
head "https://github.com/cpisciotta/xcbeautify.git", branch: "main"
88

99
bottle do
10-
rebuild 1
11-
sha256 cellar: :any_skip_relocation, arm64_tahoe: "32b0d648f4c22e916db671283fc156f9e5c05e95c17c10c7a3ae54e18a4e03a9"
12-
sha256 cellar: :any_skip_relocation, arm64_sequoia: "45aa6aae0d7a48a05719aa0bd20a3d49d2eb3b602763dbe7fdb20777c57f998e"
13-
sha256 cellar: :any_skip_relocation, arm64_sonoma: "438d03f0c727ad6afdb8364d56abc2e2d61b17b4bca9d2fecba9b676618f9e9a"
14-
sha256 cellar: :any_skip_relocation, arm64_ventura: "c0b0a8bd11267bec6d150639bdd0a954c663d784f1c1de63e8297a126c01d266"
15-
sha256 cellar: :any_skip_relocation, sonoma: "3b103beb64a4a1c716f761ac978496184e220ede127efc1f44f8084cf62d9b63"
16-
sha256 cellar: :any_skip_relocation, ventura: "d715ace6defcf2422803a14d01623ea3805978a611ba5cc0c9c17d5baaf01ca4"
17-
sha256 cellar: :any_skip_relocation, arm64_linux: "dddc7750570072cb5609cc9bf22e88b5867e71633a2fe70aaf347124e545d532"
18-
sha256 cellar: :any_skip_relocation, x86_64_linux: "d81bcec58668fba3b890772640a7d26f456a093379755b548a41bc3e9772f079"
10+
sha256 cellar: :any_skip_relocation, arm64_tahoe: "1f41771ed89a4c862b243befc8af41bae4522dd6d84f4f0688b6b7d70566c511"
11+
sha256 cellar: :any_skip_relocation, arm64_sequoia: "03457fe184970c4f780fa8bc01b00c9823a628750586a4e0b85b6f15e3f2743a"
12+
sha256 cellar: :any_skip_relocation, arm64_linux: "fde9a0a133d0c5d4cc2feff22f107a0893c6c49cedd40ccbc50882503bf03a74"
13+
sha256 cellar: :any_skip_relocation, x86_64_linux: "1b34fa006a10d84d03bcd5db42f60e7a66a23265723329c5a3bcb1fc5641418a"
1914
end
2015

21-
# needs Swift tools version 5.9.0
22-
depends_on xcode: ["15.0", :build]
16+
# needs Swift tools version 6.1.0
17+
depends_on xcode: ["16.3", :build]
2318

2419
uses_from_macos "swift" => :build
2520
uses_from_macos "libxml2"
2621

2722
def install
28-
args = if OS.mac?
29-
["--disable-sandbox"]
23+
if OS.mac?
24+
args = %w[--disable-sandbox]
3025
else
31-
["--static-swift-stdlib"]
26+
libxml2_lib = Formula["libxml2"].opt_lib
27+
args = %W[
28+
--static-swift-stdlib
29+
-Xlinker -L#{libxml2_lib}
30+
]
31+
ENV.prepend_path "LD_LIBRARY_PATH", libxml2_lib
3232
end
3333
system "swift", "build", *args, "--configuration", "release"
3434
bin.install ".build/release/xcbeautify"

0 commit comments

Comments
 (0)