-
-
Notifications
You must be signed in to change notification settings - Fork 12.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
postgresql@* libpq: fix compatibility with openssl 3.2 #155699
Conversation
I think the You can simplify the patches to just the two |
Also looks like my patch will grow to also include some test updates, but I doubt that is relevant for Homebrew. Stay tuned on the mailing list discussion. |
4f2bb82
to
1aaca15
Compare
1aaca15
to
2a60750
Compare
Makes sense, applied! |
Tested locally (macOS: 14.1.1-arm64) that it works: # for v in 16 15 14 13 12 11; do HOMEBREW_NO_INSTALL_FROM_API=1 brew reinstall -s -v postgresql@$v; done
# HOMEBREW_NO_INSTALL_FROM_API=1 brew reinstall -s -v libpq
CONNSTR="postgresql://..."
for v in 16 15 14 13 12 11; do echo -n "postgresql@$v: "; /opt/homebrew/opt/postgresql@${v}/bin/psql "$CONNSTR?sslmode=require" -qAtX -c "select 'ok'"; done
echo -n "libpq: "; /opt/homebrew/opt/libpq/bin/psql "$CONNSTR?sslmode=require" -qAtX -c "select 'ok'"
|
HOMEBREW_NO_INSTALL_FROM_API=1 brew install --build-from-source <formula>
, where<formula>
is the name of the formula you're submitting?brew test <formula>
, where<formula>
is the name of the formula you're submitting?brew audit --strict <formula>
(after doingHOMEBREW_NO_INSTALL_FROM_API=1 brew install --build-from-source <formula>
)? If this is a new formula, does it passbrew audit --new <formula>
?This PR ports an upstream patch
(not merged yet)topostgresql@11-16
,libpq
formulae.Closes #155651
UPD: The patch has been merged to Postgres: postgres/postgres@c82207a