- Add libressl-devel to the list of BROKEN_SSL;
- Include bsd.port.options.mk + bsd.port.mk instead of bsd.port.pre.mk +
bsd.port.post.mk;
- Fix detection of FreeBSD 12 with OpenSSL from base;
- Fix marking FreeBSD 12 with OpenSSL from base as broken.
Reported by: jbeich
puppetdb-cli internal dependencies support OpenSSL 1.0 or older only. To
sum up, one will be able to build/run puppetdb-cli using SSL from base
(FreeBSD <= 11) or from security/openssl (all FreeBSD versions).
Mark broken for:
- DEFAULT_VERSIONS+=ssl=base (for FreeBSD 12+)
- DEFAULT_VERSIONS+=ssl=openssl111
- DEFAULT_VERSIONS+=ssl=libressl
An experimental patch to bring support for OpenSSL 1.1.1 is available in
the PR 233389.
The details why we chose not to merge it is explained in the comments.
PR: 233389
Reported by: jbeich
With hat: puppet
The PuppetDB CLI project provide Puppet subcommands for querying PuppetDB data,
via `puppet query <query>`, and PuppetDB administrative tasks, `puppet db
<import|export|status>`.
The query subcommand will allow you to query PuppetDB using either the upcoming
PQL syntax of the traditional PuppetDB query syntax (also known as AST).
The db subcommand is a replacement for the older puppetdb <export|import>
commands with faster startup times and much friendlier error messages.
WWW: https://github.com/puppetlabs/puppetdb-cli
With hat: puppet