From 7d10bfc6b3b0f14aa14ff6e4144e473be3c9793e Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Wed, 27 Apr 2022 00:50:13 +0100 Subject: [PATCH 1/2] os/mac/pkgconfig/12: update for macOS 12.3 --- Library/Homebrew/os/mac/pkgconfig/12/libcurl.pc | 2 +- Library/Homebrew/os/mac/pkgconfig/12/libffi.pc | 2 +- Library/Homebrew/os/mac/pkgconfig/12/sqlite3.pc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/Homebrew/os/mac/pkgconfig/12/libcurl.pc b/Library/Homebrew/os/mac/pkgconfig/12/libcurl.pc index 42fcf05cd6..3f7106be5b 100644 --- a/Library/Homebrew/os/mac/pkgconfig/12/libcurl.pc +++ b/Library/Homebrew/os/mac/pkgconfig/12/libcurl.pc @@ -34,7 +34,7 @@ supported_features="alt-svc AsynchDNS GSS-API HSTS HTTP2 HTTPS-proxy IPv6 Kerber Name: libcurl URL: https://curl.se/ Description: Library to transfer files with ftp, http, etc. -Version: 7.77.0 +Version: 7.79.1 Libs: -L${libdir} -lcurl Libs.private: -lldap -lz Cflags: diff --git a/Library/Homebrew/os/mac/pkgconfig/12/libffi.pc b/Library/Homebrew/os/mac/pkgconfig/12/libffi.pc index aab18b762e..0e5cbc37de 100644 --- a/Library/Homebrew/os/mac/pkgconfig/12/libffi.pc +++ b/Library/Homebrew/os/mac/pkgconfig/12/libffi.pc @@ -7,6 +7,6 @@ includedir=${prefix}/include/ffi Name: libffi Description: Library supporting Foreign Function Interfaces -Version: 3.3-rc0 +Version: 3.4-rc1 Libs: -L${toolexeclibdir} -lffi Cflags: -I${includedir} diff --git a/Library/Homebrew/os/mac/pkgconfig/12/sqlite3.pc b/Library/Homebrew/os/mac/pkgconfig/12/sqlite3.pc index f122763bd5..87b7b71609 100644 --- a/Library/Homebrew/os/mac/pkgconfig/12/sqlite3.pc +++ b/Library/Homebrew/os/mac/pkgconfig/12/sqlite3.pc @@ -6,7 +6,7 @@ includedir=${prefix}/include Name: SQLite Description: SQL database engine -Version: 3.36.0 +Version: 3.37.0 Libs: -L${libdir} -lsqlite3 Libs.private: Cflags: From b3da8dbd24f61fdc5f319bf1a4253e86682a0bff Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Wed, 27 Apr 2022 00:59:15 +0100 Subject: [PATCH 2/2] test/os/mac/pkgconfig_spec: fix libffi detection on 12.3+ SDK --- Library/Homebrew/test/os/mac/pkgconfig_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/test/os/mac/pkgconfig_spec.rb b/Library/Homebrew/test/os/mac/pkgconfig_spec.rb index 4966820767..6b76ff1430 100644 --- a/Library/Homebrew/test/os/mac/pkgconfig_spec.rb +++ b/Library/Homebrew/test/os/mac/pkgconfig_spec.rb @@ -68,7 +68,7 @@ describe "pkg-config" do it "returns the correct version for libffi" do version = File.foreach("#{sdk}/usr/include/ffi/ffi.h") .lazy - .grep(/^\s*libffi (\S+) - Copyright /) { Regexp.last_match(1) } + .grep(/^\s*libffi (\S+)\s+- Copyright /) { Regexp.last_match(1) } .first skip "Cannot detect system libffi version." if version == "PyOBJC"