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: 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"