What's going on with the libsndfile package?
With PORTREVISION=1 in the port, the package version should be 1.2.2_1 (I think?) but it's still 1.2.2 both on the "latest" and "quarterly" package branches, as far as I can tell:
In the ports tree repository, there's a "main" branch and a "2023Q4" branch, where the latter presumably (?) corresponds to the quarterly package branch. Only the main branch has the fix, which might explain why it's not packaged for the quarterly branch, but in that case it seems strange that's it's not available on "latest" either.
pkg audit
warns about a vulnerability (CVE-2022-33065) which was fixed in ports last week, but there's no updated package available through pkg upgrade
.With PORTREVISION=1 in the port, the package version should be 1.2.2_1 (I think?) but it's still 1.2.2 both on the "latest" and "quarterly" package branches, as far as I can tell:
Code:
$ curl -s https://pkg.freebsd.org/FreeBSD:13:amd64/latest/packagesite.txz|tar JOxf - packagesite.yaml|jq 'select(.name == "libsndfile") | .version'
"1.2.2"
$ curl -s https://pkg.freebsd.org/FreeBSD:13:amd64/quarterly/packagesite.txz|tar JOxf - packagesite.yaml|jq 'select(.name == "libsndfile") | .version'
"1.2.2"
In the ports tree repository, there's a "main" branch and a "2023Q4" branch, where the latter presumably (?) corresponds to the quarterly package branch. Only the main branch has the fix, which might explain why it's not packaged for the quarterly branch, but in that case it seems strange that's it's not available on "latest" either.