There is an updated pull request by Goorzhel against master on the void-packages repository https://github.com/Goorzhel/void-packages vault https://github.com/void-linux/void-packages/pull/27851 vault: update to 1.6.1 @the-maldridge * Here are [the minor-version changes](https://github.com/hashicorp/vault/blob/master/CHANGELOG.md#160). * For consistency's sake I matched `_git_commit` to `v1.6.1`'s hash. Sanity check: ``` $ ./xbps-src pkg vault <...> $ xi vault <...> $ vault version Vault v1.6.1 (6d2db3f033e02e70202bef9ec896360062b88b03) (cgo) $ vault server -dev &> /dev/null & [1] 9125 $ export VAULT_ADDR='http://127.0.0.1:8200' $ vault secrets enable -path=kv kv Success! Enabled the kv secrets engine at: kv/ $ vault kv put kv/foo foo=bar Success! Data written to: kv/foo $ vault kv get kv/foo === Data === Key Value --- ----- foo bar ``` Lemme know if there're any more tests you'd like me to run. A patch file from https://github.com/void-linux/void-packages/pull/27851.patch is attached