From d990ce7f1311fb50acfe20a5a37cd0b53661a41e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cihat=20Gu=CC=88ndu=CC=88z?= Date: Mon, 22 May 2023 13:33:30 +0200 Subject: [PATCH 1/2] Bump formula to version 4.15.0 --- CHANGELOG.md | 2 +- Formula/bartycrouch.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15a1284..9bb3fd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,7 +35,7 @@ If needed, pluralize to `Tasks`, `PRs` or `Authors` and list multiple entries se ### Changed - Improved implementation of DeepL API client for more reliable escaping than the previous manual escaping logic. PR: [#277](https://github.com/FlineDev/BartyCrouch/issues/277) | Author: [Nico](https://github.com/NickAtGit) -- Upgraded Swift-Syntax dependency to work with Swift 5.8 to fix build issues. +- Upgraded Swift-Syntax dependency to work with Swift 5.8 to fix build issues. PR: [#279](https://github.com/FlineDev/BartyCrouch/issues/279) | Author: [Alex Deem](https://github.com/alexdeem) ## [4.14.0] - 2022-12-14 diff --git a/Formula/bartycrouch.rb b/Formula/bartycrouch.rb index 32b5d16..82415d4 100644 --- a/Formula/bartycrouch.rb +++ b/Formula/bartycrouch.rb @@ -1,7 +1,7 @@ class Bartycrouch < Formula desc "Incrementally update/translate your Strings files" homepage "https://github.com/Flinesoft/BartyCrouch" - url "https://github.com/Flinesoft/BartyCrouch.git", :tag => "4.14.0", :revision => "03c3816a39ac2d82fe9a2f2efc84949a1e50165d" + url "https://github.com/Flinesoft/BartyCrouch.git", :tag => "4.15.0", :revision => "a2fc2f6689228342c6203542257a2f3931b405dc" head "https://github.com/Flinesoft/BartyCrouch.git" depends_on :xcode => ["14.0", :build] From ac71948fe5993136b02c236be7c8e6da50c0b52b Mon Sep 17 00:00:00 2001 From: Alex Deem Date: Thu, 8 Jun 2023 22:30:29 +1000 Subject: [PATCH 2/2] Don't ship lib_InternalSwiftSyntaxParser.dylib --- Makefile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Makefile b/Makefile index c7f3f2f..f3dd36e 100644 --- a/Makefile +++ b/Makefile @@ -31,12 +31,6 @@ bartycrouch_universal: $(SOURCES) install: bartycrouch @install -d "$(bindir)" "$(libdir)" @install "$(BUILDDIR)/release/bartycrouch" "$(bindir)" - @install ".build/artifacts/swift-syntax/_InternalSwiftSyntaxParser.xcframework/macos-arm64_x86_64/lib_InternalSwiftSyntaxParser.dylib" \ - "$(libdir)" - @install_name_tool -change \ - "@rpath/lib_InternalSwiftSyntaxParser.dylib" \ - "$(libdir)/lib_InternalSwiftSyntaxParser.dylib" \ - "$(bindir)/bartycrouch" .PHONY: portable_zip portable_zip: bartycrouch_universal @@ -49,7 +43,6 @@ portable_zip: bartycrouch_universal @zip -q -j "$(BUILDDIR)/Apple/Products/Release/portable_bartycrouch.zip" \ "$(TMP)/bartycrouch" \ "$(REPODIR)/LICENSE" \ - ".build/artifacts/swift-syntax/_InternalSwiftSyntaxParser.xcframework/macos-arm64_x86_64/lib_InternalSwiftSyntaxParser.dylib" @echo "Portable ZIP created at: $(BUILDDIR)/Apple/Products/Release/portable_bartycrouch.zip" @rm -rf $(TMP)